/* ===================================
   CSS VARIABLES
   =================================== */
:root {
    /* Colors - Turkish/Mediterranean Palette */
    --primary-color: #c92127;
    --primary-dark: #9e1a1f;
    --primary-light: #e64449;
    --secondary-color: #fdb927;
    --secondary-dark: #e0a520;

    /* Neutral Colors */
    --dark: #1a1a1a;
    --dark-gray: #2d2d2d;
    --medium-gray: #555555;
    --light-gray: #e0e0e0;
    --lighter-gray: #f5f5f5;
    --white: #ffffff;

    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-light: #ffffff;

    /* Accent Colors */
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;

    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --gap-small: 15px;
    --gap-medium: 30px;
    --gap-large: 50px;

    /* Border Radius */
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 16px;

    /* Shadows */
    --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index Layers */
    --z-navbar: 1000;
    --z-lightbox: 2000;
    --z-scroll-top: 999;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-small);
    z-index: var(--z-navbar);
    transition: var(--transition-medium);
}

.navbar.scrolled {
    box-shadow: var(--shadow-medium);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.navbar__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 3px;
    transition: var(--transition-fast);
}

.navbar__menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.navbar__link {
    font-weight: 500;
    color: var(--text-primary);
    padding: 8px 0;
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 100%;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__image-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__slide.active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 33, 39, 0.85) 0%, rgba(26, 26, 26, 0.85) 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    padding: 100px 20px 50px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__rating {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: var(--radius-large);
    backdrop-filter: blur(10px);
}

.rating__stars {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.rating__value {
    font-size: 1.2rem;
    font-weight: 600;
}

.rating__count {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero__badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.badge {
    padding: 8px 16px;
    border-radius: var(--radius-large);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.badge--price {
    background-color: rgba(253, 185, 39, 0.2);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.badge--casual {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--white);
}

.badge--late {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid var(--success);
    color: var(--success);
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.btn {
    padding: 15px 40px;
    border-radius: var(--radius-medium);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-medium);
    display: inline-block;
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 33, 39, 0.4);
}

.btn--primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 33, 39, 0.5);
}

.btn--secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn--secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--white);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.hero__scroll-icon {
    width: 24px;
    height: 36px;
    border: 2px solid var(--white);
    border-radius: 12px;
    margin: 10px auto 0;
    position: relative;
}

.hero__scroll-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    background-color: var(--lighter-gray);
}

.about__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-medium);
    text-align: center;
    box-shadow: var(--shadow-small);
    transition: var(--transition-medium);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature__icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===================================
   MENU SECTION
   =================================== */
.menu {
    background-color: var(--white);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.menu-item {
    background-color: var(--white);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: var(--transition-medium);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.menu-item__image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-item:hover .menu-item__image {
    transform: scale(1.1);
}

.menu-item__content {
    padding: 20px;
}

.menu-item__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.menu-item__description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.menu-item__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item__price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.menu-item__badge {
    padding: 5px 12px;
    background-color: var(--secondary-color);
    color: var(--dark);
    border-radius: var(--radius-small);
    font-size: 0.85rem;
    font-weight: 600;
}

.menu__offerings {
    background-color: var(--lighter-gray);
    padding: 40px;
    border-radius: var(--radius-medium);
    text-align: center;
}

.menu__offerings-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.offerings-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.offering-badge {
    padding: 10px 20px;
    background-color: var(--white);
    border-radius: var(--radius-large);
    font-size: 0.95rem;
    box-shadow: var(--shadow-small);
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery {
    background-color: var(--lighter-gray);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery__item {
    position: relative;
    height: 250px;
    border-radius: var(--radius-medium);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-small);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery__item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(201, 33, 39, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item-icon {
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: var(--z-lightbox);
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    color: var(--white);
    font-size: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox__close {
    top: 20px;
    right: 20px;
}

.lightbox__prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background-color: var(--primary-color);
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews {
    background-color: var(--white);
}

.reviews__stats {
    margin-bottom: 50px;
}

.reviews__summary {
    background-color: var(--lighter-gray);
    padding: 40px;
    border-radius: var(--radius-medium);
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.reviews__average {
    text-align: center;
    flex: 0 0 200px;
}

.reviews__average-score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.reviews__average-stars {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.reviews__average-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.reviews__distribution {
    flex: 1;
    min-width: 300px;
}

.reviews__bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.reviews__bar-label {
    width: 30px;
    font-weight: 600;
    color: var(--text-secondary);
}

.reviews__bar {
    flex: 1;
    height: 12px;
    background-color: var(--light-gray);
    border-radius: 6px;
    overflow: hidden;
}

.reviews__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 6px;
}

.reviews__bar-count {
    width: 40px;
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.reviews__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.review-card {
    background-color: var(--lighter-gray);
    padding: 25px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
    transition: var(--transition-medium);
}

.review-card:hover {
    box-shadow: var(--shadow-medium);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-card__stars {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.review-card__date {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.review-card__text {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-card__details {
    border-top: 1px solid var(--light-gray);
    padding-top: 15px;
}

.review-card__badge {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--white);
    border-radius: var(--radius-small);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.review-card__ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.review-card__ratings span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.reviews__tags {
    text-align: center;
    background-color: var(--lighter-gray);
    padding: 30px;
    border-radius: var(--radius-medium);
}

.reviews__tags-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.reviews__tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tag {
    padding: 8px 16px;
    background-color: var(--white);
    border-radius: var(--radius-large);
    font-size: 0.9rem;
    color: var(--text-secondary);
    box-shadow: var(--shadow-small);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    background-color: var(--lighter-gray);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact__info-item {
    display: flex;
    gap: 20px;
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
}

.contact__info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact__info-text h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact__info-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.opening-hours__item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.opening-hours__day {
    font-weight: 600;
    color: var(--dark);
}

.opening-hours__time {
    color: var(--text-secondary);
}

.opening-hours__note {
    margin-top: 10px;
    color: var(--success);
    font-weight: 600;
}

.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-badge {
    padding: 8px 15px;
    background-color: var(--lighter-gray);
    border-radius: var(--radius-small);
    font-size: 0.9rem;
    color: var(--success);
    font-weight: 500;
}

.contact__busytimes {
    margin-top: 10px;
}

.contact__busytimes h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact__busytimes-live {
    padding: 10px 15px;
    background-color: var(--lighter-gray);
    border-radius: var(--radius-small);
    font-size: 0.9rem;
    color: var(--success);
    display: inline-block;
    margin-bottom: 15px;
}

.busytimes-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact__map {
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 100%;
    min-height: 450px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--dark);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.footer__tagline {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer__stars {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.footer__heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer__links a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer__info p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer__hours {
    margin-top: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    z-index: var(--z-scroll-top);
    transition: var(--transition-medium);
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet (768px - 1023px) */
@media screen and (max-width: 1023px) {
    .hero__title {
        font-size: 3rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact__content {
        grid-template-columns: 1fr;
    }

    .reviews__summary {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile (320px - 767px) */
@media screen and (max-width: 767px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-large);
        transition: var(--transition-medium);
    }

    .navbar__menu.active {
        left: 0;
    }

    .navbar__link {
        font-size: 1.2rem;
        padding: 15px 0;
    }

    .hero {
        min-height: 100vh;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .about__features {
        grid-template-columns: 1fr;
    }

    .menu__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .reviews__list {
        grid-template-columns: 1fr;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__links {
        align-items: center;
    }

    .lightbox__prev,
    .lightbox__next {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .lightbox__prev {
        left: 10px;
    }

    .lightbox__next {
        right: 10px;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}