        :root {
            --primary: #015f80;
            --secondary: #00829c;
            --accent: #6abcc7;
            --gold: #caad2a;
            --light-gold: #e6c74f;
            --dark-gold: #a98e1f;
            --light: #f8f9fa;
            --dark: #333333;
            --shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.5;
            overflow-x: hidden;
            background-color: #f9f9f9;
            font-size: 14px;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow);
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo img {
    height: 80px; /* adjust as needed */
    width: auto;
    transition: all 0.3s ease; /* for smooth color/size changes */
    padding-top: 10px;
}

header.scrolled .logo {
    color: var(--primary);
}

.logo span {
    color: var(--gold);
}
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        header.scrolled nav ul li a {
            color: var(--primary);
        }
        
        nav ul li a:hover {
            color: var(--gold);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        header.scrolled .mobile-menu-btn {
            color: var(--primary);
        }
        
        /* Hero Section */
        .resorts-hero {
            position: relative;
            background-image: url('../assets/PackagesHero.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            height: 35vh;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .resorts-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(1, 95, 128, 0.7), rgba(0, 130, 156, 0.8));
            z-index: 2;
        }
        
        .resorts-hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            max-width: 800px;
            width: 90%;
            padding: 0 15px;
            margin-top: 50px;
        }
        
        .resorts-hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            margin-top: 1.5rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .resorts-hero-content p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }
        
        /* Resorts Navigation */
        .resorts-nav {
            background: white;
            position: sticky;
            top: 60px;
            z-index: 100;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }
        
        .resorts-nav-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .resort-nav-item {
            padding: 15px 20px;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
            border-bottom: 2px solid transparent;
            position: relative;
            font-size: 14px;
        }
        
        .resort-nav-item:hover, .resort-nav-item.active {
            color: var(--gold);
        }
        
        .resort-nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        
        .resort-nav-item:hover::after, .resort-nav-item.active::after {
            width: 70%;
        }
        
        /* Resorts Section */
        .resorts-section {
            padding: 50px 0;
        }
        
        .section-title-center {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title-center h2 {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 12px;
            position: relative;
            display: inline-block;
        }
        
        .section-title-center h2::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: var(--gold);
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title-center p {
            font-size: 16px;
            color: var(--secondary);
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.5;
        }
        
        /* Resort Details */
        .resort-container {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(1, 95, 128, 0.08);
            margin-bottom: 40px;
            transition: var(--transition);
        }
        
        .resort-container:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(1, 95, 128, 0.12);
        }
        
        .resort-hero {
            height: 320px;
            background-size: cover;
            background-position: center;
            position: relative;
            transition: var(--transition);
        }
        
        .resort-hero:hover {
            transform: scale(1.02);
        }
        
        .resort-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: white;
            padding: 6px 12px;
            border-radius: 40px;
            font-size: 12px;
            font-weight: 600;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
            z-index: 2;
        }
        
        .resort-content {
            padding: 30px;
        }
        
        .resort-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .resort-title {
            flex: 2;
            min-width: 250px;
        }
        
        .resort-title h2 {
            font-size: 26px;
            color: var(--primary);
            margin-bottom: 8px;
            position: relative;
            display: inline-block;
        }
        
        .resort-title h2::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gold);
        }
        
        .resort-title p {
            color: #5a5a5a;
            font-size: 15px;
            line-height: 1.5;
            margin-top: 12px;
        }
        
        .resort-details-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .resort-features {
            margin-bottom: 30px;
        }
        
        .resort-features h3 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 8px;
        }
        
        .resort-features h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--gold);
            bottom: 0;
            left: 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            padding: 15px;
            background: rgba(106, 188, 199, 0.05);
            border-radius: 10px;
            transition: var(--transition);
        }
        
        .feature-item:hover {
            background: rgba(106, 188, 199, 0.1);
            transform: translateY(-2px);
        }
        
        .feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(106, 188, 199, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--gold);
            font-size: 16px;
            flex-shrink: 0;
            transition: var(--transition);
        }
        
        .feature-item:hover .feature-icon {
            background: rgba(106, 188, 199, 0.2);
            transform: scale(1.05);
        }
        
        .feature-text {
            flex: 1;
        }
        
        .feature-text h4 {
            font-size: 16px;
            margin-bottom: 6px;
            color: var(--primary);
        }
        
        .feature-text p {
            color: #5a5a5a;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .room-types {
            margin-bottom: 25px;
        }
        
        .room-types h3 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 8px;
        }
        
        .room-types h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--gold);
            bottom: 0;
            left: 0;
        }
        
        .room-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .room-card {
            background: #f9f9f9;
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
        }
        
        .room-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
        }
        
        .room-image {
            height: 160px;
            background-size: cover;
            background-position: center;
            position: relative;
            transition: var(--transition);
        }
        
        .room-card:hover .room-image {
            transform: scale(1.04);
        }
        
        .room-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 10px;
            color: white;
            opacity: 0;
            transition: var(--transition);
            font-size: 12px;
        }
        
        .room-card:hover .room-overlay {
            opacity: 1;
        }
        
        .room-details {
            padding: 15px;
        }
        
        .room-details h4 {
            font-size: 16px;
            color: var(--primary);
            margin-bottom: 8px;
        }
        
        .room-price {
            font-size: 18px;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 8px;
        }
        
        .room-features {
            list-style: none;
            margin-bottom: 12px;
        }
        
        .room-features li {
            display: flex;
            align-items: center;
            margin-bottom: 6px;
            font-size: 13px;
            color: #5a5a5a;
        }
        
        .room-features li i {
            color: var(--gold);
            margin-right: 6px;
            font-size: 12px;
        }
        
        .btn-book-now {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: white;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 14px;
            box-shadow: 0 3px 8px rgba(202, 173, 42, 0.25);
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .btn-book-now:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(202, 173, 42, 0.35);
            background: linear-gradient(135deg, var(--light-gold), var(--gold));
        }
        
        .btn-book-now i {
            margin-left: 6px;
            font-size: 14px;
        }

        /* Family Resort Pricing Section */
        .family-pricing {
            background: linear-gradient(135deg, rgba(106, 188, 199, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%);
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            text-align: center;
            border: 1px solid rgba(106, 188, 199, 0.2);
        }

        .family-pricing h3 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 12px;
            position: relative;
            padding-bottom: 8px;
            display: inline-block;
        }

        .family-pricing h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--gold);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .pricing-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--gold);
            margin: 15px 0;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
        }

        .pricing-note {
            color: #5a5a5a;
            font-style: italic;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .family-booking-btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: white;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            font-size: 16px;
            box-shadow: 0 4px 10px rgba(202, 173, 42, 0.25);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .family-booking-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(202, 173, 42, 0.35);
            background: linear-gradient(135deg, var(--light-gold), var(--gold));
        }

        .family-booking-btn i {
            margin-left: 8px;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 50px 0 15px;
        }

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

        .footer-col h4 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 8px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--gold);
            bottom: 0;
            left: 0;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--gold);
            padding-left: 4px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
            font-size: 14px;
        }

        .social-links a:hover {
            background: var(--gold);
            transform: translateY(-3px);
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            font-size: 14px;
        }

        .contact-info i {
            margin-right: 12px;
            margin-top: 4px;
            color: var(--gold);
            min-width: 16px;
            font-size: 14px;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 13px;
            color: #aaa;
        }



