﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --primary-color: #c48b58; /* Copper/Tan accent color */
    --dark-bg: #1a1a1a;
    --text-white: #ffffff;
    --text-muted: #e0e0e0;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* Header Section */
.header {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.logo {
    max-width: 280px;
    margin-bottom: 20px;
    float: left;
}

.promo-banner {
    text-align: center;
    background-color: #fdf6f0;
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 30px;
}

    .promo-banner h2 {
        margin: 0;
        color: var(--primary-color);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 1.2rem;
    }

    .promo-banner p {
        margin: 5px 0 0;
        font-weight: 600;
    }

/* Calendar Hero Section */
.calendar-hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1545007161-c9d5713e02c5?q=80&w=2070&auto=format&fit=crop'); /* Placeholder image representing the wood/flag aesthetic */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px 40px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
}

    .calendar-hero h1 {
        font-family: var(--font-serif);
        font-size: 3.5rem;
        font-style: italic;
        margin: 0;
        font-weight: 400;
    }

    .calendar-hero h3 {
        font-family: var(--font-sans);
        font-size: 1.8rem;
        text-transform: uppercase;
        letter-spacing: 8px;
        margin-top: 10px;
        font-weight: 300;
    }

/* Events List Layout */
.events-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.day-block {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .day-block:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

.date-side {
    background-color: #f4f4f4;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ddd;
    padding: 20px;
}

.date-number {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    line-height: 1;
    /*color: #222;*/
    color: var(--primary-color);
}

.date-name {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-top: 5px;
}

.activities-side {
    flex-grow: 1;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activity-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 3px dashed #eee;
}

    .activity-row:last-child {
        border-bottom: none;
    }

.activity-name {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: #444;
}

.activity-time {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
}

/* Download Section */
.actions {
    text-align: right;
    padding: 30px;
    background: #fdfdfd;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 139, 88, 0.3);
}

    .btn-download:hover {
        background-color: #b07a4a;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(196, 139, 88, 0.4);
    }

    .btn-download svg {
        margin-right: 10px;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .calendar-hero h1 {
        font-size: 2.5rem;
    }

    .calendar-hero h3 {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    .day-block {
        flex-direction: column;
    }

    .date-side {
        flex-direction: row;
        min-width: auto;
        justify-content: flex-start;
        gap: 15px;
        padding: 10px 20px;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .date-number {
        font-size: 1.8rem;
    }

    .activities-side {
        padding: 15px 20px;
    }
}
