/* =========================================
   Variables & Reset (Aman Aesthetic)
========================================= */
:root {
    /* Aman-inspired serene, earthy palette */
    --clr-bg: #efebe7; /* Very soft beige/grey */
    --clr-text-main: #313131; /* Soft charcoal */
    --clr-button-bg: #2d2d2d; 
    --clr-button-text: #efebe7;
    --clr-white: #ffffff;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif; /* Represents Lyon Display */
    --font-sans: 'Inter', sans-serif; /* Represents clean small UI fonts */
    
    --container-width: 1600px;
    --transition: all 0.4s ease;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* =========================================
   Helpers
========================================= */
.section-padding {
    padding: 120px 0;
}

.no-top-pad {
    padding-top: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

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

.text-narrow {
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================
   Typography
========================================= */
.elegant-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.elegant-text {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(49, 49, 49, 0.8);
    margin-bottom: 40px;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em; /* Very wide spacing */
    color: var(--clr-text-main);
    margin-bottom: 30px;
}

/* =========================================
   Header (Aman Sticky Minimal Navbar)
========================================= */
.header {
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: transparent; /* Aman has no bg until scroll sometimes, but solid is fine too */
    color: var(--clr-text-main);
    z-index: 10;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1; /* Pushes center to exactly middle */
}

.header-right {
    justify-content: flex-end;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Menu Button */
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 12px;
    width: 24px;
}

.hamburger-line {
    display: block;
    height: 1px;
    width: 100%;
    background-color: var(--clr-text-main);
}

.menu-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: capitalize;
}

/* Logo */
.logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400; /* Thin, elegant */
    letter-spacing: 0.25em; /* Extremely wide tracking */
    color: var(--clr-text-main);
    white-space: nowrap;
}

/* Right Controls */
.lang-selector {
    display: flex;
    flex-direction: column;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    cursor: pointer;
    position: relative;
    padding-bottom: 4px;
    margin-right: 20px;
}

.lang-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--clr-text-main);
}

.search-btn {
    background: none;
    border: none;
    color: var(--clr-text-main);
    font-size: 1.1rem;
    cursor: pointer;
}

/* =========================================
   Hero Section
========================================= */
.hero-section {
    position: relative;
    width: 100%;
    padding-top: 20px;
}

/* Massive immersive image */
.hero-media {
    width: calc(100% - 80px); /* Small margin on sides like Aman */
    margin: 0 auto;
    height: 80vh; /* Very tall */
    position: relative;
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Centered Hero Text & Button */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3); /* Subtle dark overlay for text readability */
    color: var(--clr-white);
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.btn-elegant-outline {
    display: inline-block;
    border: 1px solid var(--clr-white);
    color: var(--clr-white);
    padding: 16px 40px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.btn-elegant-outline:hover {
    background-color: var(--clr-white);
    color: var(--clr-button-bg);
}

/* =========================================
   Intro / Buttons
========================================= */
.btn-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-text-main);
    border-bottom: 1px solid var(--clr-text-main);
    padding-bottom: 4px;
    display: inline-block;
}

.btn-text:hover {
    color: #666;
    border-color: #666;
}

/* =========================================
   Destinations / Ecosystem Grid
========================================= */
.destinations-section {
    background: var(--clr-bg);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.destination-grid.single-column {
    grid-template-columns: 1fr;
}

.dest-card {
    display: flex;
    flex-direction: column;
}

.dest-img {
    width: 100%;
    height: 60vh; /* Tall elegant cards */
    overflow: hidden;
    margin-bottom: 24px;
}

.large-card .dest-img {
    height: 80vh; /* Even taller for featured blocks */
}

.dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease; /* Very slow, premium hover zoom */
}

.dest-card:hover .dest-img img {
    transform: scale(1.03); /* Subtle zoom */
}

.dest-info h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--clr-text-main);
}

.dest-info p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(49, 49, 49, 0.7);
    letter-spacing: 0.05em;
}

/* =========================================
   Numbers / Trust Section
========================================= */
.numbers-grid-elegant {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(49, 49, 49, 0.1);
    padding-top: 60px;
}

.elegant-number-box {
    text-align: center;
}

.elegant-num {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--clr-text-main);
    line-height: 1;
    margin-bottom: 15px;
}

.elegant-num-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(49, 49, 49, 0.6);
}

/* =========================================
   Footer (Minimalist)
========================================= */
.footer {
    border-top: 1px solid rgba(49, 49, 49, 0.1);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
    color: rgba(49, 49, 49, 0.5);
}

.footer-col a {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--clr-text-main);
}

.footer-col a:hover {
    color: rgba(49, 49, 49, 0.6);
}

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

.logo-footer {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: var(--clr-text-main);
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(49, 49, 49, 0.6);
}

/* =========================================
   Responsive
========================================= */
@media (max-width: 900px) {
    .destination-grid, .numbers-grid-elegant {
        grid-template-columns: 1fr;
    }
    
    .elegant-num {
        font-size: 3.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    
    .elegant-title {
        font-size: 2.5rem;
    }
    
    .hero-media {
        width: 100%;
        height: 60vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    .header {
        padding: 0 20px;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 0.16em;
    }

}
