/* ============================================
   CSS Variables & Reset
   ============================================ */

:root {
    /* Colors - Casual Restaurant Theme */
    --primary-color: #d4461f;
    --primary-dark: #a63518;
    --primary-light: #e66b45;
    --secondary-color: #ffa726;
    --accent-color: #ffb347;

    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-white: #ffffff;

    --bg-white: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #2a2a2a;
    --bg-overlay: rgba(26, 26, 26, 0.7);

    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --container-max-width: 1140px;

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

ul {
    list-style: none;
}

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

/* ============================================
   Utility Classes
   ============================================ */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

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

.section--dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.section--light {
    background-color: var(--bg-light);
}

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

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

.section--dark .section-title {
    color: var(--text-white);
}

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

.section--dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition-smooth);
    text-align: center;
}

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

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

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

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

.btn--large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Stars Rating */
.stars {
    display: inline-flex;
    gap: 4px;
    font-size: 1.2rem;
}

.stars--large {
    font-size: 1.5rem;
}

.star {
    color: #ddd;
}

.star.filled {
    color: #ffa726;
}

.star.half {
    background: linear-gradient(90deg, #ffa726 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-md);
}

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

.navbar__logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    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(--text-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-dark);
    transition: var(--transition-fast);
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    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%;
}

.navbar__link--cta {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: 50px;
}

.navbar__link--cta::after {
    display: none;
}

.navbar__link--cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

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

.hero__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-white);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.hero__rating-text {
    font-size: 1.1rem;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

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

/* ============================================
   About Section
   ============================================ */

.about__description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.about__description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.feature {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

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

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

.feature__content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.feature__content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   Specialties Section
   ============================================ */

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

.specialty-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.specialty-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.specialty-card__icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.specialty-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.specialty-card__description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.specialty-card__badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============================================
   Highlights Section
   ============================================ */

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.highlight-item__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-item h3 {
    font-size: 1rem;
    font-weight: 500;
}

/* ============================================
   Gallery Section
   ============================================ */

.gallery__filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery__filter-btn {
    padding: 10px 24px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background-color: rgba(255, 255, 255, 0.05);
}

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

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

.gallery__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition-fast);
}

.gallery__item:hover::after {
    background: rgba(0, 0, 0, 0.3);
}

/* ============================================
   Reviews Section
   ============================================ */

.reviews__summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto 60px;
    align-items: center;
}

.reviews__score {
    text-align: center;
}

.reviews__score-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 15px;
}

.reviews__score-stars {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.reviews__score-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-bar {
    display: grid;
    grid-template-columns: 40px 1fr 50px;
    gap: 15px;
    align-items: center;
}

.review-bar__label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.review-bar__track {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.review-bar__fill {
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 10px;
    transition: width 1s ease;
}

.review-bar__count {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: right;
}

.reviews__slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.reviews__track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.review-card {
    min-width: 100%;
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.review-card__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-card__badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--primary-light);
    color: var(--text-white);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

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

.review-card__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.review-card__details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.review-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-detail__label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.review-detail__value {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.review-card__ratings {
    display: flex;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.review-rating {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.review-rating__stars {
    font-size: 1rem;
}

.reviews__controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.reviews__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

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

/* ============================================
   Tags Section
   ============================================ */

.tags__container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.tag {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.tag:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.tag--large {
    font-size: 1.1rem;
    padding: 12px 24px;
}

.tag--medium {
    font-size: 1rem;
    padding: 11px 22px;
}

/* ============================================
   Hours Section
   ============================================ */

.hours__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.hours__takeout h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hours__table {
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.hours__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid var(--border-color);
}

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

.hours__row--closed {
    opacity: 0.5;
}

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

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

.hours__row--closed .hours__time {
    color: var(--text-light);
}

.hours__notice {
    max-width: 600px;
    margin: 0 auto;
    padding: 25px;
    background-color: #fff3e0;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.hours__notice p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.hours__notice p:last-child {
    margin-bottom: 0;
}

.hours__notice a {
    color: var(--primary-color);
    font-weight: 600;
}

.hours__notice a:hover {
    text-decoration: underline;
}

/* ============================================
   Services Section
   ============================================ */

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

.service-card {
    text-align: center;
    padding: 35px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

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

.service-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
}

/* ============================================
   Accessibility Section
   ============================================ */

.accessibility__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.accessibility__item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.accessibility__item:hover {
    background-color: #e8f5e9;
    transform: translateX(5px);
}

.accessibility__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.accessibility__item span:last-child {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* ============================================
   Contact Section
   ============================================ */

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

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

.contact__item {
    display: flex;
    gap: 20px;
}

.contact__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact__item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.contact__item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact__item a {
    color: var(--secondary-color);
    font-weight: 500;
}

.contact__item a:hover {
    text-decoration: underline;
}

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

/* ============================================
   CTA Section
   ============================================ */

.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
}

.cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta__text {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta .btn--primary {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.cta .btn--primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

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

.footer__section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer__section p {
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

.footer__list a:hover {
    color: var(--secondary-color);
}

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

/* ============================================
   Lightbox
   ============================================ */

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

.lightbox.active {
    display: flex;
}

.lightbox__close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--text-white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition-fast);
}

.lightbox__close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 20px 25px;
    transition: var(--transition-fast);
    z-index: 10001;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox__prev {
    left: 30px;
}

.lightbox__next {
    right: 30px;
}

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

.lightbox__counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-white);
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 25px;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero__title {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }

    .navbar__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .reviews__summary {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .cta__title {
        font-size: 1.8rem;
    }

    .lightbox__prev,
    .lightbox__next {
        font-size: 2.5rem;
        padding: 15px 20px;
    }

    .lightbox__prev {
        left: 10px;
    }

    .lightbox__next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

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

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

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

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

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

    .review-card {
        padding: 25px;
    }

    .reviews__score-number {
        font-size: 3rem;
    }
}