/* ===========================
   ОБЩИЕ СТИЛИ И СБРОС
   =========================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #556B2F;
    overflow-x: hidden;
    background: #000;
}

/* ===========================
   ВИДЕО ЭЛЕМЕНТЫ
   =========================== */

/* Видео 1 - Вступительное */
#intro-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 999;
    opacity: 1;
    transition: opacity 1.5s ease-out;
    pointer-events: none;
}

#intro-video.fade-out {
    opacity: 0;
}

#intro-video.hidden {
    display: none;
}

/* Видео 2 - Фоновое */
#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

#background-video.visible {
    opacity: 1;
}

/* ===========================
   ОВЕРЛЕЙ (Нежно-розовая пелена)
   =========================== */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(
        180deg,
        rgba(255, 229, 229, 0.8) 0%,
        rgba(255, 240, 245, 0.8) 50%,
        rgba(255, 228, 225, 0.85) 100%
    );
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease-in;
    pointer-events: none;
}

#overlay.visible {
    opacity: 1;
}

/* ===========================
   КОНТЕНТ
   =========================== */
#content {
    position: relative;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.1s ease-in;
}

#content.visible {
    opacity: 1;
}

#content.visible .hero-section {
    position: relative;
    z-index: auto;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   ТИПОГРАФИЯ
   =========================== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

h1 {
    color: #1B3A1B;
}

h2 {
    color: #2C5530;
}

h3 {
    color: #1B3A1B;
}

p {
    color: #1B3A1B;
    line-height: 1.8;
}

/* ===========================
   СЕКЦИЯ 1: ЗАГОЛОВОК (HERO)
   =========================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    z-index: 1001;
}

.names {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: #FFB6C1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
    opacity: 0;
    animation: appearNamesSmooth 2s ease-out 0.97s forwards;
    animation-play-state: paused;
}

@keyframes appearNamesSmooth {
    0% {
        opacity: 0;
        transform: translateY(20px);
        color: #FFB6C1;
    }
    30% {
        opacity: 1;
        transform: translateY(0);
        color: #FFB6C1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        color: #1B3A1B;
    }
}

.wedding-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.8s forwards;
    animation-play-state: paused;
}

.date-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1B3A1B;
}

.date-month {
    font-size: 1.2rem;
    color: #1B3A1B;
}

.date-year {
    font-size: 1.2rem;
    color: #1B3A1B;
}

.date-divider {
    font-size: 1rem;
    color: #1B3A1B;
}

/* ===========================
   СЕКЦИЯ 2: ИНФОРМАЦИЯ
   =========================== */
.event-info {
    padding: 100px 20px;
    text-align: center;
}



.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    color: #1B3A1B;
    text-align: center;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.6) 0%, rgba(255, 228, 235, 0.4) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 24px;
    padding: 60px 50px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 182, 193, 0.3);
    box-shadow: 
        0 8px 32px rgba(255, 150, 170, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1B3A1B, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(255, 150, 170, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 182, 193, 0.5);
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.75) 0%, rgba(255, 228, 235, 0.55) 100%);
}

.info-card:hover::before {
    opacity: 1;
}

.info-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.info-icon svg {
    filter: drop-shadow(0 4px 8px rgba(192, 100, 122, 0.15));
    transition: all 0.4s ease;
    stroke: #c0647a;
}

.info-card:hover .info-icon svg {
    filter: drop-shadow(0 6px 12px rgba(27, 58, 27, 0.25));
    transform: scale(1.05);
}

.info-icon::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(27, 58, 27, 0.3), transparent);
    opacity: 0.6;
}

.info-card h3 {
    font-size: 2rem;
    color: #1B3A1B;
    margin-bottom: 20px;
    margin-top: 30px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.info-detail {
    font-size: 1.3rem;
    color: #1B3A1B;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.info-time {
    font-size: 1.2rem;
    color: #2C5530;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.info-address {
    font-size: 1.1rem;
    color: #2C5530;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.map-link {
    display: inline-block;
    color: #1B3A1B;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 32px;
    border: 2px solid rgba(27, 58, 27, 0.3);
    border-radius: 50px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(27, 58, 27, 0.08);
    letter-spacing: 0.5px;
}

.map-link:hover {
    background: #1B3A1B;
    color: white;
    border-color: #1B3A1B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 58, 27, 0.2);
}

/* Цветовая палитра для дресс-кода */
.dress-code-label {
    font-size: 1rem;
    color: #2C5530;
    margin-top: 15px;
    margin-bottom: 12px;
    font-weight: 500;
}

.color-palette {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.color-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.color-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.color-circle:hover {
    transform: scale(1.2) translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.9);
}

.color-circle:hover::before {
    opacity: 1;
}

/* ===========================
   СЕКЦИЯ 4: ПРОГРАММА
   =========================== */
.program-section {
    padding: 100px 20px 120px 20px;
}

/* Счетчик дней */
.countdown {
    text-align: center;
    margin-bottom: 80px;
}

.countdown h3 {
    font-size: 2rem;
    color: #1B3A1B;
    margin-bottom: 30px;
}

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

.countdown-item {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.6) 0%, rgba(255, 228, 235, 0.4) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 20px;
    padding: 30px 40px;
    min-width: 120px;
    border: 1px solid rgba(255, 182, 193, 0.3);
    box-shadow: 
        0 8px 24px rgba(255, 150, 170, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.countdown-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 12px 32px rgba(255, 150, 170, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.75) 0%, rgba(255, 228, 235, 0.55) 100%);
}

