/* ============================================
   Mohamed Fala - Personal Website
   Color Palette: "Opulent Burgundy"
   ============================================ */

:root {
    /* Core */
    --bg: #100810;
    --surface: #1E1018;
    --surface-2: #2C1822;
    --text: #F5EDE3;
    --text-muted: #C0A6AB;
    --border: rgba(245, 237, 227, 0.10);

    /* Brand accents */
    --gold: #C9A84C;
    --rose: #A8636E;
    --ivory: #DEC8A0;
    --copper: #8F4A2D;
}

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

body {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* ============================================
   Container Structure
   ============================================ */
.containerWrapper {
    width: 100%;
    min-height: 100vh;
}

#appRow {
    display: flex;
    position: relative;
    min-height: 100vh;
}

/* ============================================
   Sidebar
   ============================================ */
#stickyColumnWrap {
    width: 325px;
    position: relative;
    z-index: 10;
    transition: 0.25s;
    flex: 0 0 325px;
}

#stickyColumn {
    position: fixed;
    top: 0;
    width: 325px;
    height: 100vh;
    background: var(--bg);
    border-right: 1px solid var(--border);
    overflow-y: auto;
    overflow-x: hidden;
    transform: translate3d(0%, 0, 0);
    transition: 0.25s;
    padding: 25px 35px 50px;
}

/* Custom Scrollbar */
#stickyColumn::-webkit-scrollbar {
    width: 6px;
}

#stickyColumn::-webkit-scrollbar-track {
    background: rgba(245, 237, 227, 0.05);
}

#stickyColumn::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.3);
    border-radius: 3px;
}

#stickyColumn::-webkit-scrollbar-thumb:hover {
    background: rgba(201, 168, 76, 0.5);
}

/* Navigation Close Button */
#side-nav-close {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 17px;
    right: 10px;
    background: var(--gold);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: 0.25s;
}

#side-nav-close:hover {
    background: var(--rose);
    transform: scale(1.05);
}

#side-nav-close svg {
    width: 23px;
    transition: 0.25s;
}

#side-nav-close:hover svg {
    transform: rotate(45deg);
}

.nav-closed #side-nav-close svg {
    transform: rotate(45deg);
}

.nav-closed #side-nav-close:hover svg {
    transform: rotate(0deg);
}

.nav-closed #stickyColumn {
    transform: translate3d(-100%, 0, 0);
}

.nav-closed #side-nav-close {
    right: -45px;
}

.nav-closed #stickyColumnWrap {
    width: 0;
    flex: 0 0 0;
}

/* Logo / Profile Circle */
.logo-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
    margin: 0 auto;
    overflow: hidden;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.5);
}

.logo-wrapper img.logo {
    width: 180px;
    height: 180px;
    object-fit: cover;
}

/* Sidebar Name & Tagline */
.sidebar-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 6px;
    text-transform: none;
    letter-spacing: 0;
}

.sidebar-tagline {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Section Headers */
.section-header {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-top: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 15px;
}

/* Navigation Links */
.nav-link {
    display: block;
    padding: 12px 0;
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    white-space: normal;
    line-height: 1.4;
}

.nav-link i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--ivory);
    transform: translateX(5px);
}

.blog-entry {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 13px;
}

.blog-entry:hover {
    transform: none;
}

.nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 7px;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bg);
    background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
    border-radius: 999px;
    flex-shrink: 0;
}

.blog-entry:hover .nav-badge {
    color: var(--bg);
}

.nav-blog-title {
    white-space: normal;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

/* Sidebar Footer */
.sidebar-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: rgba(245, 237, 227, 0.4);
    line-height: 1.6;
    text-align: center;
}

/* ============================================
   Main Content
   ============================================ */
#mainContent {
    flex: 1;
    margin-left: 0;
    padding: 60px 40px;
    transition: 0.25s;
    min-height: 100vh;
    background:
        radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(168, 99, 110, 0.04) 0%, transparent 50%),
        var(--bg);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.nav-closed #mainContent {
    margin-left: 0;
    padding: 60px 40px;
}

