/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - Turkish Restaurant Theme */
    --primary-color: #d32f2f;
    --primary-dark: #b71c1c;
    --primary-light: #ffcdd2;
    --secondary-color: #ffa000;
    --secondary-dark: #ff6f00;
    --accent-color: #4caf50;

    /* Neutral Colors */
    --dark: #1a1a1a;
    --dark-alt: #2c2c2c;
    --gray: #666666;
    --gray-light: #f5f5f5;
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Georgia', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

    /* Spacing */
    --header-height: 80px;
    --section-padding: 5rem 0;
    --container-width: 1140px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);

    /* Transitions */
    --transition: all 0.3s ease;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn--primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn--secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scroll {
    box-shadow: var(--shadow-md);
}

.nav {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo__icon {
    font-size: 2rem;
}

.nav__menu {
    display: flex;
}

.nav__list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav__link:hover::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    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__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.8) 0%, rgba(26, 26, 26, 0.7) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rating__stars {
    display: flex;
    gap: 0.25rem;
    font-size: 1.5rem;
}

.star.half {
    opacity: 0.5;
}

.rating__text {
    font-size: 1.1rem;
    font-weight: 500;
}

.hero__badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.badge {
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
}

.badge--halal {
    background: var(--accent-color);
    color: var(--white);
}

.badge--price {
    background: var(--secondary-color);
    color: var(--white);
}

.badge--open {
    background: var(--white);
    color: var(--primary-color);
}

.hero__cta {
    font-size: 1.1rem;
    padding: 1.25rem 3rem;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll__text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll__arrow {
    font-size: 1.5rem;
}

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

.about__content {
    display: grid;
    gap: 3rem;
}

.about__heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 15px;
    transition: var(--transition);
}

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

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

.feature__title {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.feature__text {
    color: var(--gray);
}

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

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

.menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu__item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.menu__item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.menu__item-name {
    font-size: 1.4rem;
    color: var(--dark);
}

.menu__item-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-weight: 600;
}

.menu__item-desc {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.menu__item-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.85rem;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-weight: 500;
}

.tag--halal {
    background: var(--accent-color);
    color: var(--white);
}

.tag--vegan {
    background: var(--secondary-color);
    color: var(--white);
}

.menu__info {
    text-align: center;
    padding: 2rem;
    background: var(--primary-light);
    border-radius: 15px;
}

.menu__note {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--gray-light);
    border-radius: 15px;
    transition: var(--transition);
}

.service:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

.service__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service__title {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.service__desc {
    color: var(--gray);
}

.services__highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.highlight__icon {
    font-size: 2.5rem;
}

.highlight__title {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.highlight__text {
    color: var(--gray);
}

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

.gallery__categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery__category-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.gallery__category-btn:hover,
.gallery__category-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

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

.gallery__item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(211, 47, 47, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__icon {
    font-size: 3rem;
}

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

.reviews__stats {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 3rem;
    background: var(--gray-light);
    border-radius: 15px;
}

.stats__overall {
    text-align: center;
}

.overall__rating {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.overall__stars {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.overall__count {
    color: var(--gray);
    font-size: 1.1rem;
}

.stats__distribution {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.distribution__row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.distribution__label {
    min-width: 60px;
    font-weight: 500;
}

.distribution__bar {
    flex: 1;
    height: 12px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.distribution__fill {
    height: 100%;
    background: var(--secondary-color);
    border-radius: 10px;
}

.distribution__count {
    min-width: 40px;
    text-align: right;
    font-weight: 600;
}

.reviews__tags {
    margin-bottom: 3rem;
}

.tags__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tags__list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.reviews__carousel {
    position: relative;
    overflow: hidden;
}

.review {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    display: none;
}

.review.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.review__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review__stars {
    font-size: 1.25rem;
}

.review__date {
    color: var(--gray);
    font-size: 0.9rem;
}

.review__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.review__details,
.review__ratings {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.detail-badge,
.rating-badge {
    font-size: 0.85rem;
    padding: 0.35rem 0.9rem;
    background: var(--white);
    border-radius: 20px;
    font-weight: 500;
}

.review__meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.review__badge {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review__source {
    color: var(--gray);
    font-size: 0.9rem;
}

.reviews__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel__btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel__btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.carousel__indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

/* ===== HOURS SECTION ===== */
.hours {
    background: var(--gray-light);
}

.hours__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.hours__list {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.hours__item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.hours__item:last-child {
    border-bottom: none;
}

.hours__item--highlight {
    background: var(--primary-light);
    padding: 1rem;
    border-radius: 8px;
    margin: 0.25rem 0;
}

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

.hours__time {
    color: var(--gray);
}

.hours__time--closed {
    color: var(--primary-color);
    font-weight: 600;
}

.hours__time--open24 {
    color: var(--accent-color);
    font-weight: 700;
}

.hours__popular {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.hours__popular-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hours__popular-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.popular__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 8px;
}

.popular__icon {
    font-size: 1.5rem;
}

.popular__text {
    color: var(--dark);
}

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

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info__card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 15px;
}

.info__icon {
    font-size: 2.5rem;
}

.info__title {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.info__text {
    color: var(--gray);
    line-height: 1.8;
}

.info__buttons {
    display: flex;
    gap: 1rem;
}

.contact__map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact__nearby {
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 15px;
}

.nearby__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.nearby__list {
    display: grid;
    gap: 1rem;
}

.nearby__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
}

.nearby__name {
    font-weight: 600;
}

.nearby__rating {
    color: var(--gray);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer__title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer__text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer__badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__badge {
    font-size: 0.9rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links li,
.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer__address,
.footer__hours {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright,
.footer__rating {
    color: rgba(255, 255, 255, 0.5);
    margin: 0.5rem 0;
}

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

.lightbox.active {
    display: flex;
}

.lightbox__image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

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

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

.lightbox__close {
    top: 2rem;
    right: 2rem;
}

.lightbox__prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: 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-lg);
    transition: var(--transition);
    z-index: 999;
}

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

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

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
    :root {
        --header-height: 70px;
    }

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

    .hero__title {
        font-size: 2.5rem;
    }

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

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

@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        padding: 2rem;
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .hero__badges {
        gap: 0.5rem;
    }

    .badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

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

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

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

    .gallery__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

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

    .lightbox__prev {
        left: 1rem;
    }

    .lightbox__next {
        right: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

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

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

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