/* =========================
   GLOBAL SETTINGS
   ========================= */
html {
  scroll-behavior: smooth;
}

* { 
  box-sizing: border-box; 
}

body 
{
  width: 100%; 
  margin: 0; 
  padding: 0; 
  font-family: system-ui, Arial, sans-serif; 
  font-size: 1rem;
  line-height: 1.5; 
  background-color: #513C37; 
}

@media (min-width: 768px) {
  body {
      font-size: 18px; 
  }
}

@media (min-width: 1025px) {
  body {
      font-size: 20px; 
  }
}

:root {
  --header-height: 64px;
}
/* =========================
   /GLOBAL SETTINGS
   ========================= */




/* =========================
   HEADER
   ========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  background-color: #513C37;
  background: linear-gradient(to bottom, #513C37 0%, #422E2A 100%);
}

.menu-logo {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 60%;
}

.menu-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: #EDD9B4;
  background: linear-gradient(to right, #EDD9B4 0%, #E0C8A0 100%);
  border: solid 1px #EDD9B4;
  border-radius: 2px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #513C37;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center; 
}

/* Animation */
.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg); 
}
/* Animation-End */

.menu {
  position: fixed;
  left: 0;
  z-index: 999;
  top: var(--header-height);
  width: 100%;
  padding: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  border-block: 1px solid #EDD9B4;
}

.menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-list,
.submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list{
  background-color: #513C37;
  background: linear-gradient(to bottom, #513C37 0%, #422E2A 100%);
}
.submenu-list{
  background-color: transparent;
}


.menu-link,
.submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font: inherit;
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: normal;
  color: #EDD9B4;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
}

.menu-item:hover,
.submenu-item:hover{
  border-radius: 2px;
  background-color: rgba(237, 217, 180, 0.15);
}

.submenu-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 200ms ease;
}

.submenu-list.is-open {
  max-height: 500px;
}

.submenu-link {
  display: block;
  padding: 12px 16px;

  font-size: 15px;
  font-weight: normal;
  color: #e3d6be;
  text-decoration: none;
  text-align: center;
}

/* === Tablet & Desktop === */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .menu {
    position: static;
    display: flex;
    align-items: center;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    width: auto;
    background: transparent;
    border: none;
  }

  .menu-list {
    display: flex;
    flex-direction: row;
    gap: 34px; 
    background: transparent;
  }

  .menu-item, .submenu-item {
    position: relative;
    padding: 0;
    margin: 0;
  }

  .submenu-list {
    position: absolute;
    top: 100%;
    left: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    background-color: #513C37;
    background: linear-gradient(to bottom, #513C37 0%, #422E2A 100%);
    flex-direction: column;
    min-width: 160px;
    z-index: 100;
    border-radius: 4px;
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  }

  .submenu-list.is-open {
    max-height: 500px; /* genug, dass alle Items sichtbar sind */
    opacity: 1;
    transform: translateY(0);
  }

  .submenu-link {
    color: #EDD9B4;
    text-align: left;
  }
}
/* =========================
   /HEADER
   ========================= */





/* =========================
   MAIN
   ========================= */
.site-main{
  display: flex;
  justify-content: center;
  align-items: center;   
  flex-direction: column;
  padding-top: var(--header-height);
}

/* =========================
   SECTION (wirkt fuer mehrere Sectionen)
   ========================= */
.section {
  min-height: auto;  /* normale Höhe */
  height: auto;
  width: 100vw;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* =========================
   /SECTION
   ========================= */

   /* =========================
   SECTION-MAIN (wirkt fuer mehrere Main-Container)
   ========================= */
.section-main {
  width: 100%;
  max-width: 1400px;
  padding: 10px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
  background-color: transparent;
  border: 1px solid rgba(162, 126, 78, 0.6); 
  border-radius: 4px; 
}

/* =========================
   HERO
   ========================= */
#hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

@media (min-width: 768px) {
  #hero {
    aspect-ratio: auto;
    height: 100vh;
  }
}

#hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   /HERO
   ========================= */