.countdown-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #1B3A1B;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.countdown-label {
    display: block;
    font-size: 1rem;
    color: #2C5530;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* ===========================
   TIMELINE — ДЕСКТОП
   =========================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Вертикальная линия строго по центру контейнера */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #2C5530, #1B3A1B);
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    gap: 0;
}

/* Точка по центру между двумя колонками */
.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1B3A1B;
    border: 4px solid rgba(255, 240, 245, 0.9);
    z-index: 1;
    flex-shrink: 0;
}

/* Левая колонка — время */
.timeline-time {
    width: calc(50% - 30px);
    text-align: right;
    padding-right: 30px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1B3A1B;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}

/* Правая колонка — карточка */
.timeline-content {
    width: calc(50% - 30px);
    margin-left: auto;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.6) 0%, rgba(255, 228, 235, 0.35) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 20px;
    padding: 25px 30px;
    border: 1px solid rgba(255, 182, 193, 0.25);
    box-shadow: 
        0 4px 20px rgba(255, 150, 170, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.timeline-content:hover {
    box-shadow: 
        0 8px 28px rgba(255, 150, 170, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateX(6px);
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.75) 0%, rgba(255, 228, 235, 0.5) 100%);
}

.timeline-content h4 {
    font-size: 1.4rem;
    color: #1B3A1B;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    letter-spacing: 0.3px;
}

.timeline-content p {
    font-size: 1rem;
    color: #2C5530;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* ===========================
   СЕКЦИЯ RSVP
   =========================== */
.rsvp-section {
    padding: 100px 20px;
    text-align: center;
}

.rsvp-text {
    font-size: 1.3rem;
    color: #1B3A1B;
    margin-bottom: 40px;
}

.rsvp-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #1B3A1B;
    color: white;
    box-shadow: 0 5px 15px rgba(27, 58, 27, 0.3);
}

.btn-primary:hover {
    background: #2C5530;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(27, 58, 27, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.85);
    color: #1B3A1B;
    border: 2px solid #1B3A1B;
}

.btn-secondary:hover {
    background: rgba(27, 58, 27, 0.1);
    transform: translateY(-3px);
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #1B3A1B;
    margin-bottom: 10px;
}

.contact-link {
    font-size: 1.3rem;
    color: #1B3A1B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2C5530;
}

/* ===========================
   ФУТЕР
   =========================== */
.footer {
    padding: 60px 20px;
    text-align: center;
}

