
    /* Global box-sizing */
    *, *::before, *::after {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      font-family: "Poppins", sans-serif;
      overflow-x: hidden; /* prevent horizontal scroll */
      scroll-behavior: smooth;
    }

    main {
      min-height: 70vh;
      padding-top: 60px;
    }

    img, video, iframe {
      max-width: 100%;
      height: auto;
      display: block;
    }

    footer a {
      text-decoration: none;
      color: inherit;
    }

    footer {
      background: #f8d7e3;
      color: #222;
      padding: 40px 20px;
      text-align: center;
      font-size: 0.9rem;
    }

    footer .footer-brand {
      font-family: "Playfair Display", serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: #b67184;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    footer p {
      margin: 8px 0 0;
      color: #555;
    }

    a, button {
      transition: all 0.3s ease;
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
      main .container, main .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
      }

      footer {
        padding: 30px 15px;
        font-size: 0.85rem;
      }

      footer .footer-brand {
        font-size: 1.1rem;
      }
    }
/* ================================================== */
  :root {
    --rose: #e6b8c8;
    --gold: #f4d6a0;
    --text-dark: #222;
    --accent: #b67184;
  }

  /* Header Base */
  .lux-header {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: all 0.4s ease;
  }
  .lux-header.scrolled {
    background: rgba(255,255,255,0.96);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  /* Logo */
  .lux-logo { color: var(--text-dark); display: flex; align-items: center; }
  .lux-icon {
    background: linear-gradient(135deg,var(--rose),var(--gold));
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    animation: glow 3s infinite alternate;
  }
  @keyframes glow {
    from { box-shadow: 0 0 6px rgba(230,184,200,0.5); }
    to { box-shadow: 0 0 20px rgba(244,214,160,0.9); }
  }
  .lux-name {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .lux-subtext {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
  }

  /* Desktop Nav */
  .lux-nav .lux-link {
    margin: 0 14px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
  }
  .lux-nav .lux-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg,var(--rose),var(--gold));
    bottom: -4px;
    left: 0;
    transition: width 0.3s ease;
  }
  .lux-nav .lux-link:hover::after { width: 100%; }
  .lux-nav .lux-link:hover { color: var(--accent); }

  /* Gradient Button */
  .lux-btn {
    background: linear-gradient(90deg,var(--rose),var(--gold));
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    color: #222;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }
  .lux-btn:hover {
    background: linear-gradient(90deg,var(--gold),var(--rose));
    color: #000;
  }

  /* Mobile Toggle */
  .lux-toggle {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .lux-toggle:hover {
    background: rgba(182,113,132,0.1);
  }

  /* Mobile Menu */
  .lux-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
    z-index: 10000;
  }
  body.show-menu .lux-mobile-menu { right: 0; }
  .lux-close-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--accent);
  }
  .lux-mobile-link {
    padding: 14px 0;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .lux-mobile-link:hover { color: var(--accent); }
  .lux-mobile-link:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    width: 80%;
    margin: 0 auto;
  }

  @media(max-width:768px) {
    .lux-header .container { padding: 0 15px; }
    .lux-icon { width: 40px; height: 40px; font-size: 1rem; }
    .lux-name { font-size: 1.2rem; }
  }

