/* static/css/glass-calendar.css */
:root {
    --glass-light: rgba(255, 255, 255, 0.1);
    --glass-medium: rgba(255, 255, 255, 0.2);
    --glass-dark: rgba(255, 255, 255, 0.3);
    --emerald-light: rgba(29, 233, 182, 0.4);
    --emerald-medium: rgba(29, 233, 182, 0.6);
    --emerald-dark: rgba(0, 191, 165, 0.1);
    --gold: rgba(255, 215, 0, 0.9);
    --red: rgba(220, 53, 69, 0.8);
    --blue-glass: rgba(110, 142, 251, 0.8);
    --purple-glass: rgba(167, 119, 227, 0.8);
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
}

.header {
    text-align: center;
    margin-bottom: 10px;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: rgb(251, 253, 253);
    font-size: 30px;
    font-weight: bold;
    text-align: left; /* Добавьте эту строку */
    
    /* Толстая черная окантовка */
    text-shadow: 
        -1px -1px 0 black,
        -1px 0px 0 black,
        -1px 1px 0 black,
        0px -1px 0 black,
        0px 1px 0 black,
        1px -1px 0 black,
        1px 0px 0 black,
        1px 1px 0 black,
        2px 2px 2px rgba(32, 78, 14, 0.76);

    /* Дополнительная объемная тень */
    filter: drop-shadow(3px 3px 3px rgba(12, 90, 77, 0.986));
}

.header p {
    font-size: 1.2em;
    opacity: 0.9;
    color: #020911;
    font-weight: bold;
    text-align: left;
    font-style: italic; /* Курсивный шрифт */
    padding-left: 40px; /* Отступ слева */
    margin-left: 0; /* Убедимся, что нет лишних отступов */
}

.calendar-main-container {
    display: flex;
    max-width: 100% !important;
    width: 100% !important;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    margin: 0 !important;
    min-height: 500px;

    /* position: relative !important; */
} 

.image-section {
    flex: 1;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
    height: 100%;
} 

.bath-image-real {
    width: 100% !important;
    height: 300px !important;
    max-width: 100% !important;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
}

.bath-image-placeholder {
    width: 100% !important;
    height: 300px !important;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, #8B4513, #A0522D);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}

/* .image-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
} */

.image-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-align: left;
    margin-bottom: 15px;
    align-self: flex-start; /* Выравнивание в flex-контейнере */
    width: 100%;
    max-width: 300px; /* Такая же ширина как у описания */
    padding-left: 0; /* Убираем отступ если нужен строго к краю */
}


 
.image-description {
    text-align: justify;
    font-size: 0.85rem;
    font-style: italic;
    color: #666;
    line-height: 1.3;
    margin: 0 auto;
    padding: 0 10px;
    
    /* WebKit/Blink браузеры (Chrome, Safari, Edge) */
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    
    /* Firefox через специфичное свойство */
    display: -moz-box;
    -moz-box-orient: vertical;
    -moz-line-clamp: 8;
    
    /* Стандартное свойство для будущей поддержки */
    display: box;
    line-clamp: 8;
    box-orient: vertical;
    
    /* Общее свойство для всех браузеров */
    overflow: hidden;
    
    /* Фолбэк для браузеров без поддержки line-clamp */
    max-height: 8.9em; /* line-height × количество строк */
}

/* Улучшенный фолбэк с градиентным обрезом */
.image-description::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.3em;
    background: linear-gradient(
        90deg,
        transparent,
        #f8f9fa 30%,
        #f8f9fa 100%
    );
    pointer-events: none;
}

/* Для браузеров с поддержкой line-clamp скрываем градиент */
@supports (-webkit-line-clamp: 3) or (line-clamp: 3) {
    .image-description::after {
        display: none;
    }
}

/* Альтернативный способ для старых браузеров */
.image-description.fallback {
    position: relative;
    max-height: 3.9em;
}

.image-description.fallback::before {
    content: "...";
    position: absolute;
    bottom: 0;
    right: 0;
    background: #f8f9fa;
    padding-left: 5px;
}




.calendar-section {
    flex: 1.5;
    padding: 40px;
    background: #211616;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.month-year {
    font-size: 28px;
    /* font-weight: bold; */
    color: #f5e809f0;
}

.week-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.week-day {
    text-align: center;
    font-weight: bold;
    color: #555;
    padding: 12px 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9), rgba(233, 236, 239, 0.9));
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

