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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}



.container {
    display: flex;
    width: 500vw;
    height: 100vh;
    transition: transform 0.5s ease-in-out;
}

.section {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    color: white;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
                 0 0 20px rgba(255, 255, 255, 0.6), 
                 0 0 30px rgba(255, 255, 255, 0.4); /* Эффект свечения */
}

#s1 { background: radial-gradient(circle, rgba(189,202,114,1) 0%, rgba(139,175,85,1) 100%); }
#s2 { background: radial-gradient(circle, rgba(61,134,154,1) 0%, rgba(17,97,133,1) 100%); }
#s3 { background-image: radial-gradient(farthest-corner at 50% bottom, #eaa105 0%, #fcdb65 100% ); }
#s4 { background: url('../bg/background4.jpg') no-repeat center center / auto 100%, #96c93d; }
#s5 { background: url('../bg/background5.jpg') no-repeat center center / auto 100%, #f7d794; }


.nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 2px solid white;
    border-radius: 25px; /* Скругленные углы по всему периметру */
    background: rgba(255, 255, 255, 0.3);
    padding: 0 10px;
    z-index: 100;
}

.dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 15px;
    height: 15px;
    background: white;
}



/* Стили для модального окна */
.modal {
    display: none; /* Скрыто по умолчанию */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Затемненный фон */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.modal-content h2 {
    font-size: 1.8rem;
    color: #1A3C5A;
    margin-bottom: 15px;
}

.modal-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ff6b6b;
}




.main1, .main2, .main3 {
    display: grid;
    width: 90%;
    height: 100%;
    max-width: 1000px;
    padding: 15px;
    padding-bottom: 5%;
    align-content: space-between;
}

.main1 {
    background: url('../bg/background1.png') no-repeat center center / 100%
}


.main2-text {
grid-area: h2text;
grid-column: 1 / 4;
width: 100%;
}

.main2 {
    justify-items: center;
    background: url('../bg/background2.png') no-repeat center center / 100%;
    grid-template-areas:
      "top"
      "h2text"
      "center bottom"
}

.main3 {
    background: url('../bg/background3.png') no-repeat center center / 100%
}

/*
.main3 {
    display: grid;
    width: 90%;
    height: 80%;
    max-width: 1000px;
    padding: 15px;
    margin-top: 30px;
    align-content: space-between;
    padding: 20px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

*/

.glass-block {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);

}

h1 {
    font-size: 2rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
                 0 0 20px rgba(255, 255, 255, 0.6), 
                 0 0 30px rgba(255, 255, 255, 0.4); /* Эффект свечения */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.glass-block-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    grid-column: 1 / 4;
}

.neumo-buttons {
    display: flex;
    gap: 10px;
}

.neumo-button {
    width: 40px;
    height: 40px;
    background: #e0e5ea;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.neumo-button img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.neumo-button:hover {
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25), -3px -3px 6px rgba(255, 255, 255, 0.9);
}

.glass-block-footer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 1);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin-top: 10px;
    text-align: left;
    width: 100%;
}

.icon-row {
    display: flex;
    margin-top: 10px;
    width: 100%;
}

.icon-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
    color: white;
}

.icon-item img {
    width: 1.5rem; /* Размер иконки соответствует размеру текста */
    height: 1.5rem;
    filter: brightness(0) invert(1);
}

.icon-item span {
    font-size: 0.8rem; 
    color: rgba(255, 255, 255, 1);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin-left: 10px;
}

.social {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 1rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
                 0 0 20px rgba(255, 255, 255, 0.6), 
                 0 0 30px rgba(255, 255, 255, 0.4); /* Эффект свечения */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.social a {
    margin: auto;
}

.social img {
    width: 50px; /* Размер иконок */
    height: 50px;
    transition: transform 0.3s ease; /* Плавное увеличение при наведении */
}

.social img:hover {
    transform: scale(1.2); /* Увеличение при наведении */
}


table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

td {
    padding: 5px;
    border-bottom: 1px solid white;
}

tr:last-child td {
            border-bottom: none;
}





/* Calendar  Slide 2*/


.calendar-container {
    width: auto;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-header h2 {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.calendar-header button {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.calendar-header button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.calendar div {
    padding: 10px;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar .day {
    border-radius: 5px;
}

.calendar .day:hover:not(.booked):not(.past) {
    background: rgba(255, 255, 255, 0.1);
}

.calendar .today { /* Белый фон */
    border: solid white 1px;
    color: #333; /* Тёмный текст для контраста */
}

.calendar .booked {
    background: rgba(255, 182, 193, 0.3); /* Пастельный красный фон */
    box-shadow: 0 0 10px rgba(255, 182, 193, 0.5); /* Лёгкая подсветка */
    color: #ff6b6b; /* Цвет текста */
    pointer-events: none; /* Нельзя кликать на занятые дни */
}

.calendar .past {
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none; /* Нельзя кликать на прошедшие дни */
}

.calendar .empty {
    background: none;
    pointer-events: none;
}




/*    Slide 3 */



.booking-form {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.booking-form h2 {
    font-size: 1rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    color: white;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: border 0.3s ease;
}

.form-group input:focus {
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-button {
    width: 100%;
    padding: 12px;
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: rgba(255, 255, 255, 0.5);
}