/* ============================================
   LA DOLCE COLONE FAMIGLIA '26
   Italy Trip Website Stylesheet
   ============================================ */

/* ----- CSS Variables ----- */
:root {
    --terracotta: #C27530;
    --terracotta-dark: #A85E20;
    --brown-dark: #3D1E06;
    --brown-medium: #5C2E0E;
    --brown-warm: #7A4520;
    --cream: #FFF8EE;
    --cream-dark: #F5E6C8;
    --olive: #6B7F3B;
    --olive-light: #8FA34D;
    --sage: #A8B88C;
    --red-italian: #CE2B37;
    --green-italian: #009246;
    --white-italian: #F1F2F1;
    --gold: #D4A843;
    --gold-light: #F0D68A;
    --sky: #87CEEB;
    --sea: #1A7A8A;
    --gaeta-blue: #2E86AB;
    --text-dark: #2C1810;
    --text-medium: #5A4030;
    --text-light: #8B7355;
    --shadow-soft: 0 2px 20px rgba(60, 30, 6, 0.1);
    --shadow-medium: 0 4px 30px rgba(60, 30, 6, 0.15);
    --shadow-heavy: 0 8px 40px rgba(60, 30, 6, 0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.3; }

a { color: var(--terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta-dark); }

img { max-width: 100%; height: auto; }

/* ----- Navigation ----- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: transparent;
    transition: all var(--transition);
}

#navbar.scrolled {
    background: rgba(61, 30, 6, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 32px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.nav-flag { font-size: 1.4rem; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all var(--transition);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.nav-links a:hover {
    background: rgba(255,255,255,0.2);
    color: var(--gold-light);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all var(--transition);
    border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ----- Hero ----- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(61, 30, 6, 0.7) 0%, rgba(194, 117, 48, 0.5) 50%, rgba(61, 30, 6, 0.7) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c27530' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-color: var(--brown-dark);
    background-size: cover;
    text-align: center;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(194, 117, 48, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(206, 43, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 146, 70, 0.1) 0%, transparent 40%);
    animation: heroGlow 12s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(5deg) scale(1.1); }
}

.hero-content { position: relative; z-index: 2; padding: 40px 20px; }

.hero-subtitle-top {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 12px;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-divider {
    font-size: 2rem;
    color: var(--gold);
    margin: 16px 0;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream-dark);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-dates {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-route {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.route-stop {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: var(--gold-light);
    padding: 4px 12px;
    border: 1px solid rgba(240, 214, 138, 0.4);
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
}

.route-arrow { color: rgba(255,255,255,0.5); font-size: 1.2rem; }

.hero-cta {
    display: inline-block;
    padding: 14px 36px;
    background: var(--terracotta);
    color: white !important;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(194, 117, 48, 0.4);
}

.hero-cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(194, 117, 48, 0.5);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
    50% { transform: rotate(45deg) translateY(10px); opacity: 0.5; }
}

/* ----- Countdown ----- */
#countdown {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
    padding: 40px 0;
    text-align: center;
}

.countdown-heading {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    min-width: 80px;
    background: rgba(255,255,255,0.05);
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(240, 214, 138, 0.2);
}

.countdown-label {
    color: var(--cream-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* ----- Sections ----- */
.section {
    padding: 80px 0;
}

.section-compact {
    padding: 50px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--brown-dark);
    text-align: center;
    margin-bottom: 8px;
}

.italian-aside {
    font-family: 'Dancing Script', cursive;
    font-size: 0.65em;
    color: var(--terracotta);
    font-weight: 400;
}

.section-intro {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.subsection-title {
    font-size: 1.6rem;
    color: var(--brown-warm);
    margin: 50px 0 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--cream-dark);
}

/* ----- City Headers ----- */
.city-header {
    text-align: center;
    margin-bottom: 40px;
}

.city-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 8px;
}

.city-dates {
    color: var(--terracotta);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 4px;
}

.city-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    color: var(--text-medium);
    margin-top: 4px;
}

