/* ----- RESET & БАЗОВЫЕ СТИЛИ ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #2c2c2c;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

/* ----- HERO СЕКЦИЯ ----- */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: auto;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ----- СЕКЦИЯ 2: ПРИГЛАШЕНИЕ ----- */
.invitation {
    background-color: #fff;
    padding: 40px 20px 80px 20px;
    position: relative;
    text-align: center;
}

/* Музыкальный плеер */
.music-player {
    text-align: center;
    margin-bottom: 40px;
}

.music-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-block;
    transition: transform 0.2s ease;
}

.music-btn:active {
    transform: scale(0.95);
}

.music-icon {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto;
}

.music-text {
    margin-top: 8px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

/* Заголовки и текст */
.section-title {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin: 0px 0px 8px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.pink-title {
    color: #8B2C2D;
}

.invitation-text {
    font-size: 16px;
    color: #000;
    text-align: center;
    line-height: 1.5;
    max-width: 320px;
    margin: 0 auto 24px auto;
}

.invitation-subtext {
    font-size: 16px;
    color: #000;
    text-align: center;
    line-height: 1.5;
    max-width: 320px;
    margin: 0 auto 40px auto;
}

/* Блок с календарем и фоновым фото */
.calendar-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    /* Календарь начинается на половине фото и выходит за его пределы */
    margin-top: -30px;
}

.calendar-bg {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.calendar-container {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid #8B2C2D;
    border-radius: 12px;
    padding: 12px 16px;  /* Уменьшено с 20px 16px */
    margin: -30% 20px 0 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.calendar-header {
    text-align: center;
    margin-bottom: 8px;  /* Уменьшено с 20px */
}

.calendar-month {
    font-family: 'TildaSans', 'Playfair Display', sans-serif, cursive;
    font-size: 14px;  /* Исправлено с 94px на адекватный размер */
    font-weight: normal;
    color: #8B2C2D;
    line-height: 1.2;  /* Добавлено для контроля высоты */
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 8px 0;
    font-size: 14px;
    color: #000;
}

.calendar-days span {
    padding: 8px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
}

/* Замените существующий .wedding-day на этот код */
.calendar-days .wedding-day {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%238B2C2D"%3E%3Cpath d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"%2F%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    background-color: transparent !important; /* Убираем фон-кружок */
}

/* Для мобильной версии */
@media screen and (max-width: 479px) {
    .calendar-days .wedding-day {
        width: 48px !important;
        height: 48px !important;
    }
}

/* ----- МОБИЛЬНАЯ ОПТИМИЗАЦИЯ (только до 479px) ----- */
@media screen and (max-width: 479px) {
    .hero {
        min-height: 100vh;
    }
    
    .invitation {
        padding: 30px 16px 60px 16px;
    }
    
    .section-title {
        font-size: 28px;
        margin: 0px 0px 8px;
    }
    
    .invitation-text,
    .invitation-subtext {
        font-size: 14px;
    }
    
    .calendar-container {
        padding: 10px 12px;  /* Уменьшено */
        margin: -35% 12px 0 12px;
    }
    
    .calendar-month {
        font-size: 40px;
    }
    
    .calendar-weekdays,
    .calendar-days {
        font-size: 12px;
    }
    
    .calendar-days .wedding-day {
        width: 28px;
        height: 28px;
    }
}

/* Подключение шрифта WonderGardenScript-Regular */
@font-face {
    font-family: 'WonderGardenScript-Regular';
    src: url('WonderGardenScript-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('TILDASANS-REGULAR.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* ----- СЕКЦИЯ 3: ЛОКАЦИЯ ----- */
.location {
    background-color: #fff;
    border: 1px solid #8B2C2D;
    border-radius: 16px;
    margin: 180px 20px 20px 20px;  /* Значительно увеличен верхний отступ */
    padding: 24px 20px 0 20px;
    text-align: center;
    position: relative;
}

.location-title {
    font-family: 'WonderGardenScript-Regular', 'Playfair Display', cursive;
    font-size: 150px;
    font-weight: normal;
    color: #000;
    margin-bottom: 16px;
    position: absolute;
    top: -110px;  /* Увеличен отступ вверх */
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    padding: 0;
    white-space: nowrap;
    line-height: 1;
}

.location-subtitle {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #8B2C2D;
    margin: 0px 0px 16px;
}

.location-address {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 16px;
    color: #000;
    margin: 0 0 16px 0;
}

.location-image {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 200px;
    display: block;
    margin: 16px auto 0 auto;
    /* border-radius: 12px; */
}

/* Кнопка Маршрут */
.route-btn {
    background-color: #fff;
    border: 1px solid #8B2C2D;
    border-radius: 40px;
    padding: 12px 32px;
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #8B2C2D;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 24px;
    margin-bottom: -20px;
    position: relative;
    background-color: #fff;
    display: inline-block;
    z-index: 2;
}

.route-btn:active {
    transform: scale(0.96);
    background-color: #8B2C2D;
    color: #fff;
}
@media screen and (max-width: 479px) {
    .location {
        margin: 180px 16px 16px 16px;  /* Такой же большой отступ как на десктопе */
    }
    
    .location-title {
        font-size: 150px;  /* Оставляем 150px */
        top: -110px;  /* Такой же отступ */
    }
    
    .location-subtitle {
        font-size: 25px;
        margin: 0px 0px 16px;
    }
    
    .location-address {
        font-size: 14px;
    }
    
    .location-image {
        max-height: 160px;
    }
    
    .route-btn {
        padding: 10px 28px;
        font-size: 14px;
        margin-bottom: -18px;
    }
}

/* ----- СЕКЦИЯ 4: ПЛАН ДНЯ ----- */
.schedule {
    background-color: #fff;
    padding: 40px 20px 60px 20px;
    text-align: center;
    position: relative;
}

.schedule-title {
    font-family: 'WonderGardenScript-Regular', 'Playfair Display', cursive;
    font-size: 150px;
    font-weight: normal;
    color: #000;
    margin-bottom: 40px;
    line-height: 1;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
}

.schedule-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
}

.schedule-info {
    flex: 1;
    text-align: left;
}

.schedule-event {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
}

.schedule-time {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 18px;
    color: #000;
}

.schedule-divider {
    height: 0.5px;
    background-color: #8B2C2D;
    width: 100%;
}

@media screen and (max-width: 479px) {
    .schedule {
        padding: 40px 20px 60px 20px;
    }
    
    .schedule-title {
        font-size: 150px;
        margin-bottom: 40px;
    }
    
    .schedule-item {
        gap: 20px;
        padding: 25px 0;
    }
    
    .schedule-icon {
        width: 100px;
        height: 100px;
    }
    
    .schedule-event {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .schedule-time {
        font-size: 18px;
    }
}

/* ----- СЕКЦИЯ 5: DRESS-CODE ----- */
.dresscode {
    background-color: #fff;
    border: 1px solid #8B2C2D;
    border-radius: 16px;
    margin: 160px auto 20px auto;
    padding: 30px 24px 40px 24px;
    text-align: center;
    position: relative;
    max-width: 320px;
    width: 100%;
}

.dresscode-title {
    font-family: 'WonderGardenScript-Regular', 'Playfair Display', cursive;
    font-size: 150px;
    font-weight: normal;
    color: #000;
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    padding: 0;
    white-space: nowrap;
    line-height: 1;
}

.dresscode-text {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 14px;
    color: #000;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 1rem;
    text-align: center;
}

.color-palette {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.color-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 479px) {
    .dresscode {
        margin: 160px auto 16px auto;
        padding: 25px 20px 35px 20px;
        max-width: 320px;
    }
    
    .dresscode-title {
        font-size: 150px;
        top: -120px;
        background-color: transparent;
        padding: 0;
    }
    
    .dresscode-text {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 25px;
    }
    
    .color-box {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }
    
    .color-palette {
        gap: 10px;
    }
}

/* ----- СЕКЦИЯ 6: ДЕТАЛИ ----- */
.details {
    background-color: #fff;
    padding: 40px 20px 60px 20px;
    position: relative;
    text-align: center;
}

.details-title {
    font-family: 'WonderGardenScript-Regular', 'Playfair Display', cursive;
    font-size: 150px;
    font-weight: normal;
    color: #000;
    margin-bottom: 40px;
    line-height: 1;
    text-align: center;
}

.details-content {
    max-width: 450px;
    margin: 0 auto;
    text-align: left;
}

.details-block {
    margin-bottom: 40px;
}

.details-label {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 12px;
}

.details-divider {
    height: 0.5px;
    background-color: #8B2C2D;
    width: 100%;
    margin-bottom: 16px;
}

.details-text {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 1.5;
}

@media screen and (max-width: 479px) {
    .details {
        padding: 30px 20px 50px 20px;
    }
    
    .details-title {
        font-size: 150px;
        margin-bottom: 30px;
    }
    
    .details-content {
        max-width: 100%;
    }
    
    .details-block {
        margin-bottom: 35px;
    }
    
    .details-label {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .details-divider {
        margin-bottom: 14px;
    }
    
    .details-text {
        font-size: 16px;
    }
}

/* ----- СЕКЦИЯ 7: ПРИСУТСТВИЕ ----- */
.attendance {
    background-color: #fff;
    border: 1px solid #8B2C2D;
    border-radius: 16px;
    margin: 180px auto 20px auto;
    padding: 30px 24px 40px 24px;
    text-align: center;
    position: relative;
    max-width: 320px;
    width: 100%;
}

.attendance-title {
    font-family: 'WonderGardenScript-Regular', 'Playfair Display', cursive;
    font-size: 150px;
    font-weight: normal;
    color: #000;
    position: absolute;
    top: -135px;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    padding: 0;
    white-space: nowrap;
    line-height: 1;
}

.attendance-text {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 14px;
    color: #000;
    line-height: 1.5;
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
}

.attendance-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.attendance-input {
    width: 100%;
    padding: 12px 16px;
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease;
    background-color: #fff;
}

.attendance-input:focus {
    border-color: #8B2C2D;
}

.attendance-input::placeholder {
    color: #999;
}

.attendance-buttons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.attend-btn {
    flex: 1;
    padding: 12px 0;
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #8B2C2D;
    background-color: #fff;
}

.confirm-btn {
    color: #8B2C2D;
}

.confirm-btn:active {
    background-color: #8B2C2D;
    color: #fff;
    transform: scale(0.96);
}

.decline-btn {
    color: #8B2C2D;
}

.decline-btn:active {
    background-color: #8B2C2D;
    color: #fff;
    transform: scale(0.96);
}

@media screen and (max-width: 479px) {
    .attendance {
        margin: 160px auto 16px auto;
        padding: 25px 20px 35px 20px;
        max-width: 320px;
    }
    
    .attendance-title {
        font-size: 150px;
        top: -120px;
        background-color: transparent;
        padding: 0;
    }
    
    .attendance-text {
        font-size: 14px;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    .attendance-input {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .attendance-buttons {
        gap: 10px;
    }
    
    .attend-btn {
        padding: 10px 0;
        font-size: 14px;
    }
}

/* ----- СЕКЦИЯ 8: ТАЙМЕР ----- */
.timer-section {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.timer-bg {
    background-image: url('timer-01.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px 60px 20px;
    position: relative;  /* ✅ Добавлено правильно */
    z-index: 1;  /* Добавьте эту строку */
}

.timer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    backdrop-filter: blur(1px);
}

/* Добавьте эти стили, чтобы текст был ярче на темном фоне */
.timer-label,
.timer {
    position: relative;
    z-index: 2;
}

/* Опционально: сделайте текст белым для лучшей контрастности */
.timer-label {
    color: #fff;  /* Белый текст */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Тень для читаемости */
}

.timer-number,
.timer-unit {
    color: #fff;  /* Белые цифры */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.timer-label {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 16px 12px;
    min-width: 70px;
}

.timer-number {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #8B2C2D;
    line-height: 1.2;
}

.timer-unit {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 12px;
    color: #000;
    margin-top: 6px;
}

@media screen and (max-width: 479px) {
    .timer-bg {
        min-height: 350px;
        padding: 30px 16px 50px 16px;
    }
    
    .timer-label {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .timer {
        gap: 12px;
    }
    
    .timer-item {
        padding: 12px 8px;
        min-width: 65px;
    }
    
    .timer-number {
        font-size: 24px;
        font-weight: 300;
    }
    
    .timer-unit {
        font-size: 18px;
    }
}

.attendance-buttons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.attend-btn {
    flex: 1;
    padding: 12px 0;
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #8B2C2D;
    background-color: #fff;
}

.confirm-btn {
    color: #8B2C2D;
}

.confirm-btn.selected {
    background-color: #8B2C2D;
    color: #fff;
}

.decline-btn {
    color: #8B2C2D;
}

.decline-btn.selected {
    background-color: #8B2C2D;
    color: #fff;
}

/* Опрос внутри секции присутствия */
.attendance-inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.survey-divider {
    height: 1px;
    background-color: #8B2C2D;
    width: 100%;
    margin: 30px 0 20px 0;
}

.survey-heading {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #8B2C2D;
    text-align: center;
    margin-bottom: 20px;
}

.survey-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.survey-group {
    text-align: left;
}

.survey-label {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    display: block;
    margin-bottom: 10px;
}

.survey-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-item {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 14px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.survey-radios {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.radio-item {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 14px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.survey-input {
    width: 100%;
    padding: 10px 14px;
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    margin-top: 10px;
}

.survey-input:focus {
    border-color: #8B2C2D;
}

.survey-submit {
    width: 100%;
    padding: 12px;
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #8B2C2D;
    background-color: #fff;
    border: 1px solid #8B2C2D;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.survey-submit:active {
    background-color: #8B2C2D;
    color: #fff;
    transform: scale(0.96);
}

.survey-wrapper {
    margin-top: 10px;
}

/* Убираем синее выделение при нажатии на мобильных */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

button,
input,
textarea,
a {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: none;
}

/* Вопрос подтверждения присутствия */
.attendance-confirm {
    text-align: left;
    margin: 15px 0 10px 0;
}

.confirm-label {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    display: block;
    margin-bottom: 10px;
}

.confirm-radios {
    display: flex;
    gap: 20px;
}

/* ----- СЕКЦИЯ: ПОЖЕЛАНИЯ ----- */
.wishes {
    background-color: #fff;
    padding: 40px 20px 60px 20px;
    text-align: center;
    position: relative;
}

.wishes-title {
    font-family: 'WonderGardenScript-Regular', 'Playfair Display', cursive;
    font-size: 150px;
    font-weight: normal;
    color: #000;
    margin-bottom: 30px;
    line-height: 1;
    text-align: center;
}

.wishes-text {
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 1.5;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #8B2C2D;
    border-radius: 16px;
    padding: 24px 20px;
}

@media screen and (max-width: 479px) {
    .wishes {
        padding: 30px 20px 50px 20px;
    }
    
    .wishes-title {
        font-size: 150px;
        margin-bottom: 25px;
    }
    
    .wishes-text {
        font-size: 16px;
        padding: 20px 16px;
        max-width: 100%;
    }
}


.route-btn2 {
    background-color: #fff;
    border: 1px solid #8B2C2D;
    border-radius: 40px;
    padding: 12px 32px;
    font-family: 'TildaSans', 'Playfair Display', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #8B2C2D;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 24px;
    margin-bottom: -20px;
    position: relative;
    background-color: #fff;
    display: inline-block;
    z-index: 2;
}

.route-btn2:active {
    transform: scale(0.96);
    background-color: #8B2C2D;
    color: #fff;
}

@media screen and (max-width: 479px) {  
    .route-btn2 {
        padding: 10px 28px;
        font-size: 14px;
        margin-bottom: -18px;
    }
}
