:root {
    --bg-color: #f8f8f8; /* Very light gray, almost white */
    --ink-color: #1a1a1a; /* Dark ink color */
    --accent-color: #444444;
    --paper-shadow: rgba(0, 0, 0, 0.05);
}

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

body {
    background-color: var(--bg-color);
    /* High quality rough paper texture */
    background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
    color: var(--ink-color);
    font-family: 'Caveat', cursive;
    line-height: 1.4;
    overflow-x: hidden;
    font-size: 1.2rem;
}

/* Marquee - Subtle and hand-drawn style */
.marquee-container {
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 0.3rem 0;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(2px);
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    font-family: 'La Belle Aurore', cursive;
    font-size: 1rem;
    opacity: 0.6;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero Section - Minimalist Line Art focus */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 500px;
}

.image-frame {
    display: inline-block;
    padding: 0;
    margin-bottom: 2rem;
    /* No border or shadow, just the art */
}

#wedding-photo {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    /* Ensure the line art stands out */
    filter: grayscale(1) contrast(1.1);
}

.title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 0.5rem;
    font-family: 'Caveat', cursive;
    font-weight: 700;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'La Belle Aurore', cursive;
    opacity: 0.8;
}

.date-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    border-top: 1px solid var(--ink-color);
    border-bottom: 1px solid var(--ink-color);
    font-family: 'Shadows Into Light', cursive;
    font-size: 1.3rem;
}

/* Sections */
.section {
    padding: 3rem 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Caveat', cursive;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: var(--ink-color);
    opacity: 0.3;
}

.card {
    background: transparent;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Caveat', cursive;
}

/* Timeline - Clean and Minimalist */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.timeline-item {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 300px;
    padding: 0.5rem;
}

.time {
    font-weight: 700;
    font-family: 'Shadows Into Light', cursive;
    color: #555;
}

.event {
    font-family: 'Caveat', cursive;
}

/* Buttons - Minimalist link style */
.btn {
    display: inline-block;
    padding: 0.5rem 2rem;
    color: var(--ink-color);
    text-decoration: none;
    border: 1px solid var(--ink-color);
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    font-family: 'Shadows Into Light', cursive;
    font-size: 1rem;
}

.btn:hover {
    background: var(--ink-color);
    color: white;
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 2rem;
    opacity: 0.5;
    font-family: 'La Belle Aurore', cursive;
    font-size: 0.9rem;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    body {
        font-size: 1.1rem;
    }
    
    .hero {
        min-height: 60vh;
    }

    .title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 2rem 1rem;
    }
}
