/* ===========================
   CSS Reset & Base Styles
   =========================== */

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

:root {
    /* Colors */
    --navy-dark: #1a1a2e;
    --navy-medium: #16213e;
    --gold: #ffd700;
    --gold-light: #ffa500;
    --red: #c41e3a;
    --red-bright: #dc143c;
    --white: #ffffff;
    --cream: #f5f5f5;
    --gray-light: #e8e8e8;
    --shadow: rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: #333;
    background: var(--cream);
    overflow-x: hidden;
}

/* ===========================
   Snowfall Animation
   =========================== */

.snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
    animation: fall linear infinite;
    user-select: none;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 50%, #0f3460 100%);
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    opacity: 0.5;
    animation: twinkle 3s ease-in-out infinite;
}

/* Falling snow effect */
.hero-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 150%;
    background-image:
        radial-gradient(circle at 20% 10%, white 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        radial-gradient(circle at 40% 30%, white 1px, transparent 1px),
        radial-gradient(circle at 60% 5%, rgba(255, 255, 255, 0.8) 1.2px, transparent 1.2px),
        radial-gradient(circle at 90% 40%, white 1px, transparent 1px),
        radial-gradient(circle at 10% 25%, rgba(255, 255, 255, 0.7) 1px, transparent 1px),
        radial-gradient(circle at 50% 15%, white 1.3px, transparent 1.3px),
        radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.85) 1px, transparent 1px);
    background-size: 200px 200px, 180px 180px, 220px 220px, 190px 190px, 210px 210px, 170px 170px, 230px 230px, 195px 195px;
    background-position: 0 0, 30px 50px, 60px 20px, 90px 80px, 120px 40px, 150px 100px, 180px 60px, 210px 30px;
    animation: snowfall 20s linear infinite;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes snowfall {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.hero-ornament {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2rem auto;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.title-line {
    display: block;
}

.hero-date {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.hero-tagline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.hero-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-highlight:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
}

.hero-highlight-special {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border-color: var(--gold);
}

.hero-highlight-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-highlight-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===========================
   Navigation
   =========================== */

.main-nav {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 100;
}

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

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem 0;
}

.nav-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--navy-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--navy-dark);
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: var(--gray-light);
}

.nav-item.active {
    background: var(--navy-dark);
    color: var(--white);
}

.nav-icon {
    font-size: 1.2rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 10px var(--shadow);
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-item {
        width: 100%;
        justify-content: flex-start;
        border-radius: 0;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--gray-light);
    }
}

/* ===========================
   Main Content
   =========================== */

.main-content {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.content-section {
    scroll-margin-top: 80px;
    display: none;
    animation: fadeIn 0.5s ease;
}

.content-section.active {
    display: block;
}

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

.content-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--navy-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.section-subtitle {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

/* ===========================
   Itinerary Grid
   =========================== */

.itinerary-grid {
    display: grid;
    gap: 2rem;
}

.day-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.day-card.anniversary {
    border: 3px solid var(--gold);
    background: linear-gradient(135deg, #ffffff 0%, #fffef7 100%);
}

.day-header {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-card.anniversary .day-header {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark);
}

.day-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.day-date {
    font-size: 0.95rem;
    opacity: 0.9;
}

.day-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--navy-dark);
    padding: 1.5rem;
    background: var(--gray-light);
}

.day-content {
    padding: 1.5rem;
}

.time-block {
    margin-bottom: 1.5rem;
}

.time-block h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--navy-medium);
    margin-bottom: 0.75rem;
}

.time-block ul {
    list-style: none;
    padding-left: 1rem;
}

.time-block li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.time-block li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.time-block strong {
    color: var(--navy-dark);
}

.anniversary-block {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.romantic-moment {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.15), rgba(255, 192, 203, 0.1));
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 3px solid #ff69b4;
    margin: 0.5rem 0;
    position: relative;
}

.romantic-moment::before {
    content: '💕';
    position: absolute;
    left: -1.5rem;
    font-size: 1.2rem;
}

.romantic-moment li {
    padding-left: 0.5rem;
}

.romantic-moment li::before {
    color: #ff69b4;
}

.day-tips {
    background: var(--gray-light);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-top: 1rem;
    border-left: 4px solid var(--navy-medium);
}

