/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    /* Turkish/Mediterranean Color Palette */
    --primary-color: #c9302c;
    --primary-dark: #a0241f;
    --primary-light: #e74c3c;
    --secondary-color: #d4a574;
    --secondary-dark: #b8885a;

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

    /* Accent Colors */
    --success: #27ae60;
    --warning: #f39c12;
    --info: #3498db;

    /* Typography */
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Layout */
    --container-width: 1140px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

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

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

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

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

ul {
    list-style: none;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
    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(--medium-gray);
    max-width: 600px;
    margin: var(--spacing-md) auto 0;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 48, 44, 0.3);
}

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

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

.btn--small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* ==========================================
   BADGES
   ========================================== */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.25rem;
}

.badge--halal {
    background: #27ae60;
    color: var(--white);
}

.badge--vegan {
    background: #16a085;
    color: var(--white);
}

.badge--late {
    background: var(--secondary-color);
    color: var(--dark);
}

.badge--accessible {
    background: var(--info);
    color: var(--white);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-md);
}

.navbar__logo h2 {
    font-family: var(--font-serif);
    color: var(--primary-color);
    font-size: 1.5rem;
}

.navbar__menu {
    display: flex;
    gap: 2rem;
}

.navbar__menu a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

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

.navbar__menu a:hover::after {
    width: 100%;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
}

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

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero__slide.active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero__title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero__badges {
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero__rating {
    animation: fadeInUp 1s ease 0.8s backwards;
}

.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 3rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
}

.hero__arrow:hover {
    background: rgba(255,255,255,0.5);
}

.hero__arrow--prev {
    left: 20px;
}

.hero__arrow--next {
    right: 20px;
}

/* ==========================================
   STARS RATING
   ========================================== */
.stars {
    display: inline-flex;
    gap: 0.25rem;
    font-size: 1.2rem;
}

.star {
    color: #ddd;
}

.star.filled {
    color: #ffa500;
}

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

.rating__text {
    margin-left: 0.5rem;
    font-size: 1rem;
}

/* ==========================================
   HIGHLIGHTS SECTION
   ========================================== */
.highlights {
    padding: var(--spacing-lg) 0;
    background: var(--light-gray);
}

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

.highlight {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.highlight__icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.highlight h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.3rem;
}

.highlight p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: var(--spacing-xl) 0;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about__text p {
    margin-bottom: var(--spacing-md);
    color: var(--medium-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about__features {
    margin-top: var(--spacing-md);
}

.about__features h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.about__features ul {
    list-style: none;
}

.about__features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--medium-gray);
}

.about__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.about__features strong {
    color: var(--dark);
}

.about__image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about__image:hover img {
    transform: scale(1.05);
}

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

.menu__popular {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.menu-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

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

.menu-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.menu-item__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.menu-item__content {
    padding: var(--spacing-md);
}

.menu-item__content h3 {
    color: var(--dark);
    margin-bottom: var(--spacing-xs);
    font-size: 1.3rem;
}

.menu-item__content p {
    color: var(--medium-gray);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.menu-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tag--halal {
    background: #d4edda;
    color: #155724;
}

.tag--vegan {
    background: #d1ecf1;
    color: #0c5460;
}

.tag--vegetarian {
    background: #fff3cd;
    color: #856404;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: var(--spacing-xl) 0;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.service {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service__icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.service h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.service p {
    color: var(--medium-gray);
    line-height: 1.8;
}

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

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.gallery__item {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery__item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery__more {
    display: block;
    margin: 0 auto;
    background: var(--primary-color);
    color: var(--white);
}

/* ==========================================
   REVIEWS SECTION
   ========================================== */
.reviews {
    padding: var(--spacing-xl) 0;
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.reviews__rating {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.reviews__score {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: var(--spacing-sm);
}

.reviews__count {
    display: block;
    margin-top: var(--spacing-sm);
    color: var(--medium-gray);
}

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

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

.review-bar span:first-child {
    width: 40px;
    font-weight: 600;
}

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

.bar__fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 1s ease;
}

.review-bar span:last-child {
    width: 40px;
    text-align: right;
    color: var(--medium-gray);
}

.reviews__slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.review-card {
    background: var(--light-gray);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

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

.review-card__text {
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
    font-style: italic;
    line-height: 1.6;
}

.review-card__meta {
    margin-bottom: var(--spacing-xs);
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.review-card__ratings {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.reviews__popular-mentions h3 {
    color: var(--dark);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

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

.mention-tag {
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--medium-gray);
    border: 1px solid #ddd;
}

/* ==========================================
   ORDER SECTION
   ========================================== */
.order {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.order__platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.platform-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.platform-card__icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.platform-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.platform-card p {
    color: var(--medium-gray);
    margin-bottom: var(--spacing-md);
}

/* ==========================================
   HOURS SECTION
   ========================================== */
.hours {
    padding: var(--spacing-xl) 0;
}

.hours__content {
    max-width: 600px;
    margin: 0 auto;
}

.hours__live-status {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--light-gray);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
}

.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.status-indicator--open {
    background: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.status-text {
    font-weight: 600;
    color: var(--success);
    margin-right: var(--spacing-sm);
}

.status-live {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.hours__schedule {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.hours__day--highlight {
    background: #fff9e6;
    font-weight: 600;
}

.day-name {
    color: var(--dark);
}

.day-hours {
    color: var(--medium-gray);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact__item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

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

.contact__item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.2rem;
}

.contact__item p {
    color: var(--medium-gray);
    line-height: 1.8;
}

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

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

.link:hover {
    text-decoration: underline;
}

.contact__amenities {
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--border-radius);
}

.contact__amenities h3 {
    color: var(--dark);
    margin-bottom: var(--spacing-md);
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.amenity-grid span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.contact__map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer h3, .footer h4 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.footer p {
    color: #ccc;
    line-height: 1.8;
}

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

.footer__links a {
    color: #ccc;
}

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

.footer__rating {
    margin-top: var(--spacing-sm);
}

.footer__bottom {
    border-top: 1px solid #333;
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    color: #999;
    font-size: 0.9rem;
}

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

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    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;
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
}

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

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

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

.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 */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

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

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

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

/* Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .navbar__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-md);
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .navbar__menu.active {
        left: 0;
    }

    .navbar__toggle {
        display: flex;
    }

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

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__arrow {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

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

    .highlights__grid,
    .menu__popular,
    .services__grid,
    .gallery__grid,
    .reviews__slider,
    .order__platforms {
        grid-template-columns: 1fr;
    }

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

    .footer__bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

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

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero__title {
        font-size: 1.5rem;
    }

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