/* Стили для главной страницы (Index CSS) */

.section {
    padding: 100px 0;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}
.section-title.center {
    text-align: center;
    margin-bottom: 50px;
}
.bg-light {
    background-color: var(--color-bg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 85px; 
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05); /* Легкий зум для эффекта глубины */
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Тёмно-коричневый оверлей для читаемости */
    background: linear-gradient(to right, rgba(62, 39, 35, 0.9) 0%, rgba(62, 39, 35, 0.5) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 700px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 163, 115, 0.2);
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid var(--color-accent);
    margin-bottom: 25px;
    color: var(--color-accent);
    font-weight: 500;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
}
.hero-title .highlight {
    color: var(--color-accent);
    font-size: 3rem;
    font-style: italic;
    display: block;
    margin-top: 5px;
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
}
.img-main {
    border-radius: 4px;
    box-shadow: var(--shadow);
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-primary);
    color: #fff;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 8px solid #fff;
    box-shadow: var(--shadow);
}
.experience-badge span {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.experience-badge small {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}
.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}
.features-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-secondary);
}
.feature-item svg {
    width: 30px;
    height: 30px;
    color: var(--color-accent);
}

/* Services / Menu Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px);
}
.service-img {
    position: relative;
    height: 250px;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-primary);
    color: #fff;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}
.service-content p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Highlight Card (Banquets) */
.highlight-card {
    border: 2px solid var(--color-accent);
}

/* Text Only Card */
.text-only {
    background: var(--color-secondary);
    color: #fff;
    justify-content: center;
}
.text-only .service-content h3 {
    color: var(--color-accent);
}
.text-only .service-content p {
    color: #ddd;
}
.service-icon {
    width: 50px;
    height: 50px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

/* Reviews Section */
.reviews {
    background-image: url('photo_5.jpg'); /* Легкий фон на подложке */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: #fff;
}
.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 39, 35, 0.9);
}
.reviews .container {
    position: relative;
    z-index: 2;
}
.reviews .section-title {
    color: var(--color-accent);
}
.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    min-height: 250px;
}
.review-card {
    display: none;
    animation: fadeIn 0.6s ease;
}
.review-card.active {
    display: block;
}
.review-stars {
    color: var(--color-accent);
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.review-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.4;
}
.review-author {
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.slider-btn {
    background: transparent;
    border: 2px solid var(--color-accent);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--color-accent);
    transition: var(--transition);
}
.slider-btn:hover {
    background: var(--color-accent);
    color: var(--color-secondary);
}

/* Contacts Section */
.contacts-wrapper {
    display: flex;
    gap: 60px;
    background: #fff;
    border-radius: 4px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.contacts-info {
    padding: 60px;
    flex: 1;
}
.contacts-list {
    margin-top: 30px;
}
.contacts-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #444;
}
.contacts-list svg {
    width: 26px;
    height: 26px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.phones a {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--color-secondary);
}
.phones a small {
    font-weight: 400;
    color: #888;
}
.phones a:hover, .vk-link:hover {
    color: var(--color-primary);
}
.vk-link {
    font-weight: 600;
    color: #4a76a8;
}
.contacts-image {
    flex: 1;
    min-height: 400px;
}
.facade-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Адаптив */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .hero-title .highlight { font-size: 2.2rem; }
    .about-grid { grid-template-columns: 1fr; }
    .experience-badge { bottom: 20px; right: 20px; }
    .contacts-wrapper { flex-direction: column; }
    .contacts-info { padding: 40px 20px; }
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.8rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .section { padding: 60px 0; }
    .review-text { font-size: 1.4rem; }
}