/* ----- Lodging Callout ----- */
.lodging-callout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, var(--cream-dark) 0%, rgba(194, 117, 48, 0.08) 100%);
    padding: 20px 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--terracotta);
    margin-bottom: 32px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.lodging-callout.lodging-beach {
    border-left-color: var(--gaeta-blue);
    background: linear-gradient(135deg, #EEF6FA 0%, rgba(46, 134, 171, 0.08) 100%);
}

.lodging-icon { font-size: 1.8rem; flex-shrink: 0; }

/* ----- Timeline ----- */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom,
        var(--terracotta) 0%,
        var(--olive) 30%,
        var(--red-italian) 60%,
        var(--gaeta-blue) 80%,
        var(--terracotta) 100%
    );
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    padding: 12px 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-marker {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--cream);
    border: 3px solid var(--terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.timeline-marker.florence-marker { border-color: var(--olive); }
.timeline-marker.rome-marker { border-color: var(--red-italian); }
.timeline-marker.gaeta-marker { border-color: var(--gaeta-blue); }
.timeline-marker.travel-marker { border-color: var(--gold); }

.timeline-icon { font-size: 1.4rem; }

.timeline-content {
    background: white;
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    flex: 1;
    transition: box-shadow var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-medium);
}

.timeline-date {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 6px;
}

.day-label {
    background: var(--terracotta);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

.timeline-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.tag-florence { background: rgba(107, 127, 59, 0.15); color: var(--olive); }
.tag-rome { background: rgba(206, 43, 55, 0.12); color: var(--red-italian); }
.tag-gaeta { background: rgba(46, 134, 171, 0.12); color: var(--sea); }
.tag-booked { background: rgba(0, 146, 70, 0.12); color: var(--green-italian); }

/* ----- Section Variants ----- */
.section-florence {
    background: linear-gradient(180deg, var(--cream) 0%, rgba(107, 127, 59, 0.06) 100%);
}

.section-hilltowns {
    background: linear-gradient(180deg, rgba(194, 117, 48, 0.05) 0%, var(--cream) 100%);
}

.section-rome {
    background: linear-gradient(180deg, var(--cream) 0%, rgba(206, 43, 55, 0.04) 100%);
}

.section-gaeta {
    background: linear-gradient(180deg, rgba(46, 134, 171, 0.05) 0%, var(--cream) 100%);
}

.section-tips {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.section-decisions {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
}

.section-decisions .section-title,
.section-decisions .section-intro {
    color: var(--cream);
}

.section-challenge {
    background: linear-gradient(135deg, var(--terracotta-dark) 0%, var(--terracotta) 50%, var(--brown-warm) 100%);
}

.section-challenge .section-title,
.section-challenge .section-intro {
    color: white;
}

.section-transport {
    background: var(--cream-dark);
}

.section-lodging {
    background: var(--cream);
}

.section-costs {
    background: var(--cream-dark);
}

/* ----- Cards ----- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.card.visible { opacity: 1; transform: translateY(0); }

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

.card-booked {
    border-top: 4px solid var(--green-italian);
}

.card-badge {
    display: inline-block;
    background: rgba(0, 146, 70, 0.12);
    color: var(--green-italian);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.card h4 {
    font-size: 1.2rem;
    color: var(--brown-dark);
    margin-bottom: 6px;
}

.card-meta {
    color: var(--terracotta);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.card-note {
    background: var(--cream-dark);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-top: 10px;
    color: var(--text-medium);
}

/* ----- Explore Tabs ----- */
.explore-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tab-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--cream-dark);
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-medium);
    cursor: pointer;
    transition: all var(--transition);
}

.tab-btn:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.tab-btn.active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* ----- Explore Cards ----- */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.explore-card {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(15px);
}

.explore-card.visible { opacity: 1; transform: translateY(0); }

.explore-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.explore-emoji {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.explore-card h4 {
    font-size: 1.05rem;
    color: var(--brown-dark);
    margin-bottom: 6px;
}

.explore-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

.price-tag {
    display: inline-block;
    margin-top: 8px;
    padding: 2px 10px;
    background: var(--cream-dark);
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 12px;
}

.highlight-card {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(194, 117, 48, 0.08) 100%);
    border: 1px solid rgba(194, 117, 48, 0.2);
}

.gelato-banner {
    background: linear-gradient(135deg, #FFF0E0, #FFE4CC);
    padding: 14px 24px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700;
    color: var(--brown-warm);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* ----- Road Trip Timeline ----- */
.road-trip-timeline {
    position: relative;
    padding-left: 40px;
}

.road-trip-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(to bottom, var(--olive), var(--terracotta), var(--red-italian));
    border-radius: 3px;
}

.road-stop {
    position: relative;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.5s ease;
}

.road-stop.visible { opacity: 1; transform: translateX(0); }

.road-stop::before {
    content: '';
    position: absolute;
    left: -31px;
    top: 20px;
    width: 14px;
    height: 14px;
    background: var(--terracotta);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--terracotta);
}

