@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #0d0d0d;
    --gold: #D4AF37;
    --gold-hover: #F3E5AB;
    --text-light: #f5f5f5;
    --text-dark: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Шапка */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    color: var(--gold);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hours-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hours-text {
    font-size: 14px;
    color: #ccc;
}

.status {
    font-weight: 600;
    font-size: 16px;
    margin-top: 5px;
}

/* Кнопки */
.btn-gold {
    background-color: var(--gold);
    color: var(--text-dark);
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.w-100 {
    width: 100%;
    margin-top: 15px;
}

/* Секция карточек */
main {
    padding: 50px;
}

.cards-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 22px;
}

.card-content p {
    color: #bbb;
    line-height: 1.6;
    font-size: 15px;
}

/* Прайс-лист */
.pricing-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.pricing-card img {
    flex: 1;
    min-width: 300px;
    object-fit: cover;
}

.pricing-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-content h2 {
    color: var(--gold);
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
}

.price-item {
    margin-bottom: 25px;
}

.price-title {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
}

.price-desc {
    display: block;
    font-weight: 300;
    font-size: 14px;
    color: #aaa;
}

/* Футер */
footer {
    text-align: center;
    padding: 40px;
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-love {
    color: var(--gold);
    font-size: 18px;
    margin-top: 20px;
    font-weight: 600;
}

/* Модальное окно и Жидкое стекло (Glassmorphism) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.glass {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.show .glass {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: var(--gold);
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #fff;
}

.glass h2 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 25px;
}

/* Поля ввода */
.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    border: none;
    border-bottom: 1px solid #777;
    outline: none;
    background: transparent;
    transition: 0.3s;
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #aaa;
    font-size: 16px;
    pointer-events: none;
    transition: 0.3s;
}

.input-group input:focus,
.input-group input:not(:placeholder-shown) {
    border-bottom-color: var(--gold);
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
    top: -15px;
    font-size: 12px;
    color: var(--gold);
}

input[type="date"], input[type="time"] {
    color: #aaa;
}
input[type="date"]:focus, input[type="time"]:focus {
    color: #fff;
}