/* Базові стилі */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2c1810;
    background-color: #fff9f5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Навігація */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(255, 249, 245, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    border-bottom: 1px solid #f5d5c5;
    z-index: 100;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #c0392b;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #2c1810;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c0392b;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #fff0eb 0%, #ffd5c8 50%, #ffb5a0 100%);
    padding: 100px 40px;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: #c0392b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 20px;
    color: #5c3d35;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 57, 43, 0.3);
}

.btn-primary {
    background-color: #c0392b;
    color: white;
}

.btn-secondary {
    background-color: white;
    color: #c0392b;
    border: 2px solid #c0392b;
}

/* Заголовки секцій */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #c0392b;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #5c3d35;
    font-size: 16px;
    margin-bottom: 48px;
}

section {
    padding: 80px 0;
}

/* Футер */
.footer {
    background-color: #2c1810;
    color: #f5d5c5;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #f5d5c5;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}
.logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #c0392b;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 50%;
}
/* Про нас — цифри */
.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 48px;
    padding: 40px;
    background: linear-gradient(135deg, #fff0eb, #ffd5c8);
    border-radius: 20px;
}

.stat {
    text-align: center;
    flex: 1 1 150px;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #c0392b;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #5c3d35;
}

/* Текст про нас */
.about-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #2c1810;
}
/* Чому ми */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #f5d5c5;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(192, 57, 43, 0.15);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #c0392b;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    color: #5c3d35;
    line-height: 1.6;
}
/* Як це працює */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 180px;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #c0392b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #c0392b;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: #5c3d35;
    line-height: 1.6;
}

.step-arrow {
    font-size: 30px;
    color: #c0392b;
    flex-shrink: 0;
    margin-top: 14px;
}
/* Вкладки */
.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab {
    padding: 12px 28px;
    border: 2px solid #c0392b;
    background: white;
    color: #c0392b;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.tab:hover {
    background: #fff0eb;
}

.tab.active {
    background: #c0392b;
    color: white;
}

/* Вміст вкладок */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Сітка меню */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.menu-card {
    background: white;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #f5d5c5;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(192, 57, 43, 0.12);
}

.menu-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.menu-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #2c1810;
    margin-bottom: 10px;
}

.menu-card p {
    font-size: 14px;
    color: #5c3d35;
    line-height: 1.6;
    margin-bottom: 16px;
}

.price {
    display: inline-block;
    background: #fff0eb;
    color: #c0392b;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}
.menu-note {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #c0392b;
    background: #fff0eb;
    padding: 12px 20px;
    border-radius: 12px;
}
/* Галерея */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(192, 57, 43, 0.85));
    color: white;
    padding: 20px 16px 16px;
    transform: translateY(100%);
    transition: transform 0.3s;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}
/* Відгуки */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #f5d5c5;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(192, 57, 43, 0.12);
}

.review-stars {
    font-size: 18px;
}

.review-text {
    font-size: 15px;
    color: #5c3d35;
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-name {
    font-weight: 500;
    color: #2c1810;
    font-size: 15px;
}

.review-date {
    font-size: 13px;
    color: #c0392b;
}
/* Ціни */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.price-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #f5d5c5;
}

.price-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #fff0eb;
}

.price-icon {
    font-size: 32px;
}

.price-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #c0392b;
}

.price-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #2c1810;
    padding-bottom: 12px;
    border-bottom: 1px dashed #f5d5c5;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-val {
    color: #c0392b;
    font-weight: 500;
    white-space: nowrap;
}

.price-note {
    margin-top: 16px;
    font-size: 13px;
    color: #c0392b;
    font-style: italic;
}

/* Умови */
.price-conditions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    background: linear-gradient(135deg, #fff0eb, #ffd5c8);
    border-radius: 16px;
    padding: 28px;
}

.condition {
    display: flex;
    align-items: center;
    gap: 12px;
}

.condition-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.condition p {
    font-size: 15px;
    color: #2c1810;
    line-height: 1.5;
}
/* Контакти */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #f5d5c5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-card.highlight {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: white;
    border: none;
}

.contact-card.highlight h3 {
    color: white;
}

.contact-icon {
    font-size: 48px;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #c0392b;
}

.contact-card p {
    font-size: 15px;
    color: #5c3d35;
    line-height: 1.6;
}

.contact-card.highlight p {
    color: rgba(255,255,255,0.9);
}

.order-steps {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-steps li {
    font-size: 15px;
    color: rgba(255,255,255,0.95);
    padding: 8px 12px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
}

.hours-list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #2c1810;
    padding-bottom: 10px;
    border-bottom: 1px dashed #f5d5c5;
}

.contact-note {
    font-size: 13px;
    color: #c0392b;
    font-style: italic;
}
/* ===== АДАПТИВНІСТЬ ===== */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    /* Hero */
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-text {
        font-size: 16px;
    }

    /* Контейнер */
    .container {
        padding: 0 16px;
    }

    /* Секції */
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    /* Статистика */
    .stats {
        padding: 24px;
        gap: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    /* Чому ми */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Кроки */
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    /* Меню */
    .menu-grid {
        grid-template-columns: 1fr;
    }

    /* Галерея */
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Відгуки */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Ціни */
    .price-grid {
        grid-template-columns: 1fr;
    }

    .price-conditions {
        grid-template-columns: 1fr;
    }

    /* Контакти */
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    /* Футер */
    .footer {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
}

/* Для дуже маленьких екранів */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 28px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* Кнопка вгору */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #c0392b;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #a93226;
    transform: translateY(-3px);
}

.about-section {
    position: relative;
    overflow: hidden; /* Щоб іконка не вилазила за межі секції */
}