/* =========================
   MAIN
   ========================= */
  .site-main{
    /* Spacing (space below header) */
    padding-top: var(--header-height);

    /* Layout (centered column container)*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;   
  }

  /* =========================
   HERO
   ========================= */
  #hero {
    /* Layout */
    width: 100%;
    overflow: hidden;

    /* Dimensions */
    aspect-ratio: 16 / 9;
  }

  #hero img {
    /* Layout */
    width: 100%;
    height: 100%;

    /* Visual Styling */
    object-fit: cover;
  }

  /* =========================
   SECTION-Gallery
   ========================= */
  .gallery-section{
    /* Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Dimensions */
    width: 100%;
    
    /* Spacing */
    padding: 20px;

    /* Visual Styling */
    background: linear-gradient(
    to bottom,
    #f9f6f1 0%,
    #f4efe7 60%,
    #eae4db 100%
    );
  }

  .gallery-main{
    /* Layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* Dimensions */
    width: 100%;
    max-width: 1400px;

    /* Spacing */
    padding: 10px;

    /* Visual Styling */
    border: 1px solid rgba(162, 126, 78, 0.6); 
    border-radius: 4px; 
  }

  /* Gallery-Media container */
  .gallery-media{
    /* Dimensions */
    width: 100%;
  }

  /* Gallery-Heading */
  .gallery-heading h2{
    /* Typography */
    text-align: center;
    font-size: 28px;
    font-weight: normal;
    color: #7a5537;
  }

  /* Gallery-Tabs container*/
  .gallery-tabs {
    /* Layout */
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    
    /* Dimensions */
    width: 100%;

    /* Spacing */
    padding: 20px 16px;
    gap: 12px;

    /* Interaction */
    -webkit-overflow-scrolling: touch;
  }

  /* Tab */
  .gallery-tab {
  /* Layout */
  flex: 0 0 auto;
  white-space: nowrap;
  
  /* Dimensions */
  min-height: 40px;
  /* Spacing */
  padding: 10px 18px;
  
  /* Visual Styling */
  background: linear-gradient(
  to bottom,
  #f9f6f1 0%,
  #f4efe7 60%,
  #eae4db 100%
  );
  border: 2px solid rgba(162, 126, 78, 0.4);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  color: #8b6f48;
  
  /* Interaction */
  cursor: pointer;
  }

  .gallery-tab:hover{
    /* Visual Styling */
    background: linear-gradient(to bottom, #5a4738, #6b5242);
    color: rgba(255, 255, 255, 0.9);
  }

  /* Active state */
  .gallery-tab.active {
    /* Visual Styling */
    background: linear-gradient(to bottom, #5a4738, #6b5242);
    color: rgba(255, 255, 255, 0.9);
  }

  /* Scrollbar entfernen (optional) */
  .gallery-tabs::-webkit-scrollbar {
    /* Layout */
    display: none;
  }

  /* Image-box & img */
  .gallery-image-box{
    /* Positioning */
    position: relative;

    /* Layout */
    overflow: hidden;

    /* Dimensions */
    width: 100%;
    aspect-ratio: 4 / 5;

    /* Visual Styling */
    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{
    /* Layout */
    display: block;
    
    /* Dimensions */
    width: 100%;
    height: 100%;

    /* Visual Styling */
    object-fit: cover;
    object-position: center;
    border-radius: 2px;
  }
  /* /Image-box & img */

  /* Gallery - Content*/
  .gallery-content{
    width: 100%;
  }

  .gallery-title{
    /* Spacing */
    margin: 0;
    
    /* Typography */
    font-weight: normal;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;

    /* Visual Styling */
    color: #7a5537;
  }
  .gallery-description{
    /* Spacing */
    margin: 6px 0 0 0;

    /* Typography */
    text-align: center;
    font-size: 14px;
    line-height: 1.4;

    /* Visual Styling */
    color: #7a5537;
  }

  /* Gallery - Controls*/
  .gallery-controls {
    /* Layout */
    display: flex;
    justify-content: center;

    /* Spacing */
    gap: 12px;
    margin-top: 16px;
  }

  .gallery-btn {
    /* Dimensions */
    width: 68px;
    height: 40px;

    /* Visual Styling */
    background: linear-gradient(
      to bottom,
      #f9f6f1 0%,
      #f4efe7 60%,
      #eae4db 100%
    );
    border: 2px solid rgba(162, 126, 78, 0.4);
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    color: #8b6f48;

    /* Interaction */
    cursor: pointer;
  }

  .gallery-btn:hover{
    /* Visual Styling */
    background: linear-gradient(to bottom, #5a4738, #6b5242);
    color: rgba(255, 255, 255, 0.9);
  }


  /* =========================
   SECTION-Prices
   ========================= */
  .prices-section{
    /* Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Dimensions */
    width: 100%;
    
    /* Spacing */
    padding: 20px;

    /* Visual Styling */
    background: linear-gradient(
    180deg,
    #5A4036 0%,
    #4B362E 45%,
    #3E2B25 100%
    );
  }

  .prices-main{
    /* Layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* Dimensions */
    width: 100%;
    max-width: 1400px;

    /* Spacing */
    padding: 10px;

    /* Visual Styling */
    border: 1px solid rgba(162, 126, 78, 0.6); 
    border-radius: 4px; 
  }

  .pricing-title{
    /* Typography */
    font-weight: normal;
    /* Visual Styling */
    color: #cead7f;
  }

  .pricing-wrapper{
    /* Layout */
    overflow-x: auto;
    overflow-y: hidden;

    /* Dimensions */
    width: 100%;

    /* Interaction */
    -webkit-overflow-scrolling: touch; 
  }

  .pricing-table {
    /* Dimensions */
    width: 100%;
    
    /* Layout */
    border-collapse: collapse;
    text-align: center;
    
    /* Typography */
    font-size: 0.85rem;   
    line-height: 1.25;    
  }

  /*tHead*/
  .pricing-table thead{
    /* Visual Styling */
    background: #3c2f26;
    color: #C49A63;
    
    /* Typography */
    font-weight: bold;
  }

  /*tBody && tFoot*/
  .pricing-table tbody,
  .pricing-table tfoot {
    background-color: #f4efe7;
  }

  .package-service{
    text-align: left;
  }

  .pricing-package,
  .package-highlight{
    border: 1px solid #a88b61;
  }

  .package-service,
  .included-service,
  .package-total,
  .package-summary{
    border: solid 1px rgb(192, 190, 190);
  }

  .pricing-package,
  .package-highlight,
  .package-service,
  .included-service,
  .package-total,
  .package-summary{
    padding: 6px;
  }

  .pricing-package,
  .package-highlight,
  .package-service,
  .included-service,
  .package-total,
  .package-summary {
    padding: 6px;
  }

  .package-highlight,
  .summary-highlight{
    background: #b7955f;
    color: #3c2f26;
  }
  .summary-highlight{
    font-weight: bold;
  }


  /* =========================
  SECTION-Consultation
  ========================= */
  .consultation-section{
    /* Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Dimensions */
    width: 100%;
    
    /* Spacing */
    padding: 20px;

    /* Visual Styling */
    background: linear-gradient(
      to bottom,
      #f9f6f1 0%,
      #f4efe7 60%,
      #eae4db 100%
    );
  }

  .consultation-main{
    /* Layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* Dimensions */
    width: 100%;
    max-width: 1400px;

    /* Spacing */
    padding: 10px;

    /* Visual Styling */
    border: 1px solid rgba(162, 126, 78, 0.6); 
    border-radius: 4px; 
  }

  .consultation-title{
    /* Typography */
    font-weight: normal;
    text-align: center;
    
    /* Visual Styling */
    color: #7a5537;
  }

  .consultation-form{
    /* Layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    /* Dimensions */
    width: 100%;
    max-width: 600px;

    /* Spacing */
    padding: 20px;

    /* Visual Styling */
    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;
  }

  .consultation-image-box{
    /* Layout */
    display: flex;
    flex-direction: column;
    /* Layout (text alignment behavior) */
    text-align: center;
    
    /* Dimensions */
    width: 100%;
    
    /* Spacing */
    margin: 0;
    padding: 8px;
  }

  .author-profile {
    /* Dimensions */
    width: clamp(100px, 50%, 400px);

    /* Layout */
    text-align: center;

    /* Spacing */
    margin: 0 auto;
  }

  .author-profile img {
    /* Layout */
    display: block;

    /* Dimensions */
    max-width: 100%;
    height: auto;
  }

  .consultation-image-box p {
    margin: 0;
  }

  .consultation-inputfield-box {
    /* Layout */
    display: flex;
    flex-direction: column;

    /* Spacing */
    gap: 12px;
    margin: 0;
    padding: 8px;

    /* Dimensions */
    width: 100%;
  }

  .consultation-inputfield-box p{
    text-align: center;
    margin: 0;
  }

  .consultation-inputfield {
    /* Dimensions */
    width: 100%;

    /* Spacing */
    padding: 8px;

    /* Typography */
    font-size: 0.9rem;
    line-height: 1.2;

    /* Visual Styling */
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .consultation-text-box {
    width: 100%;
    padding: 4px 8px;
  }

  .consultation-textarea {
    /* Dimensions */
    width: 100%;
    min-height: 80px;
    max-height: 300px;

    /* Spacing */
    padding: 8px;

    /* Typography */
    font-size: 0.9rem;
    line-height: 1.2;

    /* Visual Styling */
    border: 1px solid #ccc;
    border-radius: 4px;

    /* User Interaction */
    resize: vertical;
  }

  .consultation-btn-box{
    /* Layout */
    display: flex;
    justify-content: flex-end;

    /* Dimensions */
    width: 100%;

    /* Spacing */
    padding: 0px 8px;
  }

  .consultation-button{
    /* Layout reset*/
    border: none;
    appearance: none;
    -webkit-appearance: none;

    /* Dimensions */
    width: 30%;
    max-width: 200px;

    /* Spacing */
    padding: 8px;

    /* Typography */
    font-size: 0.95rem;
    color: #7a5537;
    
    /* Visual Styling */
    background: linear-gradient(
    to bottom,
    #f9f6f1 0%,
    #f4efe7 60%,
    #eae4db 100%
    );
    border: 1px solid rgba(162, 126, 78, 0.6); 
    border-radius: 4px;
  }

  .consultation-button:hover{
    background: linear-gradient(to bottom, #5a4738, #6b5242);
    color: rgba(255, 255, 255, 0.9);
  }