/* Hero Section */
.hero-section {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* Content Toggle */
.content-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(245, 237, 227, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    margin-bottom: 50px;
}

.toggle-btn {
    appearance: none;
    border: none;
    padding: 14px 28px;
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover,
.toggle-btn:focus-visible {
    color: var(--gold);
    outline: none;
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
    color: var(--bg);
    box-shadow: 0 18px 35px rgba(201, 168, 76, 0.3);
}

/* Content Views */
.content-view {
    display: block;
    animation: fadeIn 0.4s ease;
}

.js-enabled .content-view:not(.active) {
    display: none;
}

.content-view.active {
    display: block;
}

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

/* ============================================
   Typography
   ============================================ */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

h1 u {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: var(--ivory);
    text-decoration-thickness: 3px;
    text-underline-offset: 0.18em;
    text-decoration-skip-ink: none;
}

h1 u::after {
    content: none;
}

.hero-section h1 {
    text-align: center;
    margin-bottom: 30px;
}

.profile-portrait {
    max-width: 500px;
    margin: 0 auto 40px;
}

.profile-portrait img {
    width: 100%;
    border-radius: 14px;
    border: 2px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 30px;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Divider */
.content-divider {
    border: none;
    border-top: 3px solid var(--border);
    margin: 60px auto;
    max-width: 1200px;
}

/* ============================================
   CTA Button
   ============================================ */
.cta-button {
    display: inline-block;
    padding: 20px 40px;
    background: var(--copper);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    border: none;
    border-bottom: 6px solid #6D3820;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: var(--ivory);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(143, 74, 45, 0.3);
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* ============================================
   Leadership Themes Section
   ============================================ */
.themes-section {
    margin-top: 60px;
    padding: 40px 0;
}

.themes-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    text-align: center;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.theme-card {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(44, 24, 34, 0.6) 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 35px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.theme-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.theme-card:hover::after {
    opacity: 1;
}

.theme-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.theme-icon i {
    font-size: 22px;
    color: var(--gold);
}

.theme-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.3;
}

.theme-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* ============================================
   Resort Showcase Section
   ============================================ */
.resort-showcase {
    margin-top: 60px;
    padding: 40px 0;
    width: 100%;
}

.resort-showcase-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.resort-visual {
    position: relative;
}

.resort-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    border: 2px solid rgba(201, 168, 76, 0.2);
    object-fit: cover;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(201, 168, 76, 0.15);
    transition: all 0.3s ease;
}

.resort-visual:hover .resort-img {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(201, 168, 76, 0.35),
        0 0 40px rgba(201, 168, 76, 0.15);
}

.resort-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--gold);
    color: var(--bg);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 20px rgba(201, 168, 76, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(201, 168, 76, 0.6);
    }
    100% {
        box-shadow: 0 8px 20px rgba(201, 168, 76, 0.4);
    }
}

.resort-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--ivory);
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-align: left;
}

.resort-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 400;
    text-align: left;
}

.resort-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 30px;
    text-align: left;
}

.resort-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resort-cta {
    background: var(--gold);
    color: var(--bg);
    font-weight: 600;
    border-bottom-color: #A08A3E;
}

.resort-cta:hover {
    background: var(--ivory);
    color: var(--bg);
    border-bottom-color: #B8A06A;
}

/* ============================================
   Quotes Section
   ============================================ */
.quotes-section {
    margin-top: 60px;
    padding: 40px 0;
}

.quotes-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    text-align: center;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-card {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(44, 24, 34, 0.5) 100%);
    border: 1px solid var(--border);
    border-left: 4px solid var(--ivory);
    border-radius: 0 14px 14px 0;
    padding: 35px;
    text-align: left;
    transition: all 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-5px);
    border-left-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.quote-card p {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 18px;
}

.quote-card cite {
    font-style: normal;
    font-size: 14px;
    color: var(--text-muted);
    display: block;
}

/* ============================================
   Insights / Press Section
   ============================================ */
.insights-section {
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.insights-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.insights-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 50px;
}

/* Featured Article */
.featured-article {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(30, 16, 24, 0.95) 70%);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 18px;
    padding: 45px;
    margin-bottom: 50px;
    text-align: left;
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.featured-article::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.2), transparent 60%);
    pointer-events: none;
}

.featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.featured-label {
    background: var(--gold);
    color: var(--bg);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 700;
}

.featured-category {
    color: var(--text);
    opacity: 0.85;
}

.featured-date {
    color: rgba(245, 237, 227, 0.6);
}

.featured-article h3 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.featured-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(245, 237, 227, 0.85);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.featured-body {
    display: grid;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.featured-body p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(245, 237, 227, 0.85);
}

.featured-readmore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    margin-top: 28px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.featured-readmore i {
    transition: transform 0.3s ease;
}

.featured-readmore:hover {
    color: var(--ivory);
}

.featured-readmore:hover i {
    transform: translateX(6px);
}

/* Press Grid */
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
}

.press-card {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(44, 24, 34, 0.8) 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.press-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.press-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.press-card:hover::after {
    opacity: 1;
}

.press-card-link {
    background: transparent;
    border: none;
    color: inherit;
    font: inherit;
    text-align: left;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    cursor: pointer;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.press-card-link:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -8px;
}

.press-outlet {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ivory);
    opacity: 0.85;
}

.press-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.press-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    flex: 1;
}

.press-link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    gap: 10px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.press-link i {
    transition: transform 0.3s ease;
}

.press-card:hover .press-link {
    color: var(--ivory);
}

.press-card:hover .press-link i {
    transform: translateX(5px);
}

/* ============================================
   Mobile Menu Button
   ============================================ */
#mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

#mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 5px;
    transition: 0.3s;
}

/* Prevent body scroll and hide hamburger when menu is open */
body.menu-open {
    overflow: hidden;
}

#stickyColumnWrap.open ~ #mobile-menu-btn {
    opacity: 0;
    pointer-events: none;
}

/* Desktop Sidebar Open Button */
#side-nav-open {
    position: fixed;
    left: 18px;
    top: 18px;
    width: 45px;
    height: 45px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    background: var(--gold);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: 0.25s;
}

