:root {
      --bg-light: #ffffff;
      --text-dark: #000000;
      --gold: #C2A46D;
      --gold-dark: #9f8452;
    }

    html,
    body {
      max-width: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-dark);
      background-color: #f7f7f5;
      scroll-behavior: smooth;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
      letter-spacing: 0.5px;
    }

    .navbar {
      padding: 1.2rem 0;
      backdrop-filter: blur(18px);
      background-color: rgba(255, 255, 255, 0.75);
      border-bottom: 1px solid rgba(255, 255, 255, 0.25);
      transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    }

    .navbar.scrolled {
      background-color: rgba(247, 247, 245, 0.95);
      padding: 0.8rem 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .navbar-logo {
      height: 72px;
      width: auto;
      display: block;
      transition: height 0.3s ease;
    }

    .navbar.scrolled .navbar-logo {
      height: 58px;
    }

    .navbar-toggler {
      border: none;
      padding: 0.35rem 0.6rem;
      background-color: rgba(255, 255, 255, 0.55);
      border-radius: 12px;
      transition: background-color 0.3s ease;
    }

    .navbar-toggler:focus {
      box-shadow: none;
      background-color: rgba(255, 255, 255, 0.7);
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(194,164,109, 0.95)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .nav-link {
      color: #111111;
      font-weight: 500;
      margin: 0 0.4rem;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-dark));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .nav-link:hover,
    .nav-link:focus {
      color: var(--gold);
    }

    .nav-link:hover::after,
    .nav-link:focus::after {
      transform: scaleX(1);
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold) 0%, #dcc89a 100%);
      border: none;
      color: #222222;
      font-weight: 600;
      border-radius: 999px;
      padding: 0.75rem 1.8rem;
      box-shadow: 0 12px 25px rgba(194, 164, 109, 0.35);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .btn-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 30px rgba(194, 164, 109, 0.45);
      color: #111111;
    }

    .hero-section {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      color: #ffffff;
      background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(48, 35, 21, 0.55)),
        url('../img/IMG_3852.jpeg') center/cover no-repeat;
    }

    .hero-content {
      max-width: 680px;
      padding: 2rem;
    }

    .hero-content h1 {
      font-size: clamp(2.6rem, 5vw, 4rem);
      margin-bottom: 1rem;
      line-height: 1.1;
    }

    .hero-content p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }

    section {
      padding: 5.5rem 0;
      position: relative;
    }

    .section-heading {
      font-size: clamp(2rem, 4vw, 2.8rem);
      margin-bottom: 1.5rem;
    }

    .divider {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-dark));
      margin-bottom: 1.5rem;
    }

    .about-image-grid img {
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
      object-fit: cover;
    }

    .about-image-grid .img-large {
      height: 380px;
    }

    .about-image-grid .img-small {
      height: 180px;
    }

    .events-card {
      border: none;
      border-radius: 20px;
      overflow: hidden;
      background-color: #faf9f6;
      box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .events-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12);
    }

    .events-card img {
      height: 220px;
      object-fit: cover;
    }

    .gallery-section {
      background-color: #ffffff;
    }

    .gallery-grid {
      column-count: 3;
      column-gap: 1.5rem;
    }

    .gallery-item {
      border: none;
      padding: 0;
      background: transparent;
      border-radius: 22px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      width: 100%;
      display: block;
      margin-bottom: 1.5rem;
      break-inside: avoid-column;
    }

    .gallery-item img {
      width: 100%;
      height: auto;
      display: block;
    }

    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.35) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .gallery-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 45px rgba(0, 0, 0, 0.18);
    }

    .gallery-item:hover::after {
      opacity: 1;
    }

    .gallery-item.gallery-hidden {
      display: none;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .lightbox.active {
      opacity: 1;
      pointer-events: auto;
    }

    .lightbox-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(6px);
    }

    .lightbox-content {
      position: relative;
      max-width: min(90vw, 1100px);
      max-height: 90vh;
      width: 100%;
      padding: 1rem 3.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox-image-wrapper {
      width: 100%;
      max-height: 85vh;
      overflow: auto;
      border-radius: 28px;
      box-shadow: 0 30px 65px rgba(0, 0, 0, 0.35);
    }

    .lightbox-image-wrapper img {
      max-width: 100%;
      max-height: 80vh;
      width: auto;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 28px;
      object-fit: contain;
    }

    .lightbox-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 2rem;
      color: #ffffff;
      background: transparent;
      border: none;
      cursor: pointer;
      line-height: 1;
    }

    .lightbox-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.4);
      color: #fff;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.3s ease;
      z-index: 1;
    }

    .lightbox-control img {
      width: 18px;
      height: 18px;
      object-fit: contain;
      filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.35));
    }

    .lightbox-control.prev {
      left: 1rem;
    }

    .lightbox-control.next {
      right: 1rem;
    }

    .lightbox-control:hover {
      background: rgba(0, 0, 0, 0.65);
    }

    .show-more-btn {
      margin-top: 0.5rem;
      padding: 0.75rem 2.5rem;
    }

    .show-more-btn.is-hidden {
      display: none;
    }

    .cookie-banner {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 10000;
      background: rgba(15, 15, 15, 0.92);
      color: #ffffff;
      padding: 1.5rem 1rem;
      transform: translateY(100%);
      transition: transform 0.4s ease;
    }

    .cookie-banner.active {
      transform: translateY(0);
    }

    .cookie-banner .cookie-content {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem;
    }

    .cookie-banner p {
      flex: 1 1 260px;
      margin: 0;
      font-size: 0.95rem;
    }

    .cookie-banner a {
      color: var(--gold);
    }

    .cookie-actions {
      display: flex;
      gap: 0.75rem;
    }

    .cookie-btn {
      border: none;
      border-radius: 999px;
      padding: 0.65rem 1.6rem;
      font-weight: 600;
      cursor: pointer;
      font-size: 0.95rem;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .cookie-btn.primary {
      background: linear-gradient(135deg, var(--gold) 0%, #dcc89a 100%);
      color: #1b1b1b;
    }

    .cookie-btn.secondary {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.4);
      color: #ffffff;
    }

    .cookie-btn:hover {
      transform: translateY(-2px);
    }

    html.lightbox-open,
    body.lightbox-open {
      overflow: hidden;
    }

    .contact-section {
      background-color: #fdfbf7;
    }

    .contact-card {
      border-radius: 24px;
      background-color: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(16px);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
      padding: 2.5rem;
    }

    .contact-details i {
      color: var(--gold);
      margin-right: 0.75rem;
    }

    .map-wrapper iframe {
      border: 0;
      width: 100%;
      min-height: 360px;
      border-radius: 20px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }

    footer {
      padding: 2rem 0;
      background-color: #0f0f0f;
      color: #f6f6f6;
    }

    footer .social-link {
      width: 46px;
      height: 46px;
      margin-left: 0.65rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      backdrop-filter: blur(6px);
      background: rgba(255, 255, 255, 0.08);
      font-size: 1.2rem;
      transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }

    footer .social-link:first-child {
      margin-left: 0;
    }

    footer .social-link:hover {
      background: rgba(255, 255, 255, 0.22);
      border-color: rgba(255, 255, 255, 0.9);
      color: #ffffff;
      transform: translateY(-4px);
    }

    footer .social-icon {
      width: 22px;
      height: 22px;
      object-fit: contain;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
    }

    .footer-privacy-link {
      color: #ffffff;
      text-decoration: underline;
    }

    @media (max-width: 992px) {
      .gallery-grid {
        column-count: 2;
      }
      .about-image-grid .img-large {
        height: 300px;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 4rem 0;
      }
      .navbar-logo {
        height: 56px;
      }
      .hero-section {
        padding: 2rem 1.5rem;
        text-align: center;
      }
      .hero-content {
        padding: 1rem;
      }
      .hero-content p {
        font-size: 1rem;
      }
      .about-image-grid {
        margin-top: 2rem;
      }
      .gallery-grid {
        column-count: 1;
        column-gap: 1rem;
      }
      .cookie-banner .cookie-content {
        flex-direction: column;
        align-items: flex-start;
      }
      .cookie-actions {
        width: 100%;
        flex-wrap: wrap;
      }
      .lightbox-content {
        padding: 1rem;
      }
      .lightbox-control {
        width: 44px;
        height: 44px;
      }
      .navbar-collapse {
        padding: 1rem 0;
      }
      .navbar-nav .nav-link {
        margin: 0.4rem 0;
      }
    }

    @media (hover: none) {
      .events-card:hover,
      .gallery-item:hover,
      .btn-gold:hover {
        transform: none;
        box-shadow: none;
      }
    }
