@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800;900&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- LUXURY RESORT DESIGN SYSTEM TOKENS --- */
:root {
    --bg-dark: #070c19;        /* Royal Deep Navy */
    --bg-surface: #0e162b;     /* Deep Navy Surface */
    --bg-card: #151e3d;        /* Mid Navy Card */
    --bg-light: #fdfdfb;       /* Cream/Off-White */
    
    --color-gold: #d4af37;       /* Royal Gold */
    --color-gold-hover: #bfa030;
    --color-gold-light: rgba(212, 175, 55, 0.15);
    
    --text-primary: #f0f4f8;   /* Light Slate */
    --text-dark: #070c19;      /* Dark Navy Text for Light Cards */
    --text-secondary: #8c9bb4; /* Muted Slate Blue */
    --text-muted: #57657d;
    
    --border-gold: rgba(212, 175, 55, 0.2);
    --border-glow: rgba(212, 175, 55, 0.45);
    
    --font-serif: 'Cinzel', serif;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 30px;
    
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.1);
    --shadow-glow-hover: 0 0 30px rgba(212, 175, 55, 0.25);
}

/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: white;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-quick);
}

button, input, textarea, select {
    font-family: inherit;
    outline: none;
}

/* --- LAYOUT UTILITIES --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header::before {
    content: '❖';
    color: var(--color-gold);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-top: 12px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--bg-dark);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* --- HEADER & NAVIGATION --- */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.sticky {
    position: fixed;
    background-color: rgba(7, 12, 25, 0.95);
    backdrop-filter: blur(15px);
    padding: 16px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease-out;
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
}

/* --- HERO SPLIT SECTION --- */
.hero {
    height: 90vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.hero-pane {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-pane::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 12, 25, 0.55);
}

.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
    text-align: center;
    padding: 0 40px;
}

.hero-overlay-content span {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.hero-overlay-content h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    font-weight: 900;
}

/* --- HORIZONTAL BOOKING BAR OVERLAY --- */
.booking-bar-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -50px;
}

.booking-bar {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 24px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.booking-bar-form {
    display: grid;
    grid-template-columns: repeat(4, 1.2fr) 1.2fr;
    gap: 20px;
    align-items: flex-end;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-field label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.booking-input {
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
}

.booking-input:focus {
    border-color: var(--color-gold);
}

/* --- INVITE GUESTS SECTION --- */
.invite-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.invite-left h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    line-height: 1.3;
}

.invite-left p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.invite-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item h4 {
    font-size: 2rem;
    font-family: var(--font-serif);
    color: var(--color-gold);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.invite-right-img {
    height: 480px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-glow);
}

.invite-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- SCROLLING TICKER --- */
.scrolling-ticker {
    background-color: #050811;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.ticker-wrap {
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: inline-block;
    animation: ticker-loop 28s linear infinite;
}

.ticker-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.15);
    margin-right: 80px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
}

/* --- LUXURIOUS ROOMS GRID --- */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow-hover);
}

.room-img-wrapper {
    height: 250px;
    background-color: var(--bg-card);
    overflow: hidden;
}

.room-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.room-card:hover .room-img-wrapper img {
    transform: scale(1.05);
}

.room-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-body h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.room-specs {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    margin-top: auto;
}

.room-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-specs svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
}

/* --- WORLD CLASS ROOM SERVICES --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--border-glow);
    background-color: var(--bg-card);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-gold-light);
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
}

/* --- PARLOR & SPA CENTER Split --- */
.spa-section-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.spa-slides-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.spa-slide-img {
    height: 380px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.spa-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spa-content-panel h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.spa-content-panel p {
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.slide-controls {
    display: flex;
    gap: 12px;
}

.slide-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    background: transparent;
    color: var(--color-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
}

.slide-btn:hover {
    background-color: var(--color-gold);
    color: var(--bg-dark);
}

/* --- LOBBY PARALLAX BANNER --- */
.parallax-banner {
    height: 50vh;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 12, 25, 0.6);
}

.parallax-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

/* --- PROFESSIONAL TEAM MEMBER --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background-color: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: center;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
}

.team-avatar {
    height: 250px;
    background-color: var(--bg-card);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-body {
    padding: 24px;
}

.team-body h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.team-body p {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-gold);
}

/* --- CLIENTS OVERVIEW ABOUT US --- */
.testimonials-section {
    background-color: #050811;
}

.testimonial-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-left-img {
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-right-panel {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gold);
}

.testimonial-right-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 12, 25, 0.85);
    border-radius: var(--radius-md);
    z-index: 1;
}

.testimonial-panel-content {
    position: relative;
    z-index: 5;
}

.testimonial-panel-content h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    color: white;
}

.testimonial-meta {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
}

/* --- UPDATE NEWS AND PORTAL --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
}

.blog-img-wrapper {
    height: 200px;
    background-color: var(--bg-card);
    position: relative;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-body {
    padding: 30px;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.blog-body h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.blog-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- FOOTER MARQUEE BRAND --- */
.footer-brands {
    background-color: #04060b;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brands-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.brand-item {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

/* --- FOOTER --- */
.footer {
    background-color: #030408;
    color: var(--text-secondary);
    padding: 80px 0 40px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-logo {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--color-gold);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-list svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: white;
}

/* --- ANIMATIONS --- */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ticker-loop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --- RESPONSIVE ADAPTATIONS --- */
@media (max-width: 1024px) {
    .hero-overlay-content h1 {
        font-size: 2.8rem;
    }
    .booking-bar-form {
        grid-template-columns: repeat(2, 1fr);
    }
    .invite-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .spa-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        font-size: 1.15rem;
    }
    .booking-bar-form {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-overlay-content h1 {
        font-size: 2.2rem;
    }
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
