/* DeLand Dome — Stylesheet */
/* Warm, earthy, modern. Mobile-first. */

:root {
    --bg: #faf8f5;
    --bg-dark: #1a1d27;
    --text: #2c2c2c;
    --text-light: #6b6b6b;
    --text-inverse: #ffffff;
    --accent: #d4915c;
    --accent-dark: #b87a47;
    --accent-light: #e8c4a0;
    --green: #5a7c5a;
    --border: #e5e0d8;
    --card: #ffffff;
    --shadow: 0 2px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius: 12px;
    --max-width: 1200px;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
}

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

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s;
}
.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-book {
    background: var(--accent) !important;
    color: white !important;
    padding: 8px 20px;
    border-radius: 8px;
    transition: background 0.2s;
}
.nav-book:hover { background: var(--accent-dark) !important; }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #2c3e2d 0%, #1a2a1b 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 24px 40px;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 4rem);
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--accent);
    color: white;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-dark {
    background: var(--bg-dark);
    color: white;
}
.btn-dark:hover { background: #2a2d3a; }

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}
.section-alt {
    background: #f3efe8;
}
.section-dark {
    background: var(--bg-dark);
    color: white;
}
.section-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    text-align: center;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}
.section-dark .section-title { color: white; }
.section-cta h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 0.5rem; }
.section-cta p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2rem; }
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--card);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 48px; margin-bottom: 16px; }
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}
.feature-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* ===== SWEET SPOT ===== */
.sweet-spot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.sweet-spot-card {
    background: var(--card);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}
.sweet-spot-winner {
    border: 3px solid var(--accent);
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
}
.sweet-spot-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.sweet-spot-card p { color: var(--text-light); }
.sweet-spot-x {
    font-size: 32px;
    color: #ccc;
    margin-top: 16px;
}
.sweet-spot-check {
    font-size: 32px;
    color: var(--green);
    margin-top: 16px;
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    text-align: center;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
}
.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-top: 4px;
}

/* ===== LOCATION ===== */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}
.location-item {
    background: var(--card);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.location-distance {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}
.location-name {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===== REVIEWS ===== */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.review-card {
    background: var(--card);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.review-stars { color: var(--accent); font-size: 1.2rem; margin-bottom: 12px; }
.review-card p { font-style: italic; color: var(--text); margin-bottom: 16px; line-height: 1.7; }
.review-author { font-weight: 600; color: var(--text-light); font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer h3 {
    font-family: var(--font-heading);
    color: white;
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.footer h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 4px 0;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.footer a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #2c3e2d 0%, #1a2a1b 100%);
    color: white;
    padding: 140px 0 60px;
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 600;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ROOM GRID ===== */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.room-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.room-image {
    height: 200px;
    background: linear-gradient(135deg, var(--accent-light), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}
.room-body { padding: 24px; }
.room-body h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 8px; }
.room-body p { color: var(--text-light); font-size: 0.95rem; }

/* ===== AMENITY GRID ===== */
.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}
.amenity-item {
    background: var(--card);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
}
.amenity-icon { font-size: 28px; }
.amenity-name { font-weight: 500; font-size: 0.95rem; }

/* ===== BLOG ===== */
.blog-post {
    max-width: 700px;
    margin: 0 auto;
}
.blog-post h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.blog-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}
.blog-post h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
}
.blog-post p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text);
}
.blog-post ul, .blog-post ol {
    margin-bottom: 1.25rem;
    padding-left: 24px;
}
.blog-post li { margin-bottom: 8px; line-height: 1.7; }
.blog-post strong { color: var(--text); }
.blog-post em { color: var(--text-light); }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.contact-card {
    background: var(--card);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-card h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 16px; }
.contact-card p { margin-bottom: 12px; color: var(--text-light); }
.contact-platform {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg);
    border-radius: 8px;
    margin-bottom: 12px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}
.contact-platform:hover { background: var(--accent-light); }
.contact-platform-icon { font-size: 28px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .contact-grid { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .hero { min-height: 90vh; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .feature-card, .sweet-spot-card, .review-card { padding: 24px; }
    .stat-number { font-size: 2.5rem; }
}
