/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Шапка */
.header {
    background-color: #e08e8f;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Логотип */
.logo-img {
    height: 100px;
    width: auto;
}

/* Навигация */
.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #fff5f5;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero секция */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 80vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 40px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #e08e8f;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #e08e8f;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #d17a7b;
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-list {
        gap: 20px;
    }

    .nav-link {
        font-size: 16px;
    }
}

/* Стили для подвала */
.footer {
    background-color: #e08e8f;
    padding: 30px 0;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer p {
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.footer p:first-child {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer p:last-child {
    font-size: 12px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Адаптивность для подвала */
@media (max-width: 768px) {
    .footer {
        padding: 20px 0;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer p:first-child {
        font-size: 14px;
    }

    .footer p:last-child {
        font-size: 11px;
    }
}