/* БАЗОВЫЙ СТИЛЬ СТЕКЛА ДЛЯ ВСЕХ ДНЕЙ */
.calendar-day {
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    padding: 8px 4px;
}

/* ЭФФЕКТ СТЕКЛА ПРИ НАВЕДЕНИИ */
.calendar-day:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* СТЕКЛО ДЛЯ ДОСТУПНЫХ ДНЕЙ */
.calendar-day.available {
    background: linear-gradient(135deg, var(--emerald-light), var(--emerald-medium));
    border: 1px solid rgba(29, 233, 182, 0.4);
}

.calendar-day.available:hover {
    background: linear-gradient(135deg, var(--emerald-medium), var(--emerald-dark));
    border: 1px solid rgba(29, 233, 182, 0.6);
}

/* СТЕКЛО ДЛЯ ЗАНЯТЫХ ДНЕЙ */
.calendar-day.booked {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.4), rgba(220, 53, 69, 0.6));
    border: 1px solid rgba(220, 53, 69, 0.3);
    opacity: 0.7;
}

.calendar-day.booked:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.5), rgba(220, 53, 69, 0.7));
    opacity: 0.9;
}

/* СТЕКЛО ДЛЯ ТЕКУЩЕГО ДНЯ */
.calendar-day.current-day {
    /* background: linear-gradient(135deg, var(--blue-glass), var(--purple-glass)); */
    border: 2px solid rgba(227, 243, 1, 0.781);
    box-shadow: 
        0 0 20px rgba(110, 142, 251, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.calendar-day.current-day:hover {
    /* background: linear-gradient(135deg, var(--purple-glass), var(--blue-glass)); */
    box-shadow: 
        0 0 25px rgba(167, 119, 227, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* СТЕКЛО ДЛЯ ДНЕЙ ИЗ ДРУГИХ МЕСЯЦЕВ */
.calendar-day.other-month {
    background: rgba(200, 200, 200, 0.2);
    border: 1px solid rgba(200, 200, 200, 0.3);
    color: rgba(100, 100, 100, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.calendar-day.other-month:hover {
    background: rgba(200, 200, 200, 0.3);
    transform: translateY(-2px);
}

/* НОМЕР ДНЯ С ЭФФЕКТОМ СТЕКЛА */
.day-number {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.3),
        -1px -1px 1px rgba(255, 255, 255, 0.1);
    margin-bottom: 4px;
    z-index: 2;
}

/* ЦЕНА С ЭФФЕКТОМ СТЕКЛА */
/* .compact-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(255, 215, 0, 0.3);
    padding: 3px 6px;
    border-radius: 8px;
    line-height: 1.1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
} */




/* Поднимаем число дня */
.day-number {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.3),
        -1px -1px 1px rgba(255, 255, 255, 0.1);
    /* margin-bottom: 8px; Увеличили отступ снизу */
    /* margin-top: 2px; Добавили отступ сверху */
    z-index: 2;
    position: relative;
    top: -3px; /* Приподнимаем число */
}

/* Делаем ценник более заметным */
.compact-price {
    font-family:'Arial', sans-serif;
    font-size: 0.8rem !important; /*   Увеличили размер */
    font-weight: 800 !important; /* Сделали жирнее */
    color: var(--gold);
    background: rgba(46, 55, 52, 0.4) !important; /* Увеличили прозрачность */
    padding: 4px 8px !important; /* Увеличили отступы */
    border-radius: 10px; 
    line-height: 1.1;
    /* backdrop-filter: blur(5px); */
    /* -webkit-backdrop-filter: blur(5px); */
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Усилили тень */
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3); /* Добавили свечение */
    position: relative;
    top: -10px; /* Приподнимаем ценник */
}

/* Увеличиваем высоту ячеек для мобильных */
@media (max-width: 768px) {
    .calendar-day {
        height: 55px !important; /* Увеличили высоту */
        padding: 6px 2px;
    }
    
    .day-number {
        font-size: 1.1rem;
        margin-bottom: 6px;
        top: -1px;
    }
    
    .compact-price {
        font-size: 0.75rem !important;
        padding: 3px 6px !important;
        top: -3px;
    }
}

@media (max-width: 480px) {
    .calendar-day {
        height: 50px !important; /* Увеличили высоту */
        padding: 5px 1px;
    }
    
    .day-number {
        font-size: 1rem;
        margin-bottom: 4px;
        top: 0;
    }
    
    .compact-price {
        font-size: 0.7rem !important;
        padding: 2px 5px !important;
        top: -2px;
        font-weight: 700 !important;
    }
}


/* СТАТУС С ЭФФЕКТОМ СТЕКЛА */
.compact-status {
    font-size: 0.65rem;
    padding: 3px 6px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.1;
    min-width: 45px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-available {
    background: rgba(29, 233, 182, 0.4);
    color: white;
    box-shadow: 0 2px 8px rgba(29, 233, 182, 0.3);
}

.status-booked {
    background: rgba(220, 53, 69, 0.4);
    color: white;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* ИНФОРМАЦИЯ О ДНЕ */
.day-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.navigation-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
}

.nav-btn {
    padding: 12px 25px;
    background: #19655e;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.nav-btn:hover {
    background: #5a7dfa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.footer {
    text-align: center;
    margin-top: 30px;
    opacity: 0.8;
}

.contact-section {
    text-align: center;
    /* padding: 40px 30px; */
    background: linear-gradient(196deg, #7b530b2e, #244b42);
    border-radius: 20px;
    margin-top: 40px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid rgba(255, 255, 255, 0.2);
    font-size: 10px;
}

.contact-title {
    /* font-size: 2rem; */
    margin-bottom: 15px;
    /* font-family: 'Georgia', serif; */
    font-family: 'Poiret One', sans-serif;
}

.contact-phone {
    font-size: 1.8rem;
    font-weight: 700;
    color: white; 
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.contact-hours {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Стили для селектора бани */
.bathhouse-selector {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.bathhouse-select {
    padding: 8px 15px;
    border: 2px solid #6e8efb;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    cursor: pointer;
}

.bathhouse-select:focus {
    outline: none;
    border-color: #5a7dfa;
    box-shadow: 0 0 0 3px rgba(110, 142, 251, 0.1);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 768px) {
    .calendar-main-container {
        flex-direction: column;
    }
    
    .image-section {
        padding: 30px;
    }
    
    .bath-image-real,
    .bath-image-placeholder {
        height: 250px !important;
    }
    
    .image-title {
        font-size: 24px;
    }
    
    .calendar-section {
        padding: 30px;
    }
    
    .navigation-buttons {
        flex-direction: column;
    }
    
    .calendar-days {
        gap: 6px;
    }
    
    .calendar-day {
        height: 50px;
        padding: 6px 2px;
    }
    
    .day-number {
        font-size: 1rem;
    }
    
    .compact-price {
        font-size: 0.7rem;
        padding: 2px 4px;
    }
}

@media (max-width: 480px) {
    .calendar-section {
        padding: 20px;
    }
    
    .month-year {
        font-size: 24px;
    }
    
    .calendar-day {
        height: 35px;
        font-size: 14px;
    }
    
    .week-day {
        padding: 8px 0;
        font-size: 14px;
    }
    
    .calendar-days {
        gap: 4px;
    }
    
    .calendar-day {
        height: 45px;
        padding: 4px 1px;
    }
    
    .day-number {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }
    
    .compact-price {
        font-size: 0.65rem;
        padding: 1px 3px;
    }
    
    .week-day {
        padding: 8px 0;
        font-size: 0.9rem;
    }
}




/* Стиль для прошедших дней */
.calendar-day.past-day {
    background: rgba(150, 150, 150, 0.2) !important;
    border: 1px solid rgba(150, 150, 150, 0.3) !important;
    opacity: 0.5;
    cursor: not-allowed;
}

.calendar-day.past-day:hover {
    transform: none !important;
    cursor: not-allowed;
}

/* Стиль для отключенной кнопки */
.nav-btn.disabled {
    background: #ccc !important;
    cursor: not-allowed;
    opacity: 0.6;
}

.nav-btn.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}



.contact-phone-link {
    font-size: 1.5rem !important; /* Крупный размер */
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.contact-phone-link:hover {
    color: #ffeb3b; /* Желтый цвет при наведении */
    transform: scale(1.05);
    text-decoration: none;
}

.contact-phone-link .bi-telephone {
    margin-right: 10px;
    font-size: 1.8rem; /* Размер иконки */
}

.timeout-heading {
    font-family: 'Poiret One', sans-serif;
    font-weight: 400;
    font-style: normal;
}

.header p {
    /*font-family: inherit;  Наследует шрифт от родителя */
    font-family: 'Poiret One', sans-serif;
    font-size: 1.5rem; /* Настройте размер по вкусу */
    font-weight: bold; /* Убирает жирность если нужно */
    margin: 0; /* Убирает отступы если нужно */
    line-height: 1.2; /* Межстрочный интервал */
}