
        :root {
            --primary-color: #FF6B35;
            --secondary-color: #1E3A8A;
            --accent-color: #F59E0B;
            --text-dark: #1F2937;
            --text-light: #6B7280;
            --white: #FFFFFF;
            --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F59E0B 100%);
            --gradient-secondary: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            padding-top: 80px; /* for fixed navbar */
        }

        .hero-section {
            height: 100vh;
            width: 100vw;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: none !important;
            margin-top: 0 !important;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }

        .hero-section img.hero-bg {
            position: absolute;
            top: 0; left: 0; width: 100vw; height: 100vh;
            object-fit: cover;
            z-index: 0;
            filter: brightness(0.5) blur(1px);
        }

        .hero-overlay {
            position: relative;
            z-index: 2;
            width: 100vw;
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }

        .hero-overlay img {
            height: 90px;
            width: auto;
            background: #fff;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.2rem;
            line-height: 1.15;
            color: #fff;
            text-shadow: 0 2px 12px rgba(30,58,138,0.45), 0 1px 0 #232b36;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            margin-bottom: 1.5rem;
            opacity: 0.95;
            font-weight: 400;
        }

        .hero-date {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 2.2rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            display: inline-block;
            backdrop-filter: blur(10px);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 0;
        }

        .btn-primary {
            background: var(--white);
            color: var(--primary-color);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-lg);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
            color: var(--primary-color);
            text-decoration: none;
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-color);
            text-decoration: none;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 20%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 20%;
            left: 15%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .section {
            padding: 5rem 0;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-dark);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .itinerary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .itinerary-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
            border: 1px solid #E5E7EB;
        }

        .itinerary-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .day-number {
            background: var(--gradient-primary);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .day-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .day-location {
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .day-time {
            background: #F3F4F6;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            font-size: 0.9rem;
            color: var(--text-dark);
            display: inline-block;
        }

        .pricing-section {
            background: var(--gradient-secondary);
            color: var(--white);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .cabin-type {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .price-per {
            font-size: 1rem;
            opacity: 0.8;
        }

        .features-list {
            list-style: none;
            margin: 2rem 0;
        }

        .features-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .features-list li:last-child {
            border-bottom: none;
        }

        .features-list i {
            margin-right: 0.5rem;
            color: var(--accent-color);
        }

        .amenities-section {
            background: #F9FAFB;
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .amenity-card {
            background: var(--white);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .amenity-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .amenity-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
            color: var(--white);
        }

        .amenity-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .amenity-description {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .cta-section {
            background: var(--gradient-primary);
            color: var(--white);
            text-align: center;
        }

        .cta-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff !important;
            text-shadow: 0 2px 12px rgba(30,30,30,0.45), 0 1px 0 #232b36;
        }

        .cta-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .footer-section p, .footer-section a {
            color: #9CA3AF;
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
        }

        .footer-section a:hover {
            color: var(--white);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-2px);
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 1rem;
            text-align: center;
            color: #9CA3AF;
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }

        .navbar-nav {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .navbar-nav a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .navbar-nav a:hover {
            color: var(--primary-color);
        }

        @media (max-width: 991px) {
        .navbar-collapse {
            background: linear-gradient(90deg, #1E3A8A 0%, #FF6B35 100%);
            position: absolute;
            top: 60px;
            left: 10px;
            right: 10px;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 9999;
        }
        .navbar-nav .nav-link {
            color: #fff !important;
            padding: 10px 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .navbar-nav .nav-link:last-child {
            border-bottom: none;
        }
      }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            font-size: 2rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }


    
        body { margin: 0; padding: 0; }
        .custom-navbar {
          background: linear-gradient(90deg, #1E3A8A 0%, #FF6B35 100%);
          box-shadow: 0 2px 12px rgba(0,0,0,0.07);
        }
        .custom-navbar .nav-link {
          color: #fff !important;
          font-weight: 500;
          margin-left: 1rem;
          transition: color 0.2s;
        }
        .custom-navbar .nav-link:hover {
          color: #FFD580 !important;
        }
        
        /* THIS IS THE FIX FOR THE MOBILE MENU APPEARANCE */
        @media (max-width: 991.98px) {
          .custom-navbar .navbar-collapse {
            background: linear-gradient(135deg, #1E3A8A 0%, #FF6B35 100%); /* Gradient BG */
            position: absolute;
            top: 60px;
            left: 10px;
            right: 10px;
            z-index: 1001;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
          }
          .custom-navbar .navbar-nav {
            width: 100%;
            flex-direction: column;
            align-items: center; /* Centers the text */
            padding-left: 0;
          }
          .custom-navbar .nav-link {
            margin: 0.5rem 0;
            font-size: 1.2rem;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            width: 100%;
            text-align: center;
            padding-bottom: 10px;
          }
          .custom-navbar .nav-link:last-child {
              border-bottom: none;
          }
          .custom-navbar .navbar-brand {
            margin-left: 0.5rem;
          }
        }


        /* Artist Section */

  .artist-section { padding: 60px 20px; background: #fff; text-align: center; }
  .artist-section h2 { font-size: 2.5rem; margin-bottom: 40px; color: #333; }
  
  .artist-grid {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
  }

  .artist-card {
      flex: 0 1 300px; /* Cards won't get smaller than 300px */
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease;
  }

  .artist-card:hover { transform: translateY(-10px); }

  .artist-card img {
      width: 100%;
      height: 350px;
      object-fit: cover; /* Ensures images fill the square without stretching */
  }

  .artist-info { padding: 20px; background: #fafafa; }
  .artist-info h3 { margin: 0; color: #e67e22; font-size: 1.5rem; }
  .artist-info p { color: #666; margin-top: 5px; }