.road-stop-major::before {
    width: 18px;
    height: 18px;
    left: -33px;
    background: var(--gold);
    box-shadow: 0 0 0 3px var(--gold), 0 0 15px rgba(212, 168, 67, 0.3);
}

.road-time {
    font-weight: 900;
    color: var(--terracotta);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.road-content {
    background: white;
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.road-content h4 {
    font-size: 1.2rem;
    color: var(--brown-dark);
    margin-bottom: 6px;
}

.road-highlights {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.highlight-item {
    background: var(--cream);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-medium);
}

.road-drive {
    padding: 12px 0;
    text-align: center;
}

.road-drive span {
    display: inline-block;
    background: var(--cream-dark);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
}

.driver-note {
    background: linear-gradient(135deg, var(--cream-dark), rgba(194, 117, 48, 0.1));
    padding: 16px 24px;
    border-radius: var(--radius);
    margin-top: 24px;
    text-align: center;
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ----- Gaeta ----- */
.gaeta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.gaeta-category {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

.gaeta-category.visible { opacity: 1; transform: translateY(0); }

.gaeta-category h3 {
    font-size: 1.2rem;
    color: var(--brown-dark);
    margin-bottom: 14px;
}

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

.gaeta-category li {
    padding: 8px 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.gaeta-category li:last-child { border-bottom: none; }

.gaeta-pace {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.gaeta-pace h3 {
    text-align: center;
    font-size: 1.4rem;
    color: var(--brown-dark);
    margin-bottom: 20px;
}

.pace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.pace-day {
    background: var(--cream);
    padding: 18px;
    border-radius: var(--radius);
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.pace-day.visible { opacity: 1; transform: translateY(0); }

.pace-day h4 {
    color: var(--gaeta-blue);
    margin-bottom: 8px;
}

.pace-day p { font-size: 0.9rem; color: var(--text-medium); }

/* ----- Transport ----- */
.transport-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.transport-step {
    flex: 1;
    min-width: 280px;
    display: flex;
    gap: 16px;
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--terracotta);
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.transport-tip {
    background: rgba(194, 117, 48, 0.1);
    padding: 14px 20px;
    border-radius: var(--radius);
    color: var(--text-medium);
    font-size: 0.95rem;
    border-left: 4px solid var(--terracotta);
}

/* ----- Flights ----- */
.flights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.flight-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.flight-card.visible { opacity: 1; transform: translateY(0); }

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

.flight-header {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flight-header h3 {
    color: white;
    font-size: 1.3rem;
}

.flight-home {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 700;
}

.flight-details { padding: 20px 24px; }

.flight-leg {
    padding: 12px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.flight-leg:last-child { border-bottom: none; }

.flight-direction {
    font-weight: 700;
    color: var(--terracotta);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.flight-note {
    background: var(--cream-dark);
    padding: 1px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--terracotta);
}

.flight-airline {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.flight-segment {
    font-size: 0.95rem;
    padding: 2px 0;
    color: var(--text-medium);
}

/* Airport Transfer */
.airport-transfer {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.airport-transfer h3 {
    text-align: center;
    color: var(--brown-dark);
    margin-bottom: 20px;
}

.transfer-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.transfer-step {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    padding: 12px 18px;
    border-radius: var(--radius);
}

.transfer-num {
    width: 28px;
    height: 28px;
    background: var(--terracotta);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.transfer-step p { font-size: 0.9rem; color: var(--text-medium); }

.transfer-arrow {
    font-size: 1.4rem;
    color: var(--terracotta);
    font-weight: 700;
}

/* ----- Lodging Grid ----- */
.lodging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.lodging-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(15px);
}

.lodging-card.visible { opacity: 1; transform: translateY(0); }

.lodging-card:hover { box-shadow: var(--shadow-medium); transform: translateY(-3px); }

.lodging-city-label {
    display: inline-block;
    background: var(--olive);
    color: white;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.lodging-city-label.lodging-rome { background: var(--red-italian); }
.lodging-city-label.lodging-gaeta { background: var(--gaeta-blue); }
.lodging-city-label.lodging-airport { background: var(--text-light); }

.lodging-card h3 {
    font-size: 1.2rem;
    color: var(--brown-dark);
    margin-bottom: 8px;
}

.lodging-address {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.lodging-details {
    color: var(--text-medium);
    font-size: 0.92rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.lodging-checkin {
    font-size: 0.85rem;
    color: var(--terracotta);
    font-weight: 700;
    margin-bottom: 6px;
}

.lodging-source {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.lodging-dates {
    display: inline-block;
    background: var(--cream-dark);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-medium);
}

/* ----- Tips ----- */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.tip-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(15px);
}

.tip-card.visible { opacity: 1; transform: translateY(0); }

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

.tip-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.tip-card h3 {
    font-size: 1.2rem;
    color: var(--brown-dark);
    margin-bottom: 12px;
}

.tip-content {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

.tip-content ul {
    list-style: none;
    padding: 0;
}

.tip-content li {
    padding: 4px 0 4px 20px;
    position: relative;
}

.tip-content li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-weight: 900;
}

.coffee-list li { padding: 5px 0 5px 20px; }

.tip-highlight {
    background: var(--cream);
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 14px;
    font-size: 0.92rem;
    border-left: 3px solid var(--terracotta);
}

.tip-coffee { border-top: 4px solid var(--brown-warm); }
.tip-church { border-top: 4px solid var(--olive); }
.tip-duomo { border-top: 4px solid var(--red-italian); }

/* ----- Decisions ----- */
.decision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.decision-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.decision-card.visible { opacity: 1; transform: translateY(0); }

.decision-card:hover { transform: translateY(-3px); }

.decision-badge {
    display: inline-block;
    background: var(--terracotta);
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.decision-card h3 {
    font-size: 1.15rem;
    color: var(--brown-dark);
    margin-bottom: 12px;
}

.decision-card p,
.decision-card ul {
    color: var(--text-medium);
    font-size: 0.92rem;
    line-height: 1.6;
}

.decision-card ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 8px;
}

.decision-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0;
}

.option {
    background: var(--cream);
    padding: 12px 16px;
    border-radius: var(--radius);
    border-left: 3px solid var(--terracotta);
}

.option strong {
    display: block;
    color: var(--brown-dark);
    margin-bottom: 4px;
}

.decision-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

/* ----- Family Challenge ----- */
.challenge-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.challenge-pillar {
    background: rgba(255, 255, 255, 0.15);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

.challenge-pillar.visible { opacity: 1; transform: translateY(0); }

.challenge-pillar h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.challenge-pillar p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
}

.challenge-months {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.month-card {
    background: rgba(255, 255, 255, 0.12);
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(3px);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.month-card.visible { opacity: 1; transform: translateY(0); }

.month-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.month-card h4 {
    color: var(--gold-light);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.month-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
}

.challenge-submit {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* ----- Prep/Packing ----- */
.prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.prep-item {
    text-align: center;
    padding: 24px 16px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(10px);
}

.prep-item.visible { opacity: 1; transform: translateY(0); }

.prep-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.prep-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.prep-item h4 {
    font-size: 1rem;
    color: var(--brown-dark);
    margin-bottom: 6px;
}

.prep-item p {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.5;
}

/* ----- Costs Table ----- */
.costs-table-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.costs-table {
    width: 100%;
    border-collapse: collapse;
}

.costs-table th {
    background: var(--brown-dark);
    color: white;
    padding: 14px 20px;
    text-align: left;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.costs-table td {
    padding: 12px 20px;
    font-size: 0.92rem;
    color: var(--text-medium);
    border-bottom: 1px solid var(--cream-dark);
}

.costs-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--brown-dark);
}

.cost-header-row td {
    background: var(--cream);
    font-weight: 900;
    color: var(--terracotta) !important;
    text-transform: uppercase;
    font-size: 0.8rem !important;
    letter-spacing: 1.5px;
}

.costs-table tfoot td {
    background: var(--cream);
    font-size: 1.1rem !important;
    padding: 16px 20px;
    border: none;
}

.costs-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 16px;
}

/* ----- Footer ----- */
footer {
    background: linear-gradient(135deg, var(--brown-dark) 0%, #1a0d03 100%);
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content { max-width: 600px; margin: 0 auto; }

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--gold-light);
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.footer-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-flag {
    font-size: 3rem;
    margin-bottom: 16px;
}

.footer-love {
    font-family: 'Dancing Script', cursive;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(61, 30, 6, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        font-size: 1.2rem;
        padding: 12px 30px;
    }
    .nav-toggle { z-index: 1001; }

    .hero-title { font-size: clamp(2.2rem, 10vw, 4rem); }
    .hero-route { gap: 6px; }
    .route-stop { font-size: 0.95rem; padding: 3px 8px; }

    .section-title { font-size: 2rem; }
    .countdown-number { font-size: 2.5rem; min-width: 60px; padding: 12px; }

    .timeline::before { left: 20px; }
    .timeline-marker { width: 42px; height: 42px; }
    .timeline-icon { font-size: 1.1rem; }

    .flights-grid { grid-template-columns: 1fr; }
    .transfer-steps { flex-direction: column; }
    .transfer-arrow { transform: rotate(90deg); }
}

@media (max-width: 600px) {
    .container { padding: 0 16px; }
    .section { padding: 50px 0; }
    .section-compact { padding: 30px 0; }

    .hero-subtitle-top { font-size: 1.1rem; }
    .hero-dates { font-size: 1.2rem; }

    .countdown-timer { gap: 12px; }
    .countdown-number { font-size: 2rem; min-width: 50px; padding: 10px; }
    .countdown-label { font-size: 0.7rem; }

    .card-grid { grid-template-columns: 1fr; }
    .explore-grid { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr; }
    .decision-grid { grid-template-columns: 1fr; }
    .lodging-grid { grid-template-columns: 1fr; }
    .gaeta-grid { grid-template-columns: 1fr; }
    .prep-grid { grid-template-columns: repeat(2, 1fr); }
    .challenge-months { grid-template-columns: 1fr; }
    .challenge-overview { grid-template-columns: 1fr; }
    .pace-grid { grid-template-columns: 1fr; }

    .explore-tabs { gap: 6px; }
    .tab-btn { padding: 8px 14px; font-size: 0.8rem; }

    .timeline-item { gap: 14px; }
    .lodging-callout { flex-direction: column; }
}

/* ----- City Photo Banners ----- */
.city-photo-banner {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.city-photo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.city-photo-banner:hover img {
    transform: scale(1.03);
}

.city-photo-banner.crop-bottom img {
    object-position: center 60%;
}

.city-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: linear-gradient(transparent, rgba(61, 30, 6, 0.7));
}

.city-photo-overlay span {
    font-family: 'Dancing Script', cursive;
    color: white;
    font-size: 1.1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* ----- Explore Card Photos ----- */
.explore-card.has-photo {
    padding: 0;
    overflow: hidden;
}

.explore-card.has-photo .explore-emoji,
.explore-card.has-photo h4,
.explore-card.has-photo p,
.explore-card.has-photo .price-tag {
    padding-left: 20px;
    padding-right: 20px;
}

.explore-card.has-photo .explore-emoji { padding-top: 16px; }
.explore-card.has-photo .price-tag { margin-bottom: 16px; }

.explore-photo {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.explore-card.has-photo:hover .explore-photo {
    transform: scale(1.05);
}

/* ----- Card Photos (Tour Cards) ----- */
.card-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    display: block;
}

/* ----- Road Trip Photos ----- */
.road-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 10px 0 14px;
    display: block;
}

/* ----- Flight TBD Card ----- */
.flight-card-tbd {
    border: 2px dashed var(--terracotta);
}

.flight-header-tbd {
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark)) !important;
}

.flight-tbd-placeholder {
    text-align: center;
    padding: 20px 10px;
}

.tbd-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
    opacity: 0.6;
}

.flight-tbd-placeholder h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--terracotta);
    margin-bottom: 10px;
}

.flight-tbd-placeholder > p {
    color: var(--text-medium);
    font-size: 0.92rem;
    margin-bottom: 14px;
}

.tbd-checklist {
    background: var(--cream);
    padding: 14px 18px;
    border-radius: var(--radius);
    text-align: left;
    border-left: 3px solid var(--terracotta);
}

.tbd-checklist p {
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.tbd-checklist ul {
    list-style: none;
    padding: 0;
}

.tbd-checklist li {
    padding: 3px 0 3px 20px;
    position: relative;
    font-size: 0.88rem;
    color: var(--text-medium);
}

.tbd-checklist li::before {
    content: '>';
    position: absolute;
    left: 2px;
    color: var(--terracotta);
    font-weight: 900;
}

/* ----- Responsive Photo Adjustments ----- */
@media (max-width: 600px) {
    .city-photo-banner { height: 200px; }
    .explore-photo { height: 130px; }
    .card-photo { height: 150px; }
    .road-photo { height: 160px; }
}

/* Print styles */
@media print {
    #navbar, .hero-scroll-indicator, .hero-cta { display: none; }
    .section { padding: 30px 0; page-break-inside: avoid; }
    .timeline-item, .card, .explore-card, .tip-card, .decision-card,
    .flight-card, .lodging-card, .gaeta-category, .road-stop,
    .prep-item, .pace-day, .month-card, .challenge-pillar {
        opacity: 1 !important;
        transform: none !important;
    }
    body { background: white; }
}