#side-nav-open:hover {
    transform: scale(1.05);
    background: var(--rose);
}

body.nav-closed #side-nav-open {
    display: flex;
}

/* ============================================
   Responsive: Tablet and below (<=1024px)
   ============================================ */
@media (max-width: 1024px) {
    #side-nav-open {
        display: none !important;
    }

    #stickyColumnWrap {
        position: fixed;
        width: 100vw;
        max-width: 100vw;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    #stickyColumn {
        width: 100%;
        max-width: 100%;
        border-right: none;
    }

    #stickyColumnWrap.open {
        transform: translateX(0);
    }

    #side-nav-close {
        right: 40px;
        top: 40px;
    }

    #mainContent {
        margin-left: 0;
        padding: 80px 20px 40px;
        align-items: flex-start;
    }

    #mobile-menu-btn {
        display: block;
    }

    h1 {
        font-size: 32px;
    }

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

    .description {
        text-align: left;
        padding: 0 10px;
    }

    .themes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .quotes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .resort-showcase-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .resort-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .resort-content h3 {
        font-size: 36px;
        text-align: center;
    }

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

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

    .resort-stats {
        justify-content: center;
    }

    .content-toggle {
        margin-bottom: 40px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .toggle-btn {
        flex: 1 1 auto;
        min-width: 140px;
        padding: 12px 22px;
        font-size: 13px;
    }

    .insights-section {
        margin-top: 60px;
        padding: 0 10px;
    }

    .press-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }

    .featured-article {
        padding: 35px;
    }

    .featured-article h3 {
        font-size: 34px;
    }

    .press-card-link {
        padding: 28px;
    }
}

/* ============================================
   Responsive: Mobile (<=640px)
   ============================================ */
@media (max-width: 640px) {
    .description {
        font-size: 16px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }

    .themes-heading,
    .quotes-heading {
        font-size: 32px;
    }

    .resort-content h3 {
        font-size: 28px;
    }

    .resort-subtitle {
        font-size: 16px;
    }

    .resort-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .resort-badge {
        font-size: 12px;
        padding: 8px 16px;
        top: -10px;
        right: -10px;
    }

    .quote-card p {
        font-size: 18px;
    }

    .content-toggle {
        display: flex;
        width: 100%;
        margin-bottom: 30px;
        padding: 8px;
    }

    .toggle-btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 12px 18px;
        font-size: 12px;
    }

    .insights-section {
        margin-top: 40px;
    }

    .insights-section h2 {
        font-size: 32px;
    }

    .insights-intro {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .press-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-article {
        padding: 24px;
    }

    .featured-article h3 {
        font-size: 30px;
    }

    .featured-subtitle {
        font-size: 16px;
    }

    .featured-body p {
        font-size: 15px;
    }

    .press-card-link {
        padding: 24px;
    }

    .press-card h3 {
        font-size: 20px;
    }

    .featured-readmore {
        font-size: 16px;
    }
}

/* ============================================
   Responsive: Desktop (>=1025px)
   ============================================ */
@media (min-width: 1025px) {
    #mainContent {
        justify-content: center;
        align-items: flex-start;
        padding: 80px 60px;
    }

    .hero-section {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        text-align: center;
    }
}

/* ============================================
   Responsive: HD+ screens (>=1920px)
   ============================================ */
@media (min-width: 1920px) {
    #stickyColumnWrap {
        width: 380px;
        flex: 0 0 380px;
    }

    #stickyColumn {
        width: 380px;
        padding: 30px 40px 50px;
    }

    .nav-closed #stickyColumnWrap {
        width: 0;
        flex: 0 0 0;
    }

    #side-nav-close {
        right: -25px;
    }

    .nav-closed #side-nav-close {
        right: -50px;
    }

    #mainContent {
        padding: 100px 100px;
    }

    .nav-closed #mainContent {
        padding: 100px 100px;
    }

    .hero-section {
        max-width: 1400px;
    }

    h1 {
        font-size: 60px;
    }

    .description {
        font-size: 19px;
        max-width: 1100px;
    }

    .resort-showcase-inner {
        max-width: 1300px;
        gap: 80px;
    }

    .resort-content h3 {
        font-size: 48px;
    }

    .resort-subtitle {
        font-size: 20px;
    }

    .resort-description {
        font-size: 17px;
        line-height: 1.9;
    }

    .cta-button {
        padding: 22px 45px;
        font-size: 19px;
    }

    .logo-wrapper {
        margin-bottom: 35px;
    }

    .logo {
        width: 200px;
        height: 200px;
        font-size: 80px;
    }

    .logo-wrapper img.logo {
        width: 200px;
        height: 200px;
    }

    .nav-link {
        font-size: 16px;
        padding: 14px 0;
    }

    .section-header {
        font-size: 19px;
        margin-top: 35px;
    }

    .content-divider {
        margin: 80px auto;
        max-width: 1000px;
    }

    .resort-showcase {
        margin-top: 80px;
        padding: 60px 0;
    }

    .themes-section,
    .quotes-section {
        margin-top: 80px;
        padding: 60px 0;
    }
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