/* =========================
   SECTION-Gallery
   ========================= */
  /* Extends .section */
  .bg-gallery{
    background: #f4efe7;
    background: linear-gradient(
    to bottom,
    #f9f6f1 0%,
    #f4efe7 60%,
    #eae4db 100%
    );
  }
  
   /*Mobile*/
  .gallery-media{
    width: 100%;
  }

  /* Gallery-Heading */
  .gallery-heading h2{
    text-align: center;
    font-size: 28px;
    font-weight: normal;
    color: #7a5537;
  }

  /* Gallery-Tabs */
  /* Container */
  .gallery-tabs {
    display: flex;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 16px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  /* Tab */
  .gallery-tab {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 10px 18px;
  min-height: 40px;
  border: 2px solid rgba(162, 126, 78, 0.4);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  background: #f4efe7;
    background: linear-gradient(
    to bottom,
    #f9f6f1 0%,
    #f4efe7 60%,
    #eae4db 100%
    );
  color: #8b6f48;
  cursor: pointer;
  
}

.gallery-tab:hover{
  background: linear-gradient(to bottom, #5a4738, #6b5242);
  color: rgba(255, 255, 255, 0.9);
}

  /* Active state */
  .gallery-tab.active {
    background: linear-gradient(to bottom, #5a4738, #6b5242);
    color: rgba(255, 255, 255, 0.9);
  }

  /* Scrollbar entfernen (optional) */
  .gallery-tabs::-webkit-scrollbar {
    display: none;
  }

   
  /* Image-box & img */
  .gallery-image-box{
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 2px solid rgba(162, 126, 78, 0.4);
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
  .gallery-image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 2px;
  }
  /* /Image-box & img */

  /* Gallery - Content*/
  .gallery-content{
    width: 100%;
  }

  .gallery-title{
    margin: 0;
    font-weight: normal;
    text-align: center;
    color: #7a5537;
    font-size: 18px;
    letter-spacing: 1px;
  }
  .gallery-description{
    margin: 6px 0 0 0;
    text-align: center;
    color: #7a5537;
    font-size: 14px;
    line-height: 1.4;
  }



  /* Gallery - Controls*/
  .gallery-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
  }

  .gallery-btn {
    width: 68px;
    height: 40px;

    border: 2px solid rgba(162, 126, 78, 0.4);
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    background: #f4efe7;
    background: linear-gradient(
      to bottom,
      #f9f6f1 0%,
      #f4efe7 60%,
      #eae4db 100%
      );
    color: #8b6f48;

    cursor: pointer;
  }

  .gallery-btn:hover{
    background: linear-gradient(to bottom, #5a4738, #6b5242);
    color: rgba(255, 255, 255, 0.9);
  }


  /*Tablet*/
  @media (min-width: 768px){
    .gallery-heading h2{
        font-size: 32px;
      }

    .gallery-image-box{
      aspect-ratio: 16 / 10;
    }

    .gallery-image-box img{
      object-fit: cover;
    }

    .gallery-title{
      font-size: 20px;
    }

    .gallery-description{
      font-size: 15px;
    }
}


  /*Desktop*/
  @media (min-width: 1024px){
    .gallery-heading h2{
        font-size: 36px;
      }
    .gallery-image-box{
      aspect-ratio: 16 / 9;
    }

    .gallery-image-box img{
      object-fit: cover;
    }

    .gallery-title{
      font-size: 22px;
    }

    .gallery-description{
      font-size: 16px;
    }
  }
/* =========================
   /SECTION-Gallery
   ========================= */


/* =========================
   SECTION-Prices
   ========================= */
  /* Extends .section */
  .bg-prices{
  background-color: #3E2B25;
  background: linear-gradient(
  180deg,
  #5A4036 0%,
  #4B362E 45%,
  #3E2B25 100%
  );
}

#pricing-title{
  font-weight: normal;
  color: #cead7f;
}

#pricing-wrapper{
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* smoother scroll */
}

.pricing-table {
  width: 100%;
  /*Die Linien der Tabellen zusammenführen*/
  border-collapse: collapse;
  text-align: center;
  /* MOBILE: kompakter, sehr gut lesbar */
  font-size: 0.85rem;   
  /* MOBILE: enge Zeilen → Tabelle wirkt kürzer */
  line-height: 1.25;    
}

/*tHead*/
.pricing-table thead{
  background: #3c2f26;
  color: #C49A63;
  font-weight: bold;
}

/*tBody && tFoot*/
.pricing-table tbody,
.pricing-table tfoot {
  background-color: #f4efe7;
}

.package-service{
  text-align: left;
}

/* Border */
.pricing-package,
.package-highlight{
  border: 1px solid #a88b61;
}

.package-service,
.included-service,
.package-total,
.package-summary{
  border: solid 1px rgb(192, 190, 190);
}
/* /Border */

/* Padding */
.pricing-package,
.package-highlight,
.package-service,
.included-service,
.package-total,
.package-summary{
  padding: 6px;
}
/* ===== MOBILE FIRST ===== */
.pricing-package,
.package-highlight,
.package-service,
.included-service,
.package-total,
.package-summary {
  padding: 6px; /* Mobile */
}

/* ===== TABLET ===== */
@media (min-width: 600px) {
  .pricing-package,
  .package-highlight,
  .package-service,
  .included-service,
  .package-total,
  .package-summary {
    padding: 10px; /* etwas mehr Platz auf Tablet */
  }
}

/* ===== DESKTOP ===== */
@media (min-width: 1024px) {
  .pricing-package,
  .package-highlight,
  .package-service,
  .included-service,
  .package-total,
  .package-summary {
    padding: 14px; /* großzügiger Abstand auf Desktop */
  }
}
/* /Padding*/

/* highlight */
.package-highlight,
.summary-highlight{
  background: #b7955f;
  color: #3c2f26;
}
.summary-highlight{
  font-weight: bold;
}
/* /highlight */

/* =========================
   /SECTION-Prices
   ========================= */



  /* =========================
  SECTION-Consultation
  ========================= */
  /* Extends .section */
  .bg-consultation{
  background: #f4efe7;
  background: linear-gradient(
  to bottom,
  #f9f6f1 0%,
  #f4efe7 60%,
  #eae4db 100%
  );
}

#consultation-title{
  font-weight: normal;
  text-align: center;
  color: #7a5537;
}

