/* styles.css - Турецкие сладости стиль: баклава, локум, шафраново-медовые тона, изумруд и золото */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@300;400;500;600&display=swap');
/* Если строго нельзя Google Fonts — раскомментируй ниже и удали строку выше */
/*
@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Light.woff2') format('woff2');
    font-weight: 300;
    src: url('fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    src: url('fonts/Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    src: url('fonts/Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 600;
}
*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    max-width: 1090px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fff8e1 0%, #fff0d0 100%);
    background-attachment: fixed;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0 0 20px;
}

.container {
    width: 90%;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== БЛОК 1 - ГЕРОЙ ==================== */
.hero {
    min-height: 470px;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('https://images.unsplash.com/photo-1606890737304-395453aa9d14?ixlib=rb-4.0.3&auto=format&fit=crop&q=80') center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Кнопки общего стиля */
.btn-primary {
    display: inline-block;
    background: #d4a373; /* золотисто-медовый */
    color: #2c1a0a;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(212, 163, 115, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #d4a373;
}

.btn-primary:hover {
    background: #fff;
    color: #d4a373;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.5);
}

/* ==================== ОБЩИЕ СЕКЦИИ ==================== */
.section {
    padding: 80px 0;
}

/* Чередование цветов блоков в стиле турецких сладостей */
.section:nth-child(odd) {
    background: #fff8e1; /* светлый медово-ванильный */
    color: #2c1a0a;
}

.section:nth-child(even) {
    background: #2a3b3a; /* глубокий изумрудно-бирюзовый */
    color: #fff8e1;
}

/* ==================== ПАКЕТЫ ==================== */
.package-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.package {
    background: rgba(255,255,255,0.15);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 2px solid #d4a373;
    transition: transform 0.3s;
}

.package:hover {
    transform: translateY(-10px);
}

.package h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d4a373;
}

.package strong {
    font-size: 32px;
    color: #ff6b6b;
}

/* ==================== КОМАНДА ==================== */
.team-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.member {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #d4a373;
}

/* ==================== СТАТЬЯ ==================== */
.article {
    background: linear-gradient(135deg, #fff1e6 0%, #ffe4c4 100%) !important;
    border: 3px solid #d4a373;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(212, 163, 115, 0.3);
}

.article h2 {
    font-size: 36px;
    text-align: center;
    color: #8b4513;
    position: relative;
}

.article h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: #d4a373;
    margin: 20px auto;
    border-radius: 2px;
}

/* ==================== ФОРМА ==================== */
.subscribe form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.subscribe input[type="email"] {
    padding: 18px 24px;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    background: rgba(255,255,255,0.95);
    box-shadow: inset 0 3px 10px rgba(0,0,0,0.1);
}

.subscribe button {
    cursor: pointer;
}

/* ==================== ОТЗЫВЫ ==================== */
.review-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review {
    background: rgba(255,255,255,0.2);
    padding: 25px;
    border-radius: 18px;
    font-style: italic;
    border-left: 6px solid #d4a373;
}

.review strong {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: #d4a373;
}

/* ==================== КАРТА ==================== */
.map iframe {
    border-radius: 20px;
    border: 4px solid #d4a373;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ==================== ФУТЕР ==================== */
.footer {
    background: #1e2d2c;
    color: #fff8e1;
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
}

/* ==================== МОБИЛЬНАЯ АДАПТАЦИЯ ==================== */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .package-list,
    .team-list,
    .review-list {
        grid-template-columns: 1fr;
    }

    .subscribe form {
        padding: 0 20px;
    }

    .btn-primary {
        padding: 16px 30px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 30px;
    }

    .article h2 {
        font-size: 28px;
    }
}
