/*
  main.css — Main Stylesheet

  Learning notes:
  - CSS variables (--variable-name) at the top make it easy to change
    the color scheme across the whole site in one place.
  - To change the color scheme later, just update the values in :root {}
  - Colors currently use an "Aqua & Sand" theme (bright aqua, warm sand, yellow).
    Easy to swap out.
*/

/* ============================================================
   CSS VARIABLES — Change your color scheme here!
   ============================================================ */
:root {
    --color-primary: #0e9ab0;      /* Bright aqua */
    --color-primary-dark: #0a7a8e;
    --color-secondary: #c8a97a;    /* Warm sand */
    --color-accent: #e8c840;       /* Bright yellow */
    --color-bg: #faf8f2;           /* Warm sandy white */
    --color-surface: #ffffff;
    --color-text: #2e2a1e;
    --color-text-light: #7a7060;
    --color-border: #e0d8c8;

    --font-heading: Georgia, 'Times New Roman', serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.14);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dark); }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 4rem 0; }
.text-center { text-align: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    font-style: italic;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--color-primary); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%); /* fallback if image fails */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 1.5rem;
}

/* Dark overlay so text stays readable over any photo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: normal;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.hero-date {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    letter-spacing: 0.03em;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
}

.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn-large { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: normal;
    font-style: italic;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

/* ============================================================
   PAGE HEADER (non-homepage pages)
   ============================================================ */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    text-align: center;
    padding: 3.5rem 1.5rem;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: normal;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    opacity: 0.9;
    font-size: 1.05rem;
}

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown-section { background: var(--color-surface); }

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.countdown-item {
    text-align: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 1.5rem 2rem;
    min-width: 120px;
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.countdown-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-top: 0.5rem;
    display: block;
}

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-section { background: var(--color-surface); }

.welcome-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.welcome-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

/* ============================================================
   OUR STORY SECTION
   ============================================================ */
.story-section { background: var(--color-bg); }

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3.5rem;
    align-items: start;
    margin-top: 2.5rem;
}

.story-photo-wrap {
    position: sticky;
    top: 5rem; /* Stays visible as you scroll through the story */
}

.story-photo {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    object-fit: cover;
}

.story-chapter {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.story-chapter:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.story-chapter-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.story-chapter p {
    color: var(--color-text-light);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .story-photo-wrap { position: static; }
}

/* ============================================================
   STORY FEATURE CARD (homepage link to Our Story page)
   ============================================================ */
.story-feature-section { background: var(--color-bg); }

.story-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    text-decoration: none;
    color: var(--color-text);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 900px;
    margin: 0 auto;
}

.story-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.16);
    color: var(--color-text);
}

.story-feature-img-wrap { overflow: hidden; }

.story-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.story-feature-card:hover .story-feature-img {
    transform: scale(1.04);
}

.story-feature-text {
    background: var(--color-surface);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.story-feature-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-secondary);
    font-weight: 600;
}

.story-feature-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-style: italic;
    font-weight: normal;
    color: var(--color-primary);
    line-height: 1.2;
}

