/* ===== ОБЩИЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B4513;
    --secondary: #D2691E;
    --accent: #FFD700;
    --background: #FFF8E7;
    --text: #333333;
    --text-light: #666666;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
}

/* ===== ШАПКА ===== */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.nav-menu a:hover {
    color: var(--primary);
}

.phone-link {
    color: var(--primary) !important;
    font-weight: 700;
}

.phone-link i {
    margin-right: 8px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* ===== ГЛАВНЫЙ ЭКРАН ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 180px 0 100px;
    margin-top: 80px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== О НАС ===== */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.features {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.feature i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== МЕНЮ ===== */
.menu-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 10px 25px;
    background: none;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background-color: var(--primary);
    color: white;
}

.tab-btn:hover:not(.active) {
    background-color: rgba(139, 69, 19, 0.1);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px dashed #ddd;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 5px;
}

.item-price {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.2rem;
}

.download-menu {
    display: inline-block;
    margin-top: 40px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s;
}

.download-menu:hover {
    background-color: var(--primary);
    color: white;
}

.download-menu i {
    margin-right: 8px;
}

/* ===== ГАЛЕРЕЯ ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* ===== КОНТАКТЫ ===== */
.contact-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info, .reservation-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3, .reservation-form h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--secondary);
    margin-right: 10px;
    width: 20px;
}

.contact-info a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.map {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.reservation-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

.reservation-form button {
    align-self: flex-start;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===== ПОДВАЛ ===== */
.footer {
    background-color: var(--primary);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo .logo {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links p {
    opacity: 0.8;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-menu.show {
        right: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content, .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .features {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.popular-items {
    background-color: #fff;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.popular-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.popular-card:hover {
    transform: translateY(-10px);
}

.popular-img {
    height: 200px;
    overflow: hidden;
}

.popular-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-info {
    padding: 20px;
}

.popular-info h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.popular-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.popular-info .price {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.2rem;
}

.text-center {
    text-align: center;
}

/* О нас (превью) */
.about-preview {
    background-color: var(--background);
}

.about-preview-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-preview-text {
    flex: 1;
    min-width: 300px;
}

.about-preview-image {
    flex: 1;
    min-width: 300px;
}

.about-preview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Преимущества */
.features {
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

/* Галерея превью */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Страница "О нас" */
.page-header {
    background: linear-gradient(rgba(139, 69, 19, 0.9), rgba(139, 69, 19, 0.8)),
                url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.bg-light {
    background-color: var(--background);
}

.our-story {
    padding-top: 100px;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 10px;
}

.image-caption {
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    font-size: 0.9rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.philosophy-card {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.philosophy-icon i {
    font-size: 1.8rem;
    color: white;
}

.philosophy-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.team {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--background);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.member-role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.95rem;
}

.values-content {
    max-width: 800px;
    margin: 0 auto;
}

.value-item {
    margin-bottom: 30px;
    padding-left: 70px;
    position: relative;
}

.value-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.value-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.fact-item {
    padding: 30px 20px;
}

.fact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.fact-text {
    color: var(--text);
    font-size: 1.1rem;
}

.cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background-color: white;
    color: var(--primary);
}

.cta .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta .btn-secondary:hover {
    background-color: white;
    color: var(--primary);
}

/* Flash сообщения */
.flash-messages {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
}

.flash {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.flash-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.flash-error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.flash-warning {
    background-color: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.flash-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

.flash-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    margin-left: 10px;
}

.flash-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .story-content,
    .about-preview-content {
        flex-direction: column;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .value-item {
        padding-left: 50px;
    }

    .value-number {
        font-size: 2rem;
    }
}

/* ===== СТИЛИ ДЛЯ ГАЛЕРЕИ ===== */
.gallery-filters {
    background-color: var(--background);
    padding: 30px 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background: none;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active {
    background-color: var(--primary);
    color: white;
}

.filter-btn:hover:not(.active) {
    background-color: rgba(139, 69, 19, 0.1);
}

.main-gallery {
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.gallery-load-more {
    text-align: center;
    margin-top: 40px;
}

/* Модальное окно галереи */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}

.modal-info {
    background: white;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    margin-top: -5px;
}

.modal-info h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-prev {
    left: -60px;
}

.modal-next {
    right: -60px;
}

/* ===== СТИЛИ ДЛЯ КОНТАКТОВ ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.contact-card p {
    margin-bottom: 5px;
}

.contact-card a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--primary);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
}

.contact-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.map-section,
.contact-form-section {
    flex: 1;
    min-width: 300px;
}

.map-container {
    margin-bottom: 30px;
}

.transport-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--background);
    border-radius: 10px;
}

.transport-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.transport-item h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-form-section .form-group {
    margin-bottom: 20px;
}

.contact-form-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.contact-form-section input,
.contact-form-section select,
.contact-form-section textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form-section input:focus,
.contact-form-section select:focus,
.contact-form-section textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.social-card {
    display: block;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s;
}

.social-card:hover {
    transform: translateY(-10px);
    color: white;
}

.social-card.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-card.vk {
    background: linear-gradient(45deg, #4C75A3, #5B7FA6);
}

.social-card.telegram {
    background: linear-gradient(45deg, #0088cc, #00aced);
}

.social-card.youtube {
    background: linear-gradient(45deg, #FF0000, #FF3333);
}

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.social-card h3 {
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.social-desc {
    margin-top: 10px;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--background);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    background: white;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

/* ===== СТИЛИ ДЛЯ БРОНИРОВАНИЯ ===== */
.reservation-progress {
    background: var(--background);
    padding: 20px 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.progress-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.5;
    transition: all 0.3s;
}

.progress-step.active {
    opacity: 1;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60px;
    right: -40px;
    height: 2px;
    background: #ddd;
    z-index: -1;
}

.progress-step.active:not(:last-child)::after {
    background: var(--primary);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.progress-step.active .step-number {
    background: var(--primary);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.progress-step.active .step-label {
    color: var(--primary);
}

.reservation-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.reservation-form-card {
    flex: 2;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reservation-info {
    flex: 1;
    min-width: 300px;
}

.form-title {
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--background);
    font-family: 'Playfair Display', serif;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

.guests-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guest-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    background: none;
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.guest-btn:hover {
    background: var(--primary);
    color: white;
}

.guests-selector input {
    width: 60px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.guests-label {
    color: var(--text-light);
}

.date-hint,
.time-hint {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.reservation-note {
    margin-top: 30px;
    padding: 15px;
    background: var(--background);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.reservation-note i {
    color: var(--primary);
    margin-right: 10px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
}

.info-card h3 i {
    color: var(--secondary);
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.working-hours li:last-child {
    border-bottom: none;
}

.rules-list {
    list-style: none;
    padding-left: 0;
}

.rules-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.rules-list li:before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
}

.special-offers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offer-item {
    padding: 15px;
    background: var(--background);
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.offer-item h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.offer-price {
    display: block;
    margin-top: 10px;
    font-weight: 700;
    color: var(--secondary);
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-phone {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin: 10px 0;
}

.contact-email {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Адаптивность */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    .progress-steps {
        gap: 20px;
    }

    .progress-step:not(:last-child)::after {
        left: 40px;
        right: -20px;
    }

    .step-label {
        font-size: 0.8rem;
    }

    .reservation-form-card {
        padding: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .step-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .step-buttons button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        height: 250px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .progress-steps {
        gap: 10px;
    }

    .progress-step:not(:last-child)::after {
        display: none;
    }
}