/* ===== HERO ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero__content {
    padding-top: var(--header-height);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 30px 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(200, 90, 63, 0.3);
}

.hero__title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: #fff;
    line-height: 1;
    margin: 0;
    letter-spacing: 6px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero__subtitle {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--terracotta);
    margin: 0;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero__separator {
    width: 60px;
    height: 2px;
    background: var(--terracotta);
    margin: 8px 0;
}

.hero__description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin: 5px 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero__hours {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    color: #fff;
    background: rgba(200, 90, 63, 0.2);
    padding: 6px 15px;
    border: 1px solid rgba(200, 90, 63, 0.5);
    letter-spacing: 1.5px;
    margin-bottom: 5px;
     line-height: 1.6;
}
.hero__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

.hero__logo img {
    height: 120px;
    width: auto;
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(200, 90, 63, 0.4));
    transition: filter 0.3s ease;
}

.hero__logo img:hover {
    filter: brightness(1.2) drop-shadow(0 0 30px rgba(200, 90, 63, 0.6));
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .hero__description {
        font-size: 0.95rem;
    }
    
    .hero__hours {
        font-size: 1rem;
    }
    
    .hero__content {
        padding: 25px 30px;
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 2.8rem;
    }
    
    .hero__content {
        padding: 20px 25px;
        max-width: 90%;
    }
}

/* ===== INTRO ===== */
.intro__text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    text-align: center;
    color: #bbb;
    line-height: 1.8;
    font-weight: 300;
     padding: 0 10px;
}

/* ===== SERVICES ===== */
.services {
    background-color: #111;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.service__card {
    background-color: transparent;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service__card:hover {
    border-color: var(--dark-red);
    transform: translateY(-5px);
    background-color: rgba(139, 0, 0, 0.05);
}

.service__icon {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service__card:hover .service__icon {
    color: var(--dark-red);
}

.service__title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.service__card:hover .service__title {
    color: var(--terracotta);
}

.service__card p {
    color: #aaa;
    font-weight: 300;
    font-size: 1.25rem;
}

/* ===== MENU PREVIEW ===== */
.preview__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.preview__item {
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.preview__item:hover {
    transform: translateY(-10px);
    border-color: var(--dark-red);
}

.preview__image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
     aspect-ratio: 16/9;
}

.preview__item:hover .preview__image {
    transform: scale(1.05);
}

.preview__content {
    padding: 20px 15px;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.preview__content h3 {
    font-size: 1.3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.preview__item:hover .preview__content h3 {
    color: var(--terracotta);
}

.preview__price {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}
/* ===== LOCATION SECTION ===== */
.location-section {
    background-color: #111;
    padding: 80px 0;
}

.location__map {
    max-width: 800px;
    margin: 0 auto;
}

.location__map iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: 2px solid rgba(200, 90, 63, 0.2);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.location__map iframe:hover {
    border-color: var(--terracotta);
    box-shadow: 0 10px 25px rgba(200, 90, 63, 0.2);
}

.location__info {
    text-align: center;
    padding: 20px;
}

.location__info p {
    color: #bbb;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.location__info i {
    color: var(--terracotta);
    margin-right: 8px;
}
@media (max-width: 992px) {
    .preview__image {
        height: 220px;
    }
}
@media (max-width: 768px) {
    .location__map iframe {
        height: 300px;
    }
     .services__grid,
    .preview__grid{
        grid-template-columns: 1fr; /* На мобільних одна колонка */
    }
    .preview__image {
        height: 200px;
    }
}
