/* ==========================================================================
   addsera.com - Premium Single-Page Hotel & Casino Resort Comparison Index
   Aesthetic: Luxury Gala, Black & Gold Editorial
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Color Palette from design JSON */
    --primary-black: #121315;
    --primary-deep-black: #070707;
    --primary-charcoal: #1B1B1D;
    --primary-dark-brown: #29220F;

    --accent-gold: #C89A2B;
    --accent-bright-gold: #E5B94F;
    --accent-muted-gold: #A77A1D;
    --accent-gold-border: #B98A26;

    --bg-cream: #F6F1E7;
    --bg-warm-cream: #EFE7D8;
    --bg-white: #FFFFFF;

    --text-primary-dark: #171717;
    --text-primary-light: #FFFFFF;
    --text-muted-dark: #6D6558;
    --text-muted-light: #B9B9B9;
    --text-gold-text: #D4A83F;

    --status-success: #2E8B57;
    --status-warning: #D9A441;
    --status-error: #B94A48;

    /* Spacing System from design JSON */
    --space-xs: 6px;
    --space-sm: 12px;
    --space-md: 20px;
    --space-lg: 32px;
    --space-xl: 56px;
    --space-xxl: 88px;
    --space-section: 96px;

    /* Typo variables */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', Arial, sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-snappy: all 0.2s ease-in-out;
    --shadow-cream-card: 0 12px 30px rgba(0,0,0,0.06);
    --shadow-dark-card: 0 22px 70px rgba(0, 0, 0, 0.45);
    --shadow-floating: 0 18px 40px rgba(200, 154, 43, 0.12);
}

/* --- Global Reset & Base Styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-cream);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-primary-dark);
    line-height: 1.75;
    font-size: 16px;
    overflow-x: hidden;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: var(--primary-deep-black);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border: 3px solid var(--primary-deep-black);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-bright-gold);
}

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

/* Accessibility Focus Visible */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--accent-bright-gold);
    outline-offset: 3px;
}

/* --- Typography Hierarchy --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--primary-black);
}

h1 {
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 600;
}

h2 {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 500;
}

h3 {
    font-size: 26px;
    line-height: 1.25;
    font-weight: 500;
}

p {
    font-family: var(--font-body);
    font-weight: 400;
    margin-bottom: var(--space-md);
}

.eyebrow {
    font-family: var(--font-body);
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eyebrow::before {
    content: '✦';
    font-size: 11px;
}

/* --- Core Layout Containers --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section-padding {
    padding: var(--space-section) 0;
}

/* --- Responsive Layout Grid Structures --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

/* --- Luxury Buttons (Square Editorial) --- */
.btn-primary {
    height: 46px;
    padding: 14px 28px;
    background: var(--accent-gold);
    color: var(--primary-deep-black);
    border: 1px solid var(--accent-gold);
    border-radius: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(200, 154, 43, 0.15);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: var(--accent-bright-gold);
    border-color: var(--accent-bright-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 154, 43, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    background: var(--accent-muted-gold);
}

.btn-outline {
    height: 46px;
    padding: 13px 26px;
    background: transparent;
    color: var(--text-gold-text);
    border: 1px solid var(--accent-gold);
    border-radius: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-deep-black);
    transform: translateY(-2px);
}

/* --- Responsible Gaming Top Bar --- */
.rg-top-bar {
    background: var(--primary-deep-black);
    color: var(--text-muted-light);
    font-size: 11px;
    padding: 10px 0;
    border-bottom: 2px solid var(--accent-gold);
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 1000;
    position: relative;
}

.rg-top-bar a {
    color: var(--accent-bright-gold);
    text-decoration: underline;
    margin-left: var(--space-xs);
    transition: var(--transition-snappy);
}

.rg-top-bar a:hover {
    color: var(--bg-white);
}

/* --- Premium Navigation Header --- */
header {
    background: var(--primary-deep-black);
    height: 80px;
    border-bottom: 1px solid rgba(200, 154, 43, 0.15);
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    color: var(--text-primary-light);
    font-size: 26px;
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
}

