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

:root {
    --primary-font: 'Spicy Rice', display;
    --body-font: 'Lato', sans-serif;
    --bg-color: #fdfbf7; /* Soft warm white */
    --text-color: #333333;
    --accent-color: #8f7d6b; /* Muted taupe/gold */
}

html {
    scroll-behavior: smooth;
}

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

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), 
                url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=2070') no-repeat center center/cover;
}

.hero-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 3.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    max-width: 550px;
    width: 90%;
}

.hero h1 {
    font-family: var(--primary-font);
    font-size: 3.8rem; /* Bumped up size for Spicy Rice visibility */
    color: var(--text-color);
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}

.subtitle {
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    letter-spacing: 4px; /* Wide tracking looks great under a bold font */
}

.date-location {
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
    padding: 1.2rem 0;
    margin-bottom: 2rem;
}

.date {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.location {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-top: 0.4rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #6e5f50;
    transform: translateY(-1px);
}

/* Main Content */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.welcome {
    text-align: center;
}

.welcome h2 {
    font-family: var(--primary-font);
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.welcome p {
    font-size: 1.15rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 2.5rem;
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 1px;
}

