:root {
    --color-sand: #E8DFD0;
    --color-terracotta: #C4956A;
    --color-rust: #9A5B4A;
    --color-deep: #2C1810;
    --color-cream: #FAF7F2;
    --color-sage: #8B9A7C;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Questrial', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-deep);
    line-height: 1.6;
    min-height: 100vh;
}

/* Subpage full background */
body.has-bg-image {
    background: 
        linear-gradient(to bottom, rgba(44, 24, 16, 0.4) 0%, rgba(44, 24, 16, 0.3) 100%),
        var(--page-bg-image) center center / cover no-repeat fixed;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(to bottom, rgba(44, 24, 16, 0.8), transparent);
    z-index: 100;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-cream);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

.nav-link.active {
    border-bottom: 1px solid var(--color-terracotta);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: 
        linear-gradient(to bottom, rgba(44, 24, 16, 0.4) 0%, rgba(44, 24, 16, 0.5) 100%),
        url('/images/hero-bg.jpg') center center / cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.01) 100px,
            rgba(255, 255, 255, 0.01) 200px
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeUp 1.2s ease-out;
}

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

.hero-date {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 300;
    color: var(--color-cream);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: var(--color-terracotta);
    margin: 0 auto 2rem;
}

.hero-location {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-sand);
    font-weight: 300;
}

/* Info Section */
.info-section {
    padding: 6rem 2rem;
    background: var(--color-cream);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.info-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--color-deep);
}

.info-section > .container > p {
    font-size: 1.1rem;
    color: var(--color-rust);
    max-width: 600px;
    margin: 0 auto 4rem;
}

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

.card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    color: var(--color-deep);
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(44, 24, 16, 0.12);
    border-color: var(--color-terracotta);
}

.card-icon {
    font-size: 2rem;
    color: var(--color-terracotta);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

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

/* Page Header (for subpages) */
.page-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--color-sand);
    max-width: 500px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    padding: 4rem 2rem;
    background: var(--color-cream);
}

body.has-bg-image .content-section {
    background: rgba(250, 247, 242, 0.6);
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin: 0 auto 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(44, 24, 16, 0.15);
}

body.has-bg-image .footer {
    background: rgba(44, 24, 16, 0.9);
    backdrop-filter: blur(8px);
}

.content-section .container {
    text-align: left;
}

.content-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-deep);
}

.content-section p {
    margin-bottom: 1.5rem;
    color: var(--color-deep);
    opacity: 0.9;
}

.content-section ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.75rem;
    color: var(--color-deep);
    opacity: 0.9;
}

/* Map */
.map-container {
    margin: 2rem 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
}

.drive-time {
    display: inline-block;
    background: var(--color-terracotta);
    color: var(--color-cream);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--color-deep);
    color: var(--color-sand);
}

.footer p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        gap: 1rem;
        padding: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
    
    .info-section {
        padding: 4rem 1.5rem;
    }
    
    .card {
        padding: 2rem 1.5rem;
    }
}