.logo span {
    font-weight: 300;
    color: var(--accent-gold);
}

nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
}

nav a {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
}

nav a:hover, nav a.active {
    color: var(--accent-gold);
}

/* Underline grows from center on hover */
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 100%;
}

.header-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.age-badge {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 4px 10px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.05em;
    border-radius: 0px;
}

.burger-menu-label {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 1002;
}

.burger-menu-label span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-primary-light);
    transition: var(--transition-smooth);
}

/* --- Pure CSS Single Page Hash Router --- */
.page-route {
    display: none;
    animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Default view when no hash active */
#home {
    display: block;
}

/* Target view activation */
.page-route:target {
    display: block !important;
}

/* Hide main landing page using modern body:has() selectors */
body:has(.page-route:not(#home):target) #home {
    display: none;
}

/* Sibling fallbacks for older browser render paths */
#about:target ~ #home,
#disclosure:target ~ #home,
#responsible:target ~ #home,
#cancellation:target ~ #home,
#privacy:target ~ #home,
#terms:target ~ #home,
#contact:target ~ #home {
    display: none;
}

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

/* --- Subpage Layout Templates --- */
.subpage-container {
    max-width: 900px;
    margin: var(--space-xxl) auto;
    background: var(--bg-white);
    padding: var(--space-xxl);
    border-radius: 0px;
    box-shadow: var(--shadow-cream-card);
    border: 1px solid rgba(0,0,0,0.08);
}

.subpage-container h1 {
    font-size: 48px;
    color: var(--primary-deep-black);
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.subpage-container h2 {
    font-size: 34px;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--primary-black);
}

.subpage-container h3 {
    font-size: 24px;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xs);
    color: var(--accent-muted-gold);
}

.subpage-container p {
    font-size: 15px;
    color: var(--text-primary-dark);
    margin-bottom: var(--space-md);
    text-align: justify;
}

.disclosure-alert {
    background: var(--bg-cream);
    border-left: 4px solid var(--accent-gold);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
    color: var(--primary-black);
    font-weight: 500;
}

.disclosure-alert-red {
    background: rgba(185, 74, 72, 0.05);
    border-left-color: var(--status-error);
}

.disclosure-alert-red h3 {
    margin-top: 0;
    color: var(--status-error);
}

.disclosure-alert-red ul {
    margin-left: var(--space-lg);
    margin-top: var(--space-sm);
}

.disclosure-alert-red li {
    margin-bottom: 6px;
    font-size: 14.5px;
}

/* --- Cinematic Hero Section (Dark theme) --- */
.hero-section {
    background: var(--primary-deep-black);
    color: var(--text-primary-light);
    padding: var(--space-section) 0;
    position: relative;
    overflow: hidden;
}

/* Dots overlay mesh */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(200, 154, 43, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.9;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-xxl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    background: rgba(27, 27, 29, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 154, 43, 0.2);
    padding: var(--space-xl);
    border-radius: 0px;
}

.hero-content h1 {
    color: var(--text-primary-light);
    margin-bottom: var(--space-md);
}

.hero-content h1 span {
    color: var(--accent-bright-gold);
    display: block;
    font-style: italic;
    font-family: var(--font-heading);
}