.footer-text {
    font-size: 1.3rem;
    color: #2C5530;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.footer-heart {
    font-size: 2.5rem;
    color: #1B3A1B;
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* ===========================
   АНИМАЦИИ
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Fade-in секции при скролле — стартуют видимыми, анимация только вверх */
.fade-in-section {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.animate {
    opacity: 0;
    transform: translateY(50px);
}

.fade-in-section.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   АДАПТИВНОСТЬ
   =========================== */

/* ===========================
   МОБИЛЬНЫЙ РЕДИЗАЙН — НЕЖНЫЙ
   =========================== */

   @media (max-width: 768px) {

    /* Hero */
    .hero-section {
        padding: 0 20px;
    }

    .names {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .date-number,
    .date-month,
    .date-year {
        font-size: 1.2rem;
    }

    .date-divider {
        font-size: 1rem;
    }

    /* Секция инфо */
    .event-info {
        padding: 60px 16px 40px;
        margin-top: 40vh;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 28px;
        line-height: 1.2;
    }

    /* Карточки — компактные, с розовым оттенком */
    .info-card {
        padding: 28px 24px;
        margin-bottom: 16px;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(255, 240, 245, 0.6) 0%, rgba(255, 228, 235, 0.4) 100%);
        border: 1px solid rgba(255, 182, 193, 0.3);
        box-shadow: 0 4px 20px rgba(255, 150, 170, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-icon {
        margin-bottom: 10px;
    }

    .info-icon svg {
        width: 40px;
        height: 40px;
        stroke: #c0647a;
    }

    .info-icon::after {
        bottom: -8px;
        width: 40px;
        background: linear-gradient(90deg, transparent, rgba(192, 100, 122, 0.3), transparent);
    }

    .info-card h3 {
        font-size: 1.3rem;
        margin-top: 16px;
        margin-bottom: 10px;
        color: #1B3A1B;
    }

    .info-detail {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }

    .info-time,
    .info-address {
        font-size: 0.95rem;
        color: #5a7a5a;
    }

    .map-link {
        margin-top: 12px;
        padding: 10px 24px;
        font-size: 0.9rem;
        border-color: rgba(192, 100, 122, 0.4);
        color: #c0647a;
    }

    .map-link:hover {
        background: #c0647a;
        border-color: #c0647a;
    }

    .dress-code-label {
        font-size: 0.9rem;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .color-circle {
        width: 36px;
        height: 36px;
    }

    /* Программа */
    .program-section {
        padding: 50px 16px 80px;
    }

    .countdown {
        margin-bottom: 50px;
    }

    .countdown h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        padding: 16px 14px;
        min-width: 72px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(255, 240, 245, 0.6) 0%, rgba(255, 228, 235, 0.4) 100%);
        border: 1px solid rgba(255, 182, 193, 0.3);
    }

    .countdown-value {
        font-size: 1.9rem;
    }

    .countdown-label {
        font-size: 0.72rem;
        letter-spacing: 0.5px;
        margin-top: 6px;
    }

    /* Timeline мобильный */
    .timeline::before {
        left: 16px;
        width: 2px;
        background: linear-gradient(180deg, rgba(192, 100, 122, 0.4), rgba(27, 58, 27, 0.3));
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 48px;
        margin-bottom: 20px;
    }

    .timeline-item::before {
        left: 8px;
        width: 16px;
        height: 16px;
        background: #c0647a;
        border-color: rgba(255, 240, 245, 0.95);
    }

    .timeline-time {
        text-align: left;
        padding: 0;
        margin-bottom: 6px;
        font-size: 1.1rem;
        color: #c0647a;
        flex: none;
    }

    .timeline-content {
        padding: 16px 18px;
        width: 100%;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(255, 240, 245, 0.6) 0%, rgba(255, 228, 235, 0.35) 100%);
        border: 1px solid rgba(255, 182, 193, 0.25);
        flex: none;
    }

    .timeline-content h4 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .timeline-content:hover {
        transform: none;
    }
}

/* ===========================
   ДРЕСС-КОД: РАЗДЕЛЕНИЕ М/Ж
   =========================== */

.dresscode-block {
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

.dresscode-gender {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1B3A1B;
}

.dresscode-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(27, 58, 27, 0.2), transparent);
    margin: 16px auto;
}

/* ПАТЧ: добавить в самый конец styles.css */

/* Карточки не прозрачные при загрузке на мобильных */
@media (max-width: 768px) {
    .fade-in-section {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Десктоп */
@media (min-width: 769px) {

    /* Розовые стенки в цвет плёнки */
    body {
        background: rgba(255, 235, 238, 1);
    }

    body::after {
        content: '';
        position: fixed;
        top: 0; left: 0;
        width: 100vw; height: 100vh;
        background: linear-gradient(
            180deg,
            rgba(255, 229, 229, 0.95) 0%,
            rgba(255, 240, 245, 0.95) 50%,
            rgba(255, 228, 225, 0.95) 100%
        );
        z-index: -1;
    }

    /* Видео, фото и оверлей — 480px по центру */
    #intro-video,
    #background-video,
    #couple-photo-bg,
    #overlay {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 460px !important;
        height: 100vh !important;
    }

    #interaction-blocker {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 480px !important;
    }

    #start-screen {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 480px !important;
    }

    /* Hero */
    .hero-section {
        width: 480px;
        margin: 0 auto;
    }

    /* Весь контент */
    #content {
        width: 450px;
        margin: 0 auto;
    }

    /* Timeline на десктопе в узком контейнере — переключаем на мобильный вид */
    .timeline::before {
        left: 16px;
        width: 2px;
        background: linear-gradient(180deg, rgba(192, 100, 122, 0.4), rgba(27, 58, 27, 0.3));
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 48px;
        margin-bottom: 20px;
        opacity: 1 !important;
        transform: none !important;
    }

    .timeline-item::before {
        left: 8px;
        top: 12px;
        transform: none;
        width: 16px;
        height: 16px;
        background: #c0647a;
        border-color: rgba(255, 240, 245, 0.95);
    }

    .timeline-time {
        text-align: left;
        padding: 0;
        margin-bottom: 6px;
        font-size: 1.1rem;
        color: #c0647a;
        width: 100%;
    }

    .timeline-content {
        padding: 16px 18px;
        width: 100%;
        border-radius: 14px;
        margin-left: 0;
    }

    .timeline-content:hover {
        transform: none;
    }

    /* Fade-in секции видимы сразу */
    .fade-in-section {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}