/* CSS Reset & Variables */
:root {
    --primary-color: #002B4B; /* Deep corporate blue */
    --accent-color: #D4AF37; /* Premium Gold */
    --accent-hover: #b8972e;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #F8F9FA;
    --bg-dark: #121A21;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gray { color: #A0AEC0; }
.gold-text { color: var(--accent-color); }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.w-full { width: 100%; text-align: center; }
.max-w-3xl { max-width: 800px; margin: 0 auto; }

.section {
    padding: 6rem 0;
}

.light-bg { background-color: var(--bg-light); }
.dark-bg { background-color: var(--bg-dark); }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

h2, h3, h4 { color: var(--primary-color); }

.dark-bg h2, .dark-bg h3, .dark-bg h4 { color: var(--white); }

.section-badge {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Glassmorphism */
.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-solid-gold {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-solid-gold:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--text-dark);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-dark:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Contact Sales Button (Green) */
.btn-contact-sales {
    background-color: #1E6748;
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.btn-contact-sales:hover {
    background-color: #144932;
    transform: translateY(-2px);
}

/* Top Utility Bar */
.top-utility-bar {
    background-color: #121A21;
    color: #ffffff;
    padding: 0.6rem 0;
    font-size: 0.85rem;
}

.utility-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-left, .utility-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.utility-link {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.utility-link:hover {
    color: #cccccc;
}

.icon-sm { width: 16px; height: 16px; }
.icon-xs { width: 14px; height: 14px; margin-left: -2px; }

.btn-utility {
    padding: 0.4rem 0.8rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-join {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-join:hover {
    background-color: rgba(255,255,255,0.1);
}

.btn-signin {
    background-color: #ffffff;
    color: #121A21;
}

.btn-signin:hover {
    background-color: #e0e0e0;
}

@media (max-width: 900px) {
    .hidden-mobile { display: none; }
    .utility-container { justify-content: center; }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Property Sub Bar */
.property-sub-bar {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eaeaea;
    text-align: left;
}

.property-name-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #121A21;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 2rem 5%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Hero */
.hero {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/hero_banquet.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,43,75,0.85) 0%, rgba(18,26,33,0.5) 100%);
    z-index: -1;
}

.hero-content {
    width: 100%;
}

.hero-text {
    max-width: 650px;
    color: var(--white);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Features List */
.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.features-list i {
    color: var(--accent-color);
}

.dark-bg .features-list li { color: var(--white); }

/* Images */
.image-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hover-zoom:hover img {
    transform: scale(1.05);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-box {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-box h4 {
    font-size: 1.8rem;
    color: var(--white);
    margin: 0.5rem 0 0.2rem 0;
}

.stat-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.gold-icon {
    color: var(--accent-color);
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* IHG Style Room Cards */
.room-list-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ihg-room-card {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.ihg-room-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.ihg-room-image {
    flex: 0 0 35%;
    max-width: 35%;
    position: relative;
}

.ihg-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    min-height: 280px;
}

.ihg-carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    height: 100%;
}

.ihg-carousel-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 280px;
}

.ihg-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #121A21;
    z-index: 2;
    transition: background 0.2s, opacity 0.3s;
    opacity: 0;
}

.ihg-carousel:hover .ihg-carousel-btn {
    opacity: 1;
}

.ihg-carousel-btn:hover {
    background: #ffffff;
    color: #004d1d;
}

.ihg-carousel-btn.prev {
    left: 10px;
}

.ihg-carousel-btn.next {
    right: 10px;
}

.ihg-carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.ihg-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.ihg-carousel-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

.ihg-room-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.ihg-room-badge {
    color: #e27a00;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.ihg-room-title {
    font-size: 1.5rem;
    color: #121A21;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ihg-room-meta {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.ihg-room-meta p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.ihg-room-meta strong {
    font-weight: 600;
    color: #121A21;
}

.ihg-room-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.ihg-room-actions {
    margin-top: auto;
}

.btn-ihg-primary {
    background-color: #004d1d;
    color: #ffffff;
    padding: 0.6rem 2rem;
    border: 2px solid #004d1d;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.btn-ihg-primary:hover {
    background-color: #003313;
    border-color: #003313;
}

.btn-ihg-outline {
    background-color: transparent;
    color: #004d1d;
    padding: 0.6rem 2rem;
    border: 2px solid #004d1d;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.btn-ihg-outline:hover {
    background-color: #004d1d;
    color: #ffffff;
}

/* Room Amenities Tags */
.room-amenities-list h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.mb-4 { margin-bottom: 1.5rem; }

.amenities-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.amenity-tag {
    background: rgba(0,43,75,0.05);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(0,43,75,0.1);
    transition: var(--transition);
}

.amenity-tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

.amenity-tag i {
    width: 18px;
    height: 18px;
}

.amenity-card {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    background: var(--white);
    border-color: rgba(212, 175, 55, 0.2);
}

.amenity-card i {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.amenity-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Contact */
.contact-grid {
    align-items: stretch;
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-card i {
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.contact-card h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.map-placeholder {
    background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.map-placeholder::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,43,75,0.7);
    border-radius: var(--border-radius);
}

.map-inner {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 300px;
}

.map-inner p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .swap-mobile .image-left {
        order: 2;
    }
    
    .swap-mobile .content-right {
        order: 1;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .ihg-room-card {
        flex-direction: column;
    }
    
    .ihg-room-image {
        flex: 0 0 auto;
        max-width: 100%;
    }
    
    .ihg-room-image img {
        min-height: 220px;
    }
    
    .ihg-room-content {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-contact {
        text-align: center;
    }
}

/* IHG Included Amenities */
.ihg-included-amenities {
    background-color: #A9C3B6; /* Pale green matching IHG */
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
    color: #121A21;
}

.ihg-included-amenities h3 {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.8rem;
    color: #121A21;
    text-transform: uppercase;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #121A21;
}

.included-item i {
    width: 24px;
    height: 24px;
    color: #121A21;
}

@media (max-width: 900px) {
    .included-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Footer Logo */
.footer-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: invert(1) grayscale(1) brightness(1.5) contrast(1.2);
    mix-blend-mode: screen;
}