.hero-content p {
    color: var(--text-muted-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    text-align: justify;
}

.hero-ctas {
    display: flex;
    gap: var(--space-sm);
}

/* Hero Visual: Golden Arch & Floating Text Elements */
.hero-visuals {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-gold-arch {
    width: 300px;
    height: 420px;
    background: linear-gradient(135deg, var(--primary-charcoal), var(--primary-dark-brown));
    border: 2px solid var(--accent-gold);
    border-radius: 150px 150px 0 0;
    box-shadow: var(--shadow-dark-card);
    position: relative;
    overflow: hidden;
}

.visual-gold-arch::after {
    content: 'addsera';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 38px;
    color: rgba(200, 154, 43, 0.15);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.floating-visual-card {
    background: rgba(7, 7, 7, 0.9);
    border: 1px solid var(--accent-gold-border);
    padding: var(--space-md);
    border-radius: 0px;
    box-shadow: var(--shadow-floating);
    width: 250px;
    position: absolute;
    transition: var(--transition-smooth);
    z-index: 3;
}

.floating-card-1 {
    left: -30px;
    top: 60px;
    transform: rotate(-5deg);
    border-left: 3px solid var(--accent-gold);
}

.floating-card-2 {
    right: -20px;
    bottom: 60px;
    transform: rotate(3deg);
    border-right: 3px solid var(--accent-gold);
}

.floating-visual-card:hover {
    transform: scale(1.05) rotate(0deg);
    background: var(--primary-charcoal);
    border-color: var(--accent-bright-gold);
    z-index: 5;
}

.floating-card-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary-light);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.floating-card-title span {
    color: var(--accent-bright-gold);
}

.floating-card-desc {
    font-size: 11px;
    color: var(--text-muted-light);
    line-height: 1.5;
}

/* --- Credibility stats strip (Dark background) --- */
.credibility-strip {
    background: var(--primary-black);
    border-top: 1px solid rgba(200, 154, 43, 0.2);
    border-bottom: 2px solid var(--accent-gold);
    padding: 30px 0;
    color: var(--text-primary-light);
}

.credibility-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xxl);
}

.credibility-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.credibility-icon {
    font-size: 24px;
    color: var(--accent-gold);
    background: rgba(200, 154, 43, 0.1);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credibility-text {
    display: flex;
    flex-direction: column;
}

.credibility-val {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary-light);
    font-family: var(--font-body);
}

.credibility-lbl {
    font-size: 11px;
    color: var(--text-muted-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 3px;
    font-weight: 600;
}

/* --- Two-Column Editorial Section (Cream Background) --- */
.editorial-intro-section {
    background: var(--bg-cream);
}

.editorial-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-xxl);
    align-items: center;
}

.editorial-left {
    display: flex;
    flex-direction: column;
}

.editorial-left h2 {
    color: var(--primary-black);
    margin-bottom: var(--space-md);
}

.editorial-left p {
    color: var(--text-primary-dark);
    margin-bottom: var(--space-md);
    text-align: justify;
}

.editorial-right {
    background: var(--bg-white);
    border-left: 3px solid var(--accent-gold);
    padding: var(--space-xl);
    box-shadow: var(--shadow-cream-card);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-right: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.editorial-right h3 {
    font-size: 24px;
    margin-bottom: var(--space-sm);
    color: var(--primary-deep-black);
}

.editorial-right p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted-dark);
    margin-bottom: var(--space-md);
}

.gold-checklist {
    list-style: none;
    margin-top: var(--space-md);
}

.gold-checklist li {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.gold-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 900;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto var(--space-xl) auto;
}

.section-header h2 {
    margin-bottom: var(--space-sm);
    color: var(--primary-black);
}

.section-header p {
    color: var(--text-muted-dark);
    font-size: 16px;
}