.story-feature-desc {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.story-feature-btn {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03em;
    transition: letter-spacing 0.2s;
}

.story-feature-card:hover .story-feature-btn {
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .story-feature-card { grid-template-columns: 1fr; }
    .story-feature-img-wrap { height: 240px; }
    .story-feature-text { padding: 2rem 1.5rem; }
}

/* ============================================================
   OUR STORY PAGE — Video + Photo Timeline
   ============================================================ */
.story-video-section { background: var(--color-surface); }

.story-video-wrap {
    max-width: 500px;
    margin: 2rem auto 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.story-video {
    width: 100%;
    display: block;
    background: #000;
}

.story-photos-section { background: var(--color-bg); }

.story-photo-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.story-moment {
    background: var(--color-surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.story-moment:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.story-moment-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.story-moment-info {
    padding: 1rem 1.25rem 1.25rem;
}

.story-moment-date {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
}

.story-moment-caption {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Last photo card — full width, a bit special */
.story-moment-final {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.story-moment-final .story-moment-img {
    aspect-ratio: 16/9;
}

.story-moment-final .story-moment-info {
    padding: 2rem;
}

.story-moment-final .story-moment-date {
    font-size: 1rem;
}

.story-moment-final .story-moment-caption {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .story-moment-final {
        grid-column: auto;
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   TRAVEL FEATURE CARD (homepage) — image on right, text on left
   ============================================================ */
.travel-feature-section { background: var(--color-surface); }

/* Flip the column order so image is on the right */
.travel-feature-card {
    background: var(--color-bg);
}

.travel-feature-card .story-feature-text {
    background: var(--color-bg);
    order: 1;
}

.travel-feature-card .story-feature-img-wrap {
    order: 2;
}

@media (max-width: 768px) {
    .travel-feature-card .story-feature-text { order: 2; }
    .travel-feature-card .story-feature-img-wrap { order: 1; }
}

/* ============================================================
   TRAVEL PAGE — Activity cards and destination list
   ============================================================ */
.travel-intro-section { background: var(--color-surface); padding-bottom: 0; }

.travel-intro {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
}

.travel-section { background: var(--color-bg); }
.travel-section-alt { background: var(--color-surface); }

/* Activity cards grid */
.travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.travel-card {
    background: var(--color-surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem 1.75rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.travel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.travel-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.travel-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 0.6rem;
}

.travel-card-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Destination cards */
.destination-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.destination-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    display: grid;
    grid-template-columns: 120px 1fr;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.destination-card:hover { box-shadow: var(--shadow); }

.destination-img-wrap {
    background: var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-img-placeholder {
    font-size: 3rem;
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-info { padding: 1.5rem 2rem; }

.destination-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.destination-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-text);
}

.destination-distance {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
    white-space: nowrap;
}

.destination-desc {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.destination-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.destination-tag {
    background: var(--color-border);
    color: var(--color-text-light);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

@media (max-width: 600px) {
    .destination-card { grid-template-columns: 1fr; }
    .destination-img-wrap { height: 120px; }
    .destination-info { padding: 1.25rem; }
}

/* ============================================================
   WEDDING PARTY GRID
   ============================================================ */
.wedding-party-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.party-card {
    background: var(--color-surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    text-align: center;
    padding-bottom: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.party-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.party-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.party-photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.party-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 1rem 1rem 0.25rem;
    color: var(--color-text);
}

.party-role {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.party-bio {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0.75rem 1rem 0;
}

/* ============================================================
   QUICK LINKS
   ============================================================ */
.quick-links-section { background: var(--color-surface); }

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.quick-link-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    color: var(--color-text);
    transition: all 0.2s;
}

.quick-link-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--color-text);
}

.quick-link-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.quick-link-card h3 { color: var(--color-primary); margin-bottom: 0.5rem; }
.quick-link-card p { color: var(--color-text-light); font-size: 0.9rem; }

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.events-list { display: flex; flex-direction: column; gap: 1.5rem; }

.event-card {
    background: var(--color-surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
}

.event-date-block {
    background: var(--color-primary);
    color: white;
    padding: 1.5rem;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-day { font-size: 2.5rem; font-weight: 700; line-height: 1; }
.event-month { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }

.event-details { padding: 1.5rem; }
.event-name { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--color-text); }
.event-time, .event-location, .event-dress { color: var(--color-text-light); margin-bottom: 0.25rem; }
.event-address { color: var(--color-text-light); font-size: 0.9rem; margin-bottom: 0.5rem; }
.event-description { margin-top: 0.75rem; color: var(--color-text); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.upload-section { background: var(--color-surface); padding: 2.5rem 0; }

.upload-card {
    background: var(--color-bg);
    border: 2px dashed var(--color-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.upload-title { font-family: var(--font-heading); margin-bottom: 0.75rem; color: var(--color-primary); }

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.photo-card {
    background: var(--color-surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.photo-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.photo-info { padding: 1rem; }
.photo-caption { font-weight: 500; margin-bottom: 0.25rem; }
.photo-uploader { color: var(--color-text-light); font-size: 0.875rem; }
.photo-date { color: var(--color-text-light); font-size: 0.8rem; margin-bottom: 0.75rem; }

/* ============================================================
   FORMS (shared across RSVP and Gallery upload)
   ============================================================ */
.form-card {
    background: var(--color-surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; color: var(--color-text); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--color-bg);
    color: var(--color-text);
    transition: border-color 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-textarea { resize: vertical; }
.form-error { color: #c0392b; font-size: 0.85rem; margin-top: 0.25rem; }
.form-check { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.form-check input[type="checkbox"] { width: 1.1rem; height: 1.1rem; accent-color: var(--color-primary); cursor: pointer; flex-shrink: 0; }
.form-hint { font-size: 0.88rem; color: var(--color-text-light); background: #f0f8fa; border-left: 3px solid var(--color-primary); padding: 0.6rem 0.9rem; border-radius: 0 4px 4px 0; margin-top: 0.4rem; }
.form-section-title { font-family: var(--font-heading); color: var(--color-primary); margin: 1.5rem 0 1rem; border-bottom: 1px solid var(--color-border); padding-bottom: 0.5rem; }

/* ============================================================
   CONFIRMATION PAGE
   ============================================================ */
.confirmation-section { min-height: 60vh; display: flex; align-items: center; }

.confirmation-card {
    background: var(--color-surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.confirmation-icon { font-size: 4rem; margin-bottom: 1rem; }
.confirmation-card h1 { font-family: var(--font-heading); color: var(--color-primary); margin-bottom: 1rem; }
.confirmation-message { color: var(--color-text-light); margin-bottom: 2rem; }
.confirmation-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   MESSAGES (flash notifications)
   ============================================================ */
.messages-container { padding: 0.75rem 1.5rem; }

.message {
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.message-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.message-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--color-text);
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 2rem 1.5rem;
    margin-top: 2rem;
}

.footer p { margin-bottom: 0.25rem; font-size: 0.9rem; }

/* ============================================================
   EMPTY STATES
   ============================================================ */
.empty-state {
    text-align: center;
    color: var(--color-text-light);
    font-style: italic;
    padding: 3rem;
}

/* ============================================================
   RESPONSIVE — Mobile adjustments
   ============================================================ */
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .nav-links { gap: 1rem; }
    .event-card { flex-direction: column; }
    .event-date-block { padding: 1rem; flex-direction: row; gap: 0.5rem; }
    .countdown { gap: 1rem; }
    .countdown-item { min-width: 80px; padding: 1rem; }
    .countdown-number { font-size: 2rem; }
}
