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

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

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #4a3728;
    background: #fffaf5;
    overflow-x: hidden;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.3;
    color: #3d2a1e;
}

.highlight {
    color: #e8a0b4;
    position: relative;
}

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

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e8a0b4;
    background: rgba(232, 160, 180, 0.12);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1rem;
    color: #8a7a6e;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #f5b7c5, #e8a0b4);
    color: #fff;
    box-shadow: 0 4px 15px rgba(232, 160, 180, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 160, 180, 0.45);
}

.btn-secondary {
    background: #fff;
    color: #4a3728;
    border: 2px solid #f0d0d8;
}

.btn-secondary:hover {
    border-color: #e8a0b4;
    background: #fff5f7;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 250, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(74, 55, 40, 0.08);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a3728;
}

.logo-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6a5a4e;
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e8a0b4;
    border-radius: 2px;
    transition: width 0.35s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #e8a0b4;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #4a3728;
    border-radius: 4px;
    transition: all 0.35s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #fff5f7 0%, #fff0f0 50%, #fff5f0 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(232, 160, 180, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(248, 200, 180, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(232, 160, 180, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e8a0b4;
    background: rgba(232, 160, 180, 0.12);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.05rem;
    color: #8a7a6e;
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a3728;
}

.rating-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #8a7a6e;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 30px 30px 30px 120px;
    box-shadow: 0 20px 60px rgba(232, 160, 180, 0.2);
    position: relative;
    z-index: 1;
}

.hero-img-deco {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(232, 160, 180, 0.3);
    border-radius: 30px 30px 30px 120px;
    z-index: 0;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    font-size: 2.2rem;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.badge-1 {
    top: -20px;
    right: 20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: 0.5s;
}

.badge-3 {
    top: 50%;
    right: -30px;
    animation-delay: 1s;
}

.badge-4 {
    top: 20px;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none;
}

.wave-divider svg {
    width: 100%;
    height: 80px;
}

/* ===== ABOUT ===== */
.about {
    background: #fff5f7;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(74, 55, 40, 0.04);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: #f0d0d8;
    box-shadow: 0 12px 40px rgba(232, 160, 180, 0.12);
}

.about-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    line-height: 1;
}

.about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.about-card p {
    font-size: 0.9rem;
    color: #8a7a6e;
    line-height: 1.7;
}

/* ===== MENU ===== */
.menu {
    background: #fffaf5;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.menu-tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    background: #fff;
    border: 2px solid #f0d0d8;
    color: #6a5a4e;
    cursor: pointer;
    transition: all 0.35s ease;
}

.menu-tab:hover {
    border-color: #e8a0b4;
    color: #e8a0b4;
}

.menu-tab.active {
    background: linear-gradient(135deg, #f5b7c5, #e8a0b4);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(232, 160, 180, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.menu-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(74, 55, 40, 0.04);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.menu-item:hover {
    transform: translateY(-6px);
    border-color: #f0d0d8;
    box-shadow: 0 12px 40px rgba(232, 160, 180, 0.1);
}

.menu-item-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-item-body {
    padding: 20px;
}

.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #3d2a1e;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: #8a7a6e;
    margin-bottom: 12px;
    line-height: 1.5;
}

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

.menu-item-price {
    font-weight: 700;
    color: #e8a0b4;
    font-size: 1.1rem;
}

.menu-item-badge {
    font-size: 0.75rem;
    background: rgba(232, 160, 180, 0.1);
    color: #e8a0b4;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
}

.menu-item.hidden {
    display: none;
}

/* ===== GALLERY ===== */
.gallery {
    background: #fff5f7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item.large {
    grid-row: span 2;
    grid-column: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 42, 30, 0.5), transparent);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Quicksand', sans-serif;
    background: rgba(0,0,0,0.2);
    padding: 4px 14px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

/* ===== REVIEWS ===== */
.reviews {
    background: #fffaf5;
}

.reviews-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.review-card {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(74, 55, 40, 0.04);
    border: 2px solid #f8ecee;
    text-align: center;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.review-stars {
    font-size: 1.3rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.review-text {
    font-size: 1.05rem;
    color: #4a3728;
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
    max-width: 560px;
}

.review-author {
    font-weight: 700;
    color: #3d2a1e;
    font-size: 0.95rem;
}

.review-role {
    font-size: 0.8rem;
    color: #8a7a6e;
    margin-top: 2px;
}

.review-card {
    display: none;
    animation: fadeIn 0.5s ease;
}

.review-card.active {
    display: flex;
}

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

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f0d0d8;
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
}

.dot.active {
    background: #e8a0b4;
    width: 28px;
    border-radius: 10px;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, #f5b7c5, #e8a0b4, #d4899e);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.cta-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.cta-card .highlight {
    color: #fff3b0;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-deco {
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    animation: float 4s ease-in-out infinite;
}

.cta-deco-1 {
    top: -20px;
    left: 10%;
    animation-delay: 0s;
}

.cta-deco-2 {
    bottom: -10px;
    right: 15%;
    animation-delay: 1s;
    font-size: 5rem;
}

.cta-deco-3 {
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

/* ===== LOCATION ===== */
.location {
    background: #fff5f7;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(74, 55, 40, 0.04);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    border-color: #f0d0d8;
    transform: translateX(6px);
}

.info-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
}

.info-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.info-card p {
    font-size: 0.88rem;
    color: #8a7a6e;
    line-height: 1.7;
}

.info-card a {
    color: #e8a0b4;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.location-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(74, 55, 40, 0.08);
}

/* ===== FOOTER ===== */
.footer {
    background: #3d2a1e;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.35s ease;
}

.social-link:hover {
    background: rgba(232, 160, 180, 0.3);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links ul li {
    margin-bottom: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: #e8a0b4;
}

.hours-highlight {
    font-weight: 700;
    color: #e8a0b4;
    font-size: 1.1rem;
}

.footer-note {
    font-size: 0.78rem !important;
    opacity: 0.6;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5b7c5, #e8a0b4);
    color: #fff;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(232, 160, 180, 0.35);
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(232, 160, 180, 0.45);
}

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

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

/* Tablet */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-rating {
        justify-content: center;
    }

    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

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

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fffaf5;
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 24px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(74, 55, 40, 0.1);
        z-index: 1000;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-img {
        height: 300px;
        border-radius: 20px;
    }

    .hero-img-deco {
        border-radius: 20px;
    }

    .floating-badge {
        font-size: 1.6rem;
    }

    .badge-1 { top: -10px; right: 10px; }
    .badge-2 { bottom: 20px; left: -15px; }
    .badge-3 { display: none; }
    .badge-4 { top: 10px; left: -10px; }

    .section {
        padding: 60px 0;
    }

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

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .about-card {
        padding: 24px 16px;
    }

    .about-icon {
        font-size: 2.2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .menu-item-img {
        height: 140px;
    }

    .menu-item-body {
        padding: 14px;
    }

    .menu-item-name {
        font-size: 0.95rem;
    }

    .menu-item-desc {
        font-size: 0.8rem;
    }

    .menu-tabs {
        gap: 8px;
    }

    .menu-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    .review-card {
        padding: 24px;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .cta-card h2 {
        font-size: 1.8rem;
    }

    .cta-deco {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .location-actions {
        flex-direction: column;
    }

    .location-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .wave-divider svg {
        height: 40px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .hero-img {
        height: 240px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

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

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

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

    .gallery-item.large {
        grid-column: span 1;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ===== LOADING & TRANSITIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}