/* --- Services / Metrics Strip (White Background) --- */
.metrics-section {
    background: var(--bg-white);
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.metric-card {
    background: var(--primary-charcoal);
    border: 1px solid rgba(200, 154, 43, 0.2);
    padding: var(--space-lg);
    color: var(--text-primary-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.metric-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(200, 154, 43, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.metric-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.metric-icon {
    font-size: 28px;
    line-height: 1;
}

.metric-number {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold-border);
    padding: 2px 8px;
    letter-spacing: 0.1em;
}

.metric-card h3 {
    color: var(--text-primary-light);
    font-size: 20px;
    margin-bottom: var(--space-xs);
    margin-top: var(--space-md);
}

.metric-card p {
    font-size: 13px;
    color: var(--text-muted-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.metric-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-bright-gold);
    box-shadow: var(--shadow-floating);
}

/* --- Comparison Matrix Table --- */
.matrix-section {
    background: var(--bg-cream);
}

.matrix-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow-cream-card);
    background: var(--bg-white);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

th, td {
    padding: var(--space-md);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

th {
    background: var(--primary-deep-black);
    color: var(--text-primary-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.08em;
    font-family: var(--font-body);
    border-bottom: 2px solid var(--accent-gold);
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) {
    background: var(--bg-cream);
}

td strong {
    color: var(--primary-black);
}

.score-badge-table {
    font-weight: 700;
    color: var(--accent-gold);
    background: var(--primary-deep-black);
    padding: 3px 8px;
    font-size: 13px;
    border-left: 2px solid var(--accent-gold);
}

/* --- Main Layout Grid (Destinations List + Sidebar) --- */
.main-layout-grid {
    display: grid;
    grid-template-columns: 2.05fr 0.95fr;
    gap: var(--space-xl);
}

.destinations-header {
    margin-bottom: var(--space-xl);
}

/* --- Featured Resort Cards (No Images, CSS Gradients) --- */
.resort-card {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow-cream-card);
    margin-bottom: var(--space-xxl);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.resort-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-floating);
    border-color: var(--accent-gold);
}

.resort-card-header {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-deep-black);
    color: var(--text-primary-light);
}

.resort-meta h3 {
    font-size: 26px;
    color: var(--text-primary-light);
    margin-bottom: 2px;
}

.resort-loc {
    color: var(--accent-gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.resort-score-box {
    background: linear-gradient(135deg, var(--primary-charcoal), var(--primary-deep-black));
    border: 1px solid var(--accent-gold-border);
    padding: 6px 12px;
    text-align: center;
    color: var(--text-primary-light);
    min-width: 70px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--accent-gold);
}

.resort-score-value {
    display: block;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-bright-gold);
}

.resort-score-label {
    display: block;
    font-size: 8px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 3px;
    letter-spacing: 0.05em;
    color: var(--text-muted-light);
}

/* Premium gradient placeholders instead of image tags */
.resort-visual-banner {
    height: 240px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.resort-visual-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

.resort-visual-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(to top, rgba(7, 7, 7, 0.6), transparent);
    z-index: 1;
}

.visual-banner-badge {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(8px);
    color: var(--text-primary-light);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 18px;
    box-shadow: var(--shadow-dark-card);
}

/* Card Graduate Themes */
.banner-wynn-palace {
    background: linear-gradient(135deg, #1C0505 0%, #B68A28 60%, #050000 100%);
}
.banner-bellagio-vegas {
    background: linear-gradient(135deg, #051429 0%, #295782 60%, #020610 100%);
}
.banner-sands-singapore {
    background: linear-gradient(135deg, #01241E 0%, #0D6859 60%, #000B09 100%);
}
.banner-paris-monaco {
    background: linear-gradient(135deg, #12151B 0%, #896F43 60%, #06080D 100%);
}
.banner-atlantis-bahamas {
    background: linear-gradient(135deg, #4A1A02 0%, #C08D0A 60%, #210901 100%);
}

.resort-body {
    padding: var(--space-lg);
}

.resort-desc {
    font-size: 14.5px;
    color: var(--text-primary-dark);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    text-align: justify;
}

/* Specs subgrid in resort card */
.resort-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.resort-spec-item {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.spec-icon {
    font-size: 20px;
    line-height: 1;
    background: var(--bg-cream);
    padding: 6px;
    color: var(--accent-gold);
    border-left: 2px solid var(--accent-gold);
}

.spec-text {
    display: flex;
    flex-direction: column;
}

.spec-title {
    font-weight: 700;
    color: var(--primary-deep-black);
    font-size: 13px;
    margin-bottom: 2px;
}

.spec-val {
    color: var(--text-muted-dark);
    font-size: 12.5px;
    line-height: 1.4;
}

.resort-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--space-sm);
}

.resort-tag {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--text-muted-dark);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
}

.resort-tag.highlighted {
    border-color: var(--accent-gold-border);
    color: var(--accent-gold);
    background: rgba(200, 154, 43, 0.05);
}

.resort-card-footer {
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-cream);
    border-top: 1px solid rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rates-info {
    display: flex;
    flex-direction: column;
}

.rates-lbl {
    font-size: 11px;
    color: var(--text-muted-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.rates-val {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-black);
    font-family: var(--font-heading);
}

/* --- Sidebar (Sticky) --- */
.sticky-sidebar {
    position: sticky;
    top: 104px;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.sidebar-card {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.08);
    padding: var(--space-lg);
    box-shadow: var(--shadow-cream-card);
}

.sidebar-card h3 {
    font-size: 22px;
    color: var(--primary-black);
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: var(--space-xs);
    margin-bottom: var(--space-md);
}

.sidebar-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-primary-dark);
    margin-bottom: var(--space-md);
}

.disclosure-card-box {
    background: var(--bg-cream);
    border-left: 3px solid var(--accent-gold);
    padding: var(--space-md);
    font-size: 12px;
    color: var(--text-muted-dark);
    line-height: 1.6;
}

/* --- Longform Informative Content Block --- */
.longform-block {
    background: var(--bg-white);
    padding: var(--space-xl);
    border: 1px solid rgba(0,0,0,0.08);
    margin-top: var(--space-xxl);
    box-shadow: var(--shadow-cream-card);
}

.longform-block h2 {
    font-size: 38px;
    margin-bottom: var(--space-md);
    color: var(--primary-deep-black);
}

.longform-block h3 {
    font-size: 26px;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xs);
    color: var(--accent-muted-gold);
}

.longform-block p {
    margin-bottom: var(--space-md);
    color: var(--text-primary-dark);
    text-align: justify;
    font-size: 15.5px;
}

/* --- Testimonials Section (Cream Background) --- */
.testimonials-section {
    background: var(--bg-cream);
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-left: 3px solid var(--accent-gold);
    padding: var(--space-lg);
    box-shadow: var(--shadow-cream-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.testimonial-quote-icon {
    font-family: var(--font-heading);
    font-size: 80px;
    color: rgba(200, 154, 43, 0.06);
    position: absolute;
    top: -10px;
    right: var(--space-lg);
    line-height: 1;
}

.testimonial-rating {
    color: var(--accent-gold);
    font-size: 16px;
    margin-bottom: var(--space-sm);
}

.testimonial-text {
    font-style: italic;
    font-size: 14.5px;
    color: var(--text-primary-dark);
    margin-bottom: var(--space-md);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary-deep-black);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.author-meta {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--primary-black);
    font-size: 14px;
}

.author-role {
    font-size: 11px;
    color: var(--text-muted-dark);
}

/* --- Benefits Section (What's Included) --- */
.benefits-section {
    background: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.benefit-card {
    background: var(--bg-cream);
    border: 1px solid rgba(0,0,0,0.08);
    padding: var(--space-lg);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.benefit-card.featured {
    background: var(--primary-charcoal);
    color: var(--text-primary-light);
    border: 1px solid var(--accent-gold-border);
    transform: translateY(-8px);
    box-shadow: var(--shadow-dark-card);
}

.benefit-card.featured h3 {
    color: var(--text-primary-light);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: var(--space-sm);
    color: var(--primary-deep-black);
    border-bottom: 1.5px solid var(--accent-gold);
    padding-bottom: var(--space-xs);
}

.benefit-card.featured h3 {
    border-bottom-color: var(--accent-gold-border);
}

.benefit-card p {
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 0;
}

.benefit-card.featured p {
    color: var(--text-muted-light);
}

.benefit-card:hover {
    box-shadow: var(--shadow-floating);
}

.benefit-card:not(.featured):hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
}

/* --- Final CTA Section (Dark theme) --- */
.final-cta-section {
    background: var(--primary-black);
    border-top: 2px solid var(--accent-gold);
    border-bottom: 1px solid rgba(200, 154, 43, 0.2);
    text-align: center;
    padding: var(--space-xxl) 0;
    color: var(--text-primary-light);
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-section h2 {
    color: var(--text-primary-light);
    margin-bottom: var(--space-md);
    font-size: 44px;
}

.final-cta-section p {
    color: var(--text-muted-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

/* --- Contact Form Styles --- */
.contact-form-wrapper {
    background: var(--bg-cream);
    border: 1px solid rgba(0,0,0,0.08);
    padding: var(--space-xl);
    margin-top: var(--space-lg);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-deep-black);
}

.form-group input, .form-group textarea {
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: var(--bg-white);
    font-family: var(--font-body);
    font-size: 14px;
    border-radius: 0px;
    transition: var(--transition-snappy);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(200, 154, 43, 0.18);
    outline: none;
}

.submit-btn-container {
    grid-column: span 2;
    margin-top: var(--space-sm);
}

.submit-btn-container .btn-primary {
    width: 100%;
}

/* --- Accordion Details/Summary FAQ --- */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

details {
    background: var(--primary-charcoal);
    border: 1px solid rgba(200, 154, 43, 0.2);
    overflow: hidden;
    transition: var(--transition-snappy);
}

summary {
    padding: var(--space-md) var(--space-lg);
    color: var(--text-primary-light);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: var(--transition-snappy);
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

details[open] summary::after {
    transform: rotate(45deg);
}

details[open] {
    border-color: var(--accent-gold);
}

.faq-content {
    padding: 0 var(--space-lg) var(--space-md) var(--space-lg);
    color: var(--text-muted-light);
    font-size: 14px;
    line-height: 1.6;
}

/* --- Structured Footer --- */
footer {
    background: var(--primary-deep-black);
    color: var(--text-muted-light);
    padding: 80px 0 40px 0;
    font-size: 14px;
    border-top: 4px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.1fr 1.1fr;
    gap: var(--space-xxl);
    margin-bottom: var(--space-xl);
}

.footer-heading {
    color: var(--text-primary-light);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1.5px solid var(--accent-gold);
    padding-bottom: 6px;
    display: inline-block;
}

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

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

.footer-links a {
    transition: var(--transition-snappy);
}

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

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

.footer-bottom p {
    margin-bottom: 0;
    font-size: 12px;
    color: var(--text-muted-light);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-md);
}

.footer-bottom-links a {
    font-size: 12px;
    color: var(--text-muted-light);
}

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

/* --- Mobile Menu Drawer Hacks (Overlay) --- */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 7, 7, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Desktop Large Screen constraints */
@media (min-width: 1024px) {
    .menu-toggle-checkbox {
        display: none;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    h1 { font-size: 44px; }
    h2 { font-size: 32px; }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .benefit-card.featured {
        transform: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

/* Mobile (0 - 767px) */
@media (max-width: 767px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    
    .section-padding {
        padding: var(--space-xl) 0;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .hero-content {
        padding: var(--space-lg);
    }
    
    .hero-visuals {
        height: 380px;
    }
    
    .visual-gold-arch {
        width: 220px;
        height: 300px;
    }
    
    .floating-visual-card {
        width: 200px;
    }
    .floating-card-1 {
        left: -10px;
    }
    .floating-card-2 {
        right: -10px;
    }
    
    .main-layout-grid {
        grid-template-columns: 1fr;
    }
    
    .resort-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .resort-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .resort-card-footer .btn-primary {
        width: 100%;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width, .submit-btn-container {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Responsive Hamburger Burger Navigation Toggle */
    .burger-menu-label {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--primary-deep-black);
        box-shadow: -10px 0 30px rgba(0,0,0,0.4);
        z-index: 1001;
        padding: var(--space-xxl) var(--space-lg) var(--space-lg) var(--space-lg);
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: var(--space-md);
    }
    
    nav a {
        font-size: 15px;
        width: 100%;
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(200, 154, 43, 0.1);
    }
    
    /* Show Menu toggle drawer status */
    .menu-toggle-checkbox:checked ~ nav {
        right: 0;
    }
    
    .menu-toggle-checkbox:checked ~ .drawer-overlay {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }
    
    .menu-toggle-checkbox:checked ~ .burger-menu-label span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle-checkbox:checked ~ .burger-menu-label span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle-checkbox:checked ~ .burger-menu-label span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
