/*  SEVAKN STAND 2025-12-02 */
/* Grundlegende Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding-top: 100px; /* Platzhalter für den fixierten Header */
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
    background-color: #121212;
    color: #ffffff;
}

header {
    position: fixed; /* Fixiert den Header am oberen Rand */
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    z-index: 1000; /* Stellt sicher, dass der Header über anderen Elementen liegt */
    padding: 0.5rem 1rem;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-and-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    background-color: #fff; /* Weißer Hintergrund für das Logo */
    padding: 0.5rem;
    border-radius: 8px;
}

.logo {
    max-height: 50px;
    height: auto;
    display: block;
}

header h1 {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
}

.nav-and-dark-mode {
    display: flex;
    align-items: center;
    gap: 1rem;
}

nav ul.nav-links {
    list-style: none;
    display: flex;
    gap: 0.8rem;
    margin: 0;
}

nav ul.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul.nav-links li a:hover {
    color: #ff6f61;
}

#dark-mode-toggle {
    background-color: transparent; /* Transparenter Hintergrund */
    border: none; /* Kein Rahmen */
    color: #fff; /* Weiße Schriftfarbe */
    font-size: 1rem; /* Kleinere Icons */
    cursor: pointer;
    transition: color 0.3s ease;
}

#dark-mode-toggle:hover {
    color: #ff6f61; /* Hover-Effekt */
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #fff;
}

main {
    padding: 0 1rem 1rem 1rem;
}

section {
    margin-bottom: 2rem;
    scroll-margin-top: 90px; /* Offset für die Sektionen */
}

.top-image {
  max-width: 99%; 
  height: auto;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.artwork {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artwork img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.artwork:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.artwork:hover img {
    transform: scale(1.05);
}

.artwork p {
    padding: 0.5rem;
    text-align: center;
}


.std-container {
  display: flex;                  /* Aktiviert Flexbox für die Kindelemente */
  flex-wrap: wrap;                /* Erlaubt das Umbrechen der Elemente, falls nötig (obwohl hier nicht primär genutzt) */
  justify-content: space-between; /* Verteilt den verfügbaren Platz zwischen den Blöcken */
  gap: 2px;                       /* Optional: Fügt etwas Abstand zwischen den Blöcken hinzu */
  background-color: #ebebeb;
  border-radius: 8px;
}


.std-data2col, .std-data3col {
  /* Standardverhalten: Nimmt die volle Breite ein, wenn keine Media Query aktiv ist */
  width: 100%;
  box-sizing: border-box;       /* Stellt sicher, dass padding/border in die Breitenberechnung einbezogen wird */
/*  border: 1px solid #eee; */  /* Optional: Fügt einen Rahmen hinzu, um die Blöcke sichtbar zu machen */
  border-radius: 6px; 
  padding: 0.2rem;
/*  background-color: #ccc; */  /* Für Test */
}



.std-data2col p, .std-data3col p {
    padding: 0.3rem;
/*    text-align: center; */
}




.modal-container {

}

.modal-data {

}

.modal-data p {
    padding: 0.3rem;
/*    text-align: center; */
}


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    padding: 1rem;
/*    border-radius: 8px; */
    max-width: 94%;
    max-height: 90%;
    overflow-y: auto;
}

.modal-open {
    cursor: pointer;
    border: 1px solid #aaa;
    border-radius: 4px;
    margin: 2px;
    padding: 0px 3px 0px 3px;
}

li.modal-open {
    padding: 5px 5px 5px 10px;
    list-style-position: inside;
}


.modal-open:hover {
    color: #bb5050;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.modal-close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

button.modal-close {
    position: inherit;
    background-color: #333;
    color: #fff;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 1rem;
    overflow: hidden;
}


.paper-info {
    background-color: #666;
}




footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
/*    margin-top: 2rem; */
    font-size: 0.9rem;
}

.social-media {
    list-style: none; /* Entfernt die Aufzählungszeichen */
    padding: 0; /* Entfernt den Standardabstand der Liste */
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-media li {
    margin: 0; /* Entfernt zusätzliche Abstände */
}


.social-media a img,
.share-image a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-media a img:hover
.share-image a img:hover {
    transform: scale(1.2);
}

.share-image a img {
    margin: 0.5rem 0.5rem 0 0.5rem;
}

.pricing-table-container {
 /*   display: flex;
    flex-wrap: wrap; */
    display: grid;
    grid-template-columns: 1fr 1fr; /* Zwei Spalten standardmäßig */
    gap: 20px;
    background-color: #ebebeb;
    border-radius: 8px;
}

.pricing-table {
/*    width: 100%;
    max-width: 600px;
    max-width: 400px;
    margin: 15px auto;  */
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table th,
.pricing-table td {
    padding: 0.4rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.pricing-table th {
    background-color: #333;
    color: #fff;
    font-weight: bold;
}

.pricing-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.pricing-table tr:hover {
    background-color: #f1f1f1;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem; /* Geändert von 1rem zu 0.5rem */
    margin-bottom: 1rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filter-btn.active {
    background-color: #ff6f61;
}

.filter-btn:hover {
    background-color: #555;
}

/* Accordion Stile */
.accordion-container {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

.accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 0.2rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.accordion-header {
    width: 100%;
    background-color: #333;
    color: #fff;
    border: none;
    padding: 0.4rem 0.8rem;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #555;
}

.accordion-header h4 {
    margin: 0;
    font-size: 1rem;
}

.accordion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, padding 0.3s ease;
    background-color: #fff;
}

.accordion-content.active {
    max-height: 2500px;
    opacity: 1;
    padding: 0.5rem;
}

.accordion-content-inner {
    padding: 0;
}

.accordion-content-inner p {
    margin: 0.5rem;
    line-height: 1.6;
}

/* Order Box */
#preorder-button {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* border-radius: 6px; */
    background-color: #333;
    color: #fff;
    border: none;
    padding: 0.7rem 1.3rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    overflow: hidden;
}

#preorder-button:hover {
    color: #bb5050;
}

/* Contact Form Stile */

#contact-form-container {
    scroll-margin-top: 100px;
}


.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative; /* Damit das Overlay im Formular bleibt */
}


.form-group {
    margin-bottom: 0.5rem;
}

.form-group label, .form-paper-label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: bold;
    font-size: smaller;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.4rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6f61;
}

/* Checkbox + Text nebeneinander */
.consent-group {
    display: flex;
    align-items: flex-start;
/*    gap: 0.5rem; */
/*    margin-bottom: 0.5rem; */
}

.consent-group input[type="checkbox"] {
/*    flex: 0 0; */   /* Nimmt nur notwendigen Platz ein, keine Skalierung */ 
/*    margin: 0.2rem 0 0 0.8rem; */
    margin: 0.4rem 0.4rem 0 0.4rem;
    transform: scale(1.5);
    width:50px;
}


.consent-group label {
/*    flex: 1 1 auto;
    font-weight: normal;
    cursor: pointer;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-break: break-word;
    margin: 0;  */
}


.contact-form button, .order-form button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    overflow: hidden;
}

.contact-form button:hover, .order-form button:hover {
    background-color: #555;
    color: #bb5050;
}


.contact-success {
    display: none; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(255, 255, 255, 0.95); 
    z-index: 10;
    border-radius: 8px; 
    padding: 0.5rem; 
    box-sizing: border-box; 
    flex-direction: column; 
    justify-content: end; 
    align-items: center; 
    text-align: center;
}

.contact-reset-btn {
    background: #333; 
    color: white; 
    border: none; 
    padding: 0.6rem 1.2rem; 
    border-radius: 4px; 
    cursor: pointer; 
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
}



/* Order Form Paper Matrix */
#order-form-container {
   font-family: sans-serif;
   padding: 20px;
}

#paper-select-container select {
    padding: 0.4rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    width: 48%;
    background-color: #f9f9f9;
}

        .form-group-paper {
          border: 1px solid #ccc;
          border-radius: 6px;
          margin-bottom: 0.5rem;
        }
        .order-paper-group {
          display: flex;
          flex-wrap: wrap;
          padding: 2px 5px;
        }
        .order-format-group {
          margin-left: 2px;
        }

        .order-format-group input[type="radio"] {
          margin-right: 2px;
        }

        .order-group-title {
          font-weight: bold;
          display: inline-flex;
          min-width: 5rem;
        }
        /* Stellt sicher, dass Radio-Buttons inline (in einer Linie) erscheinen */
        .order-radio-label {
            margin-right: 15px;
            display: inline-block;
            cursor: pointer;
        }

        #order-result-container {
          padding: 5px;
          background-color: #dddddd;
          border-radius: 6px;
        }

        
        #order-result-container p {
          margin: 2px;
        }
        #order-display-price {
            color: #007bff;
            font-size: 1.2em;
        }
        #order-display-discount {
            color: #007bff;
            font-size: 1.2em;
        }


/* Stellt sicher, dass der Haupt-Container die volle Breite nutzt */
.faq-section {
    box-sizing: border-box;  /* Stellt sicher, dass padding/border in die 100% Breite eingerechnet werden */
}

/* Stil für die Frage */
.faq-section dt {
    font-weight: bold;
    margin-top: 0.5rem;
}


/* Stil für die Antwort */
.faq-section dd {
    margin: 0 0 0 1rem;
}



@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .logo-and-title {
        flex: 1;
        order: 1; /* Bleibt links */
    }

    .nav-and-dark-mode {
        flex: 1;
        order: 2; /* Bleibt rechts */
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 1rem;
    }

    nav ul.nav-links {
        display: none; /* Navigation standardmäßig ausblenden */
        flex-direction: column; /* Menüpunkte untereinander */
        gap: 0.5rem;
        background-color: #333; /* Hintergrundfarbe für das Dropdown-Menü */
        position: absolute;
        top: 100%; /* Unterhalb des Headers positionieren */
        right: 1rem; /* Rechtsbündig ausrichten */
        padding: 1rem;
        border-radius: 0 0 4px 4px; /* Nur untere Ecken abrunden */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    nav ul.nav-links.active {
        display: flex; /* Navigation anzeigen, wenn active-Klasse vorhanden */
    }

    nav ul.nav-links li a {
        font-size: 0.9rem;
        text-align: right; /* Text rechtsbündig ausrichten */
    }

    .hamburger-menu {
        display: flex; /* Hamburger-Menü sichtbar machen */
    }

    header h1 {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }

    .logo {
        max-height: 40px;
    }

    .pricing-table-container {
      /* Mobiles Layout: Eine Spalte */
      grid-template-columns: 1fr;
    }


    .pricing-table,
    .accordion-container,
    .contact-form {
        display: block;
        overflow-x: auto;
    }

    .pricing-table th,
    .pricing-table td {
     /*   white-space: nowrap; */
    }
    
    /* Responsive für Checkbox-Gruppe */
    .consent-group {
/*        flex-direction: column;  */
/*        gap: 0.3rem; */
   }


    .modal-content {
      max-width: 85%;
    }

    .modal-data {
    }

}


/* Responsive Design sonder Regel für data.container */
/* Media Query: Wendet diese Stile nur an, wenn die Bildschirmbreite mindestens 768px beträgt */
@media (min-width: 768px) {
  .std-data3col {
    /* Setzt die Breite auf ungefähr 1/3 minus dem Platz für die Gaps */
    /* calc(33.333% - 4px) funktioniert gut mit einem gap: 2px */
    width: calc(33.333% - 4px);
  }
  .std-data2col {
    /* Setzt die Breite auf 1/2 minus dem Platz für die Gaps */
    /* calc(50% - 4px) funktioniert gut mit einem gap: 2px */
    width: calc(50% - 4px);
  }
}



/* Dark Mode Stile */
body.dark-mode header {
    background-color: #000;
}

body.dark-mode main {
    background-color: #121212;
    color: #ffffff;
}

body.dark-mode .std-container {
    background-color: #1e1e1e;
}


body.dark-mode .std-data2col, body.dark-mode .std-data3col {
/*    background-color: #abc; */    /* Für Test */
}


body.dark-mode .artwork {
    background-color: #333;
}

body.dark-mode .accordion-item {
    background-color: #1e1e1e;
    border-color: #333;
}

body.dark-mode .accordion-header {
    background-color: #000;
}

body.dark-mode .accordion-header:hover {
    background-color: #222;
}

body.dark-mode .accordion-content {
    background-color: #1e1e1e;
}

body.dark-mode .accordion-content-inner p {
    color: #ffffff;
}

body.dark-mode .contact-form {
    background-color: #1e1e1e;
    color: #ffffff;
}

body.dark-mode .form-group label {
    color: #ecf0f1;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background-color: #2c2c2c;
    border-color: #444;
    color: #ecf0f1;
}

body.dark-mode .contact-form button {
    background-color: #000;
}

body.dark-mode .contact-form button:hover {
    background-color: #222;
    color: #bb5050;
}


body.dark-mode #preorder-button button:hover {
    background-color: #222;
    color: #bb5050;
}


body.dark-mode footer {
    background-color: #000;
}

body.dark-mode .pricing-table-container {
    background-color: #1e1e1e;
}

body.dark-mode .pricing-table {
    background-color: #1e1e1e;
    color: #ffffff;
}

body.dark-mode .pricing-table th {
    background-color: #444;
}

body.dark-mode .pricing-table tr:nth-child(even) {
    background-color: #2c2c2c;
}

body.dark-mode .pricing-table tr:hover {
    background-color: #3a3a3a;
}

body.dark-mode #order-result-container {
    background-color: #555;
}


body.dark-mode .modal-container {
/*    background-color: #1e1e1e; */
}

body.dark-mode .modal-content {
    background-color: #484848;
}

body.dark-mode .modal-data {
/*    background-color: #abc; */    /* Für Test */
}

body.dark-mode .modal-open {
/*    border: 1px solid #484848; */
}

