body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #0c0c0c;
    color: #fff;
    scroll-behavior: smooth;
}

/* HEADER */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0,0,0,0.92);
    padding: 10px 30px; /* <-- чуть больше слева/справа, чтобы меню правее сместилось влево на десктопе (исправляет частичную видимость "Запись") */
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,215,0,0.3);
}

.logo img {
    height: 50px;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: gold;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    transition: 0.3s;
}

nav a:hover {
    text-shadow: 0 0 10px gold;
    color: #fff;
}

/* Золотые ссылки для телефона и телеграмма */
.gold-link {
    color: gold;
    text-decoration: none;
    font-weight: bold;
}




.glow {
    text-shadow: 0 0 25px gold, 0 0 50px gold;
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 10px gold; }
    50% { text-shadow: 0 0 30px gold; }
    100%{ text-shadow: 0 0 10px gold; }
}

.section-divider {
    border: none;
    height: 3px;
    background: linear-gradient(to right, #000, gold, #000);
    margin: 60px 0;
}

/* SERVICES */
#services {
    padding: 50px 20px;
    text-align: center;
}

.services-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-item {
    width: 240px;
    padding: 20px;
    background: #151515;
    border-radius: 15px;
    transition: 0.3s;
}

.glow-box:hover {
    box-shadow: 0 0 20px gold;
    transform: scale(1.05);
}

.icon {
    font-size: 40px;
}

/* PORTFOLIO */
#portfolio {
    padding: 50px 20px;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}

.portfolio-item img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}

.portfolio-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px gold;
}

/* CONTACTS */
#contacts {
    padding: 50px 20px;
    text-align: center;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    margin-top: 20px;
}

/* BOOKING */
#booking {
    text-align: center;
    padding: 40px 20px;
}

#booking-form {
    max-width: 400px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#booking-form input,
#booking-form select,
#booking-form button {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid gold;
    background: #1a1a1a;
    color: gold;
}

/* украшаем datetime-local */
#datetime {
    background: #1a1a1a;
    color: gold;
    font-size: 16px;
}

#datetime::placeholder {
    color: gold;
    opacity: 0.7;
}


#booking-form button {
    background: gold;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

#booking-form button:hover {
    transform: scale(1.07);
}

/* FLOATING BUTTONS */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1500;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #111;
    border: 2px solid gold;
    color: gold;
    transition: 0.25s;
}

.float-btn:hover {
    box-shadow: 0 0 20px gold;
    transform: scale(1.1);
}

/* FOOTER - выравнивание по центру (исправлено) */
footer p {
    text-align: center;
    padding: 15px 0;
    color: #aaa;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    

    nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: #111;
        width: 200px;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        display: none;
    }

    nav.show {
        display: flex;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 540px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}


@media (min-width: 769px) {

    header {
        padding: 10px 15px;
    }


    }

    nav a {
        font-size: 18px;
        padding: 10px 30px;
        white-space: nowrap;
        max-width: 100%;
    }



.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.big-logo {
    height: 70px; /* ЛОГО КРУПНЕЕ */
}

.header-title {
    font-size: 38px;
    font-weight: bold;
    color: gold;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}


.hero {
    min-height: 100vh; /* корректно для телефонов */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    background: url('./img/hero.jpg') center/cover no-repeat;
    position: relative;
}

/* Тёмная подложка за текстом */
.hero-text {
    background: rgba(0, 0, 0, 0.55);
    padding: 20px 30px;
    border-radius: 15px;
    max-width: 750px;
    text-align: left;
    backdrop-filter: blur(4px);
    animation: fadeIn 1.2s ease;
}

/* Заголовок HERO */
.hero-text h2 {
    font-size: 26px;
    margin-bottom: 50px;
    color: gold;
    text-shadow: 0 0 18px gold;
}

/* Пункты */
.hero-text p {
    font-size: 20px;
    margin: 25px 0;
    color: #fff;
    text-shadow: 0 0 8px black;
}

/* Анимация появления */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* На телефонах */
@media (max-width: 540px) {
    .hero-text {
        max-width: 90%;
        padding: 20px;
    }
    .hero-text h2 {
        font-size: 22px;
    }
    .hero-text p {
        font-size: 16px;
    }
}

/* -- Красивые ценники -- */
.price-tag {
    font-size: 22px;
    font-weight: bold;
    color: gold;
    margin: 10px 0 15px;
    text-shadow: 0 0 10px gold, 0 0 18px gold;
    border: 1px solid gold;
    padding: 6px 12px;
    display: inline-block;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.35);
}

.about-photos {
    margin-top: 150px; /* безопасный отступ для Android + iOS */
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}



.about-photos img {
    width: 30%;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255,215,0,0.35);
}