.footer-logo {
    text-align: left; /* center the logo */
    margin-right: 20px;
}

.footer-logo-img {
    max-width: 100px; /* adjust as needed */
    height: auto;
}

        .footer-description {
            margin-bottom: 15px;
            line-height: 1.5;
            opacity: 0.9;
            font-size: 14px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .resorts-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .resort-header {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: -280px;
                width: 250px;
                height: 100vh;
                background: white;
                box-shadow: -4px 0 12px rgba(0, 0, 0, 0.08);
                transition: right 0.3s ease;
                padding-top: 70px;
                z-index: 1000;
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 15px;
            }
            
            nav ul li {
                margin: 12px 0;
            }
            
            nav ul li a {
                color: var(--primary);
                font-size: 16px;
            }

.resorts-nav {
    display: none;
}
            
            .resorts-hero {
                height: 40vh;
                min-height: 320px;
            }
            
            .resorts-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .resorts-hero-content p {
                font-size: 14px;
            }
            
            .resort-nav-item {
                padding: 12px;
                font-size: 13px;
            }
            
            .resort-content {
                padding: 20px;
            }
            
            .resort-title h2 {
                font-size: 22px;
            }
            
            .room-grid {
                grid-template-columns: 1fr;
            }

            .pricing-amount {
                font-size: 28px;
            }

            .family-booking-btn {
                padding: 10px 25px;
                font-size: 14px;
            }
        }
        
        @media (max-width: 576px) {
            .resorts-hero-content h1 {
                font-size: 1.6rem;
            }
            
            .resort-hero {
                height: 250px;
            }
        
            .features-grid {
                grid-template-columns: 1fr;
            }

            .family-pricing {
                padding: 15px;
            }

            .pricing-amount {
                font-size: 26px;
            }
            
            .section-title-center h2 {
                font-size: 24px;
            }
            
            .section-title-center p {
                font-size: 14px;
            }
        }