/* ============================================
   IMAGINEXR.LIVE - GLOBAL STYLES
   ============================================ */

/* CSS Variables - Color Palette */
:root {
    --primary-dark: #0A2947;
    --warm-cream: #F3E4C9;
    --soft-neutral: #D3D4C0;
    --luxury-brown: #8B5E3C;
    --text-color: #1F1F1F;
    --light-bg: #FFFFFF;
    --border-color: #E5E5E5;
    --button-color: #8B5E3C;
    --button-hover: #0A2947;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    max-width: 800px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn {
    font-family: 'Inter', sans-serif;
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--button-color);
    color: var(--warm-cream);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 2px;
}


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


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-header p {
    margin: 0 auto;
    color: var(--text-color);
    opacity: 0.8;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    padding: 1.5rem 0;
}

.header.scrolled {
    background-color: var(--light-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 600;
    letter-spacing: 1px;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 500;
}


.header .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--warm-cream);
    padding-top: 80px;
}

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

.hero-text h1 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration svg {
    max-width: 100%;
    height: auto;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

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

.content-section-alt {
    background-color: var(--warm-cream);
}

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

.content-text h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.content-text p {
    color: var(--text-color);
    opacity: 0.9;
}

.content-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-illustration svg {
    max-width: 100%;
    height: auto;
}

/* ============================================
   CARD GRIDS
   ============================================ */

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

.card-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 4px;
}


.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.85;
}

/* ============================================
   SUITE CARDS
   ============================================ */

.suite-card {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 4px;
}


.suite-illustration {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--warm-cream);
    border-radius: 4px;
}

.suite-illustration svg {
    max-width: 80%;
    height: auto;
}

.suite-card h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.suite-card .suite-details {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.suite-card .suite-details span {
    display: block;
    margin-bottom: 0.5rem;
}

.suite-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.suite-card .btn {
    width: 100%;
    text-align: center;
}

/* ============================================
   PRACTICAL PLANNING
   ============================================ */

.planning-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.planning-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.planning-list li:last-child {
    border-bottom: none;
}

.planning-list li::before {
    content: "•";
    color: var(--luxury-brown);
    font-size: 1.5rem;
    line-height: 1;
}

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
    padding: 8rem 0 4rem;
    background-color: var(--warm-cream);
    text-align: center;
}

.page-hero h1 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.page-hero p {
    margin: 0 auto;
    color: var(--text-color);
    opacity: 0.9;
}

/* ============================================
   ABOUT SECTIONS
   ============================================ */

.about-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.about-section:last-child {
    border-bottom: none;
}

.about-section h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.about-section p {
    color: var(--text-color);
    opacity: 0.9;
}

/* ============================================
   RESPONSIBLE GAMING
   ============================================ */

.age-notice {
    background-color: var(--primary-dark);
    color: var(--warm-cream);
    padding: 1rem 2rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 2rem;
}

.responsible-section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.responsible-section:last-child {
    border-bottom: none;
}

.responsible-section h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.responsible-section p {
    color: var(--text-color);
    opacity: 0.9;
}

/* ============================================
   TERMS & PRIVACY
   ============================================ */

.legal-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.legal-section p {
    color: var(--text-color);
    opacity: 0.9;
}

.legal-section ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    opacity: 0.9;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-hero {
    padding: 6rem 0 4rem;
    background-color: var(--warm-cream);
    text-align: center;
}

.contact-form-container {
    max-width: 600px;
    margin: 4rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}


.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-notice {
    text-align: center;
    padding: 2rem;
    background-color: var(--warm-cream);
    margin-top: 2rem;
    border-radius: 4px;
}

.contact-notice p {
    margin: 0;
    color: var(--primary-dark);
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: #8B5E3C;
    color: var(--warm-cream);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--warm-cream);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--warm-cream);
    opacity: 0.8;
    font-size: 0.9rem;
}


.footer-bottom {
    border-top: 1px solid rgba(243, 228, 201, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--warm-cream);
    opacity: 0.7;
    margin: 0;
}

.footer-bottom a {
    color: var(--warm-cream);
    opacity: 0.7;
    font-size: 0.85rem;
}


/* ============================================
   COOKIE CONSENT
   ============================================ */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    color: var(--warm-cream);
    padding: 1.5rem 2rem;
    z-index: 1001;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--warm-cream);
}

.cookie-consent-text p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-consent .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.cookie-consent .btn-outline {
    border-color: var(--warm-cream);
    color: var(--warm-cream);
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-illustration {
        order: -1;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-illustration {
        order: -1;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .nav-links {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .card-grid,
    .card-grid-3,
    .card-grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