#consultation-form{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  padding: 20px;
  border: 1px solid rgba(162, 126, 78, 0.6); 
  border-radius: 6px;                        
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: transparent;
}

.bg-consultation p {
  color: #7a5537;
}


@media (min-width: 768px) {

  #consultation-form {
    display: grid;
    grid-template-columns: 1fr 1fr; /* zwei Spalten oben */
    justify-items: center;
      
  }

  /* 1 links, 2 rechts */
  #consultation-image-box { grid-column: 1; }
  #consultation-inputfield-box { grid-column: 2; }

  /* 3 und 4 zentriert darunter */
  #consultation-text-box { grid-column: 1 / span 2; }
  #consultation-btn-box  { grid-column: 1 / span 2; }
}

#consultation-image-box{
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 8px;
}

#author-profile{
  width: clamp(100px, 50%, 400px); 
  text-align: center;
  margin: 0 auto;
}

#author-profile img {
  display: block; 
  max-width: 100%;
  height: auto;      
}
#consultation-image-box p {
  margin: 0;
}

#consultation-inputfield-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 8px;
}

#consultation-inputfield-box p{
  text-align: center;
  margin: 0;
}

.consultation-inputfield {
  width: 100%;
  padding: 8px;
  font-size: 0.9rem;
  line-height: 1.2;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#consultation-text-box {
  width: 100%;
  padding: 4px 8px;
}

#consultation-textarea {
  width: 100%;
  padding: 8px;
  font-size: 0.9rem;
  line-height: 1.2;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  min-height: 80px;
  max-height: 300px;
}

#consultation-btn-box{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 0px 8px;
}

#consultation-button{
  border: none;
  appearance: none;
  -webkit-appearance: none;
  width: 30%;
  max-width: 200px;
  padding: 8px;
  font-size: 0.95rem;
  border-radius: 4px;
  background: linear-gradient(
  to bottom,
  #f9f6f1 0%,
  #f4efe7 60%,
  #eae4db 100%
  );
  color: #7a5537;
  border: 1px solid rgba(162, 126, 78, 0.6); 
  background-color: blue;
}

#consultation-button:hover{
  background: linear-gradient(to bottom, #5a4738, #6b5242);
  color: rgba(255, 255, 255, 0.9);
}

/* =========================
  /SECTION-Consultation
  ========================= */
/* =========================
   /MAIN
   ========================= */



/* =========================
  FOOTER
  ========================= */
/*Mobile*/
.site-footer {
  width: 100%;
  padding: 12px 8px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: linear-gradient(
    to bottom,
    #513C37 0%,
    #422E2A 100%
  );

  color: #ccc;
}

.footer-main {
  width: 100%;
  max-width: 1400px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 0;
}

.footer-policy{
  padding: 0;
  margin: 10px 0 0 0;
}

.footer-logo{
  margin-bottom: 10px;
}
.footer-logo img {
  display: block;
  max-height: 72px;
  width: auto;
}

.footer-content {
  display: flex;
  flex-direction: column;

  align-items: center;
  text-align: center;

  gap: 10px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col h4 {
  margin: 0;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-item {
  margin: 0;
}

.footer-link {
  color: inherit;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-copyright {
  padding: 0;
  margin: 0;
  font-size: 12px;
}


/*Tablet 768px*/
@media (min-width: 768px) {
  
  .site-footer{
    gap: 0;

    padding-top: 60px;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-main{
    display: flex;
    flex-direction: row;

    justify-content: flex-start;
    align-items: center;

    gap: 0;
  }

  .footer-policy{
    padding: 0;
    margin: 20px 0 0 0;
  }

  .footer-logo {
    flex-shrink: 0;
  }

  .footer-logo img {
    max-height: 100px;
  }

  .footer-content{
    flex-direction: row;

    flex: 1;

    justify-content: center;
    align-items: flex-start;

    gap: 40px;
  }

  .footer-copyright {
    font-size: 13px;
  }

}


/*Desktop 1024px*/
@media (min-width: 1024px) {

  .site-footer{
    gap: 0;

    padding-top: 60px;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-main{
    display: flex;
    flex-direction: row;

    justify-content: flex-start;
    align-items: center;

    gap: 0;
  }

  .footer-policy{
    padding: 0;
    margin: 40px 0 0 0;
  }

  .footer-logo {
    flex-shrink: 0;
  }

  .footer-logo img {
    max-height: 100px;
  }

  .footer-content{
    flex-direction: row;

    flex: 1;

    justify-content: center;
    align-items: flex-start;

    gap: 120px;
  }

  .footer-copyright {
    font-size: 14px;
  }

}
/* =========================
  /FOOTER
  ========================= */




