.hero {
    background: #ff6b6b;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.categories {
    padding: 80px 0;
    background: white;
}

.categories-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.category-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 200px;
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.category-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.featured-recipes {
    padding: 80px 0;
    background: #f8f9fa;
}

.recipes-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.recipe-card {
    background: white;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.recipe-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.recipe-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 20px 0;
    padding: 0 20px;
}

.recipe-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.benefits {
    padding: 80px 0;
    background: white;
}

.benefits-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    width: 250px;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.benefit-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cta {
    background: #667eea;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #ff6b6b;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.recipes-button {
    text-align: center;
    margin-top: 50px;
}






/* Карусель рецептов */
.carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 50px;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.3s ease;
    gap: 30px;
}

.carousel-recipe {
    flex: 0 0 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.carousel-recipe-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.carousel-recipe-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 20px 0;
    padding: 0 20px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 10;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: white;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-indicator.active {
    background: #ff6b6b;
}