.transit-link {
    color: var(--navy-dark);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.transit-link:hover {
    color: var(--gold);
    text-decoration-style: solid;
}

.location-link {
    color: var(--navy-dark);
    text-decoration: none;
    border-bottom: 1.5px dotted var(--gold);
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-link:hover {
    color: var(--gold);
    border-bottom-style: solid;
    border-bottom-width: 2px;
}

/* Location links in headings */
h4 .location-link {
    color: var(--navy-dark);
    font-weight: 700;
}

h4 .location-link:hover {
    color: var(--gold);
}

/* Add small map icon after location links */
.location-link::after {
    content: " 📍";
    font-size: 0.85em;
    opacity: 0.6;
    margin-left: 2px;
}

/* Remove icon from heading location links for cleaner look */
h4 .location-link::after {
    content: "";
}

/* Website links for place names */
.website-link {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.website-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Address links with navigation */
.address-item {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: #666;
    list-style: none;
}

.address-item::before {
    content: '';
    position: absolute;
    left: 0;
}

.address-link {
    color: #0066cc;
    text-decoration: underline;
    transition: all 0.3s ease;
    cursor: pointer;
}

.address-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

.travel-time {
    display: block;
    font-style: italic;
    color: #999;
    font-size: 0.9em;
    margin-top: 0.25rem;
    padding-left: 1.2rem;
}

/* ===========================
   Weather Section
   =========================== */

.forecast-container {
    margin-bottom: 3rem;
}

.forecast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.forecast-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.forecast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.forecast-day {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dark);
}

.forecast-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.forecast-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.forecast-condition {
    font-weight: 600;
    color: var(--navy-medium);
    font-size: 0.95rem;
}

.forecast-temps {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.temp-high {
    font-weight: 700;
    color: var(--navy-dark);
}

.temp-low {
    color: #999;
    font-weight: 500;
}

.temp-divider {
    color: #ccc;
}

.forecast-details {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-light);
}

.forecast-detail {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: #666;
}

.detail-icon {
    font-size: 1rem;
}

.forecast-description {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: -0.25rem;
}

.feels-like {
    font-size: 0.8rem;
    color: #888;
    margin-top: -0.25rem;
}

.weather-tip {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--navy-dark);
    margin-top: 0.5rem;
    border-left: 3px solid var(--gold);
}

.forecast-card.anniversary {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, #ffffff 0%, #fffef7 100%);
}

.forecast-card.anniversary .forecast-day {
    color: var(--gold);
    font-weight: 900;
}

.forecast-loading {
    grid-column: 1 / -1;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: #666;
    font-size: 1.1rem;
}

.forecast-error {
    grid-column: 1 / -1;
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.forecast-error p {
    color: #856404;
    margin-bottom: 0.5rem;
}

.forecast-error-detail {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.forecast-placeholder {
    grid-column: 1 / -1;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: #666;
}

.forecast-placeholder p {
    margin-bottom: 1rem;
}

.weather-prep {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

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

.weather-tip-card {
    background: var(--gray-light);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--navy-medium);
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.weather-tip-card:hover {
    background: #fff;
    border-left-color: var(--gold);
    box-shadow: 0 4px 10px var(--shadow);
}

.weather-tip-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.weather-tip-content {
    flex: 1;
}

.weather-tip-content h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.weather-tip-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.tip-card {
    background: var(--gray-light);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--navy-medium);
}

/* ===========================
   Cards Grid (Dining, Experiences)
   =========================== */

.dining-section,
.experiences-section,
.planning-section {
    margin-bottom: 3rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.place-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.place-card.featured {
    border: 2px solid var(--navy-medium);
}

.place-card.anniversary-card {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, #ffffff 0%, #fffef7 100%);
}

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

.place-card h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.card-meta {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.card-detail {
    color: var(--navy-medium);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.card-when {
    background: var(--gray-light);
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    margin: 0.75rem 0;
    text-align: center;
}

.card-when.anniversary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    font-weight: 600;
    color: var(--navy-dark);
}

.card-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.card-address {
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0;
}

.card-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.card-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--navy-dark);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.card-link:hover {
    background: var(--navy-medium);
}

/* ===========================
   Planning Section
   =========================== */

.reservation-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.reservation-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.reservation-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.reservation-card.priority {
    border-left: 5px solid var(--red);
}

.reservation-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.reservation-content {
    flex: 1;
}

.reservation-content h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--navy-dark);
    margin-bottom: 0.25rem;
}

.reservation-content p {
    color: #666;
    margin-bottom: 0.75rem;
}

.reservation-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--navy-dark);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.reservation-link:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.reservation-address {
    font-size: 0.9rem;
    color: #666;
    margin: 0.25rem 0 0.5rem 0;
}

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

.packing-category {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow);
}

.packing-category h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.packing-category ul {
    list-style: none;
}

.packing-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.packing-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

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

.tip-box {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-box h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.tip-box ul {
    list-style: none;
}

.tip-box li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tip-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

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

.info-box {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-box h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--navy-dark);
    margin-bottom: 0.75rem;
}

.info-box p {
    color: #666;
    margin-bottom: 0.5rem;
}

.info-link {
    color: var(--navy-dark);
    text-decoration: underline;
}

.info-link:hover {
    color: var(--gold);
}

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

.fact-box {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.fact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.fact-box p {
    flex: 1;
    line-height: 1.6;
}

/* ===========================
   Footer
   =========================== */

.footer {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer-ornament {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-dates {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.countdown {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1rem 0;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .hero-highlights {
        gap: 0.75rem;
    }

    .hero-highlight {
        padding: 0.75rem;
        min-width: 80px;
    }

    .hero-highlight-number {
        font-size: 2rem;
    }

    .hero-highlight-label {
        font-size: 0.75rem;
    }

    .main-content {
        padding: 2rem 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .itinerary-grid {
        gap: 1.5rem;
    }

    .day-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-highlights {
        gap: 0.5rem;
    }

    .hero-highlight {
        padding: 0.5rem;
        min-width: 70px;
    }

    .hero-highlight-number {
        font-size: 1.5rem;
    }

    .hero-highlight-label {
        font-size: 0.7rem;
    }

    .reservation-card {
        flex-direction: column;
        text-align: center;
    }

    .packing-grid,
    .tips-grid-large,
    .info-grid,
    .facts-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Print Styles
   =========================== */

@media print {
    .snowfall,
    .hero,
    .main-nav,
    .footer {
        display: none;
    }

    body {
        background: white;
    }

    .content-section {
        display: block !important;
        page-break-after: always;
    }

    .day-card,
    .place-card,
    .reservation-card {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}
