/* ============================================
   RESTORIA STANDARD HERO - MINIMAL DESIGN
   Delhi House - Clean & Elegant
   Brand Colors: Red #EA1C24, Gold #C9A35E, Blue #81B09C
   ============================================ */

:root {
    --brand-red: #EA1C24;
    --brand-gold: #C9A35E;
    --brand-blue: #81B09C;
    --dark-bg: #1A1A1A;
    --light-bg: #FAFAFA;
    --cream-bg: #FFF9F5;
    --text-dark: #222222;
    --text-light: #666666;
}

body {
    background-color: rgb(24, 49, 46) !important;
}

/* ===================================
   1. HERO SLIDER SECTION
   =================================== */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 450px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brand-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.4rem 0;
    position: relative;
}

.hero-badge::before,
.hero-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: var(--brand-gold);
}

.hero-badge::before {
    right: calc(100% + 15px);
}

.hero-badge::after {
    left: calc(100% + 15px);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    font-family: 'Jost', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    border: 2px solid #C9A35E;
    background: #C9A35E;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.btn-hero-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    font-family: 'Jost', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--dark-bg);
    border-color: white;
    transform: translateY(-2px);
}

/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.4s ease;
    color: white;
    font-size: 1.25rem;
}

.hero-slider-nav:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(234, 28, 36, 0.4);
}

.hero-slider-nav.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.hero-slider-prev {
    left: 30px;
}

.hero-slider-next {
    right: 30px;
}

/* Hero Slider Pagination */
.hero-slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.hero-slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider-pagination .swiper-pagination-bullet-active {
    background: var(--brand-red);
    width: 40px;
    border-radius: 6px;
    border-color: white;
}

/* ===================================
   2. ABOUT/WELCOME SECTION
   =================================== */
.about-section {
    padding: 100px 0;
    background: rgb(24, 49, 46);
}

.section-badge {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brand-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 60px;
}

.section-badge::before,
.section-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45px;
    height: 1px;
    background: var(--brand-gold);
}

.section-badge::before {
    left: 0;
}

.section-badge::after {
    right: 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.section-text {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    height: 550px;
}

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

.about-image:hover img {
    transform: scale(1.05);
}

.signature-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 500;
    color: var(--brand-gold);
    margin-top: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature-icon {
    font-size: 2rem;
    color: var(--brand-gold);
    flex-shrink: 0;
}

.about-feature-text h6 {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.about-feature-text p {
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===================================
   3. FEATURED MENU SECTION
   =================================== */
.menu-section {
    padding: 100px 0;
    background: rgb(24, 49, 46);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.menu-tab {
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    padding: 0.5rem 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.menu-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-gold);
    transition: width 0.3s ease;
}

.menu-tab.active,
.menu-tab:hover {
    color: var(--brand-gold);
}

.menu-tab.active::after {
    width: 100%;
}

.menu-slider-container {
    position: relative;
    margin-top: 3rem;
}

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

.swiper-slide {
    height: auto;
    display: flex;
}

.menu-card {
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(201, 163, 94, 0.4);
}

.menu-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f5f5f5;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.08);
}

.menu-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--brand-gold);
    color: #18312e;
    padding: 0.5rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 10;
}

.menu-card-body {
    padding: 2rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.menu-card-description {
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: auto;
}

.menu-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-gold);
}

.btn-menu {
    font-family: 'Jost', sans-serif;
    display: inline-block;
    padding: 0.625rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--brand-gold);
    background: transparent;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-menu:hover {
    background: var(--brand-gold);
    color: #18312e;
}

/* Slider Navigation Buttons */
.menu-slider-prev,
.menu-slider-next,
.testimonials-slider-prev,
.testimonials-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 1rem;
}

.menu-slider-prev:hover,
.menu-slider-next:hover,
.testimonials-slider-prev:hover,
.testimonials-slider-next:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: #18312e;
}

.menu-slider-prev,
.testimonials-slider-prev {
    left: -22px;
}

.menu-slider-next,
.testimonials-slider-next {
    right: -22px;
}

/* Slider Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 3rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--brand-gold);
    width: 30px;
    border-radius: 5px;
}

/* ===================================
   4. WHY CHOOSE US / STATS SECTION
   =================================== */
.features-section {
    padding: 100px 0;
    background: rgb(24, 49, 46);
    position: relative;
}

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

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease;
}

.feature-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--brand-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.feature-number span {
    font-size: 3rem;
}

.feature-title {
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.feature-description {
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ===================================
   5. TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: 100px 0;
    background: rgb(24, 49, 46);
}

.testimonials-slider-container {
    position: relative;
    margin-top: 3rem;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
    border-color: rgba(201, 163, 94, 0.4);
}

.quote-icon {
    font-size: 4rem;
    color: var(--brand-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-family: 'Jost', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--brand-gold);
}

.author-info h6 {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-info small {
    font-family: 'Jost', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.rating-stars {
    color: var(--brand-gold);
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* ===================================
   6. INSTAGRAM SECTION
   =================================== */
.instagram-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.instagram-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: rgba(201, 163, 94, 0.4);
}

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

.instagram-card:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 163, 94, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instagram-card:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 3rem;
    color: white;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.instagram-card:hover .instagram-overlay i {
    transform: scale(1);
}

/* ===================================
   7. CTA SECTION
   =================================== */
.cta-section {
    padding: 120px 0;
    color: white;
    text-align: center;
    position: relative;
    background-image: url('../images/banner-3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* border-top: 1px solid var(--brand-gold);
    border-bottom: 1px solid var(--brand-gold); */
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24, 49, 46, 0.9), rgba(24, 49, 46, 0.7));
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(201, 163, 94, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.cta-badge {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brand-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-gold);
    margin-bottom: 2.5rem;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-phone:hover {
    color: white;
    transform: scale(1.05);
    text-shadow: 0 5px 15px rgba(201, 163, 94, 0.3);
}

/* ===================================
   8. PROMOTIONAL OFFERS SECTION
   =================================== */
.promo-card:hover,
.promo-card-small:hover>div {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.promo-card img,
.promo-card-small img {
    transition: transform 0.6s ease;
}

.promo-card:hover img,
.promo-card-small:hover img {
    transform: scale(1.1);
}

/* ===================================
   9. ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   10. RESPONSIVE DESIGN
   =================================== */
@media (max-width: 992px) {
    .hero-section {
        min-height: 480px;
        height: 70vh;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        margin-bottom: 2.5rem;
    }

    .hero-slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .hero-slider-prev {
        left: 20px;
    }

    .hero-slider-next {
        right: 20px;
    }

    .about-section,
    .menu-section,
    .features-section,
    .testimonials-section,
    .instagram-section,
    .cta-section,
    .promotional-offers-section {
        padding: 80px 0;
    }

    .cta-content {
        padding: 3rem 2rem;
    }

    .about-image {
        height: 450px;
        margin-bottom: 3rem;
    }

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

    .menu-slider-prev,
    .testimonials-slider-prev {
        left: -15px;
    }

    .menu-slider-next,
    .testimonials-slider-next {
        right: -15px;
    }

    .promo-card,
    .promo-card-small>div {
        height: 400px !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 450px;
        height: 65vh;
    }

    .hero-content {
        padding: 1.25rem;
    }

    .hero-title {
        font-size: clamp(2.25rem, 5vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 1.8vw, 1rem);
        margin-bottom: 2rem;
    }

    .hero-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-slider-prev {
        left: 15px;
    }

    .hero-slider-next {
        right: 15px;
    }

    .hero-slider-pagination {
        bottom: 30px;
    }

    .hero-badge::before,
    .hero-badge::after {
        width: 30px;
    }

    .section-badge::before,
    .section-badge::after {
        width: 30px;
    }

    .about-section,
    .menu-section,
    .features-section,
    .testimonials-section,
    .instagram-section,
    .cta-section,
    .promotional-offers-section {
        padding: 60px 0;
    }

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

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

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

    .menu-slider-prev,
    .testimonials-slider-prev {
        left: 5px;
    }

    .menu-slider-next,
    .testimonials-slider-next {
        right: 5px;
    }

    .promo-card {
        height: 350px !important;
    }

    .promo-card-small {
        margin-bottom: 1.5rem !important;
    }

    .promo-card-small>div {
        height: 280px !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 650px;
        height: auto;
        padding-bottom: 2rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
        margin-bottom: 0.875rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        gap: 1rem;
        width: 70%;
        margin: 0 auto;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        font-size: 0.7rem;
        padding: 0.75rem;
    }

    .btn-view-schedule {
        width: 70%;
        justify-content: center;
        font-size: 0.7rem;
        min-height: 36px;
    }

    .hero-slider-nav {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }

    .hero-slider-prev {
        left: 10px;
    }

    .hero-slider-next {
        right: 10px;
    }

    .hero-slider-pagination {
        bottom: 20px;
        gap: 8px;
    }

    .hero-slider-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .hero-slider-pagination .swiper-pagination-bullet-active {
        width: 30px;
    }

    .hero-badge::before,
    .hero-badge::after,
    .section-badge::before,
    .section-badge::after {
        display: none;
    }

    .section-badge {
        padding: 0;
    }

    .about-section,
    .menu-section,
    .features-section,
    .testimonials-section,
    .instagram-section,
    .cta-section {
        padding: 50px 0;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .about-image {
        height: 350px;
    }

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

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

    .menu-card-body,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card {
        padding: 3rem 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .feature-icon {
        font-size: 3.5rem;
    }

    .signature-text {
        font-size: 2.25rem;
    }
}

@media (max-width: 400px) {
    .hero-content {
        padding: 2rem 1.25rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 1rem 2.5rem;
        font-size: 0.8125rem;
    }

    .menu-card-title {
        font-size: 1.5rem;
    }

    .menu-price {
        font-size: 1.75rem;
    }
}

.btn-view-schedule {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--brand-gold), #b89350);
    border: 2px solid var(--brand-gold);
    border-radius: 50px;
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 42px;
}

.btn-view-schedule:hover {
    background: linear-gradient(135deg, var(--brand-gold), #b89350);
    border-color: var(--brand-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 163, 94, 0.4);
}

.btn-view-schedule i {
    font-size: 1rem;
}


/* ===================================
   OPENING HOURS MODAL
   =================================== */

.modal-header {
    background: linear-gradient(135deg, rgb(24, 49, 46), rgb(30, 60, 56));
    color: white;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.opening-hours-list {
    max-width: 100%;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.hours-row:hover {
    background: #f8f9fa;
}

.hours-row.today {
    background: linear-gradient(135deg, rgba(201, 163, 94, 0.15), rgba(201, 163, 94, 0.08));
    border-left: 4px solid var(--brand-gold);
    font-weight: 600;
}

.hours-row .day-name {
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.hours-row .day-hours {
    font-weight: bold;
    font-size: 14px;
}

.hours-row .text-success {
    color: #28a745 !important;
}

.hours-row .text-danger {
    color: #dc3545 !important;
}

.modal-header {
    background: linear-gradient(135deg, rgb(24, 49, 46), rgb(30, 60, 56));
    color: white;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

/* Meat Declaration Scroll Container */
.meat-scroll-container {
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem;
    margin: 0 -1rem;
    /* Adjust for padding to keep alignment */
}

/* Scrollbar Styles */
.meat-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.meat-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.meat-scroll-container::-webkit-scrollbar-thumb {
    background: var(--brand-gold);
    border-radius: 4px;
}

.meat-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #b89350;
}

.meat-scroll-container {
    scrollbar-width: thin;
    scrollbar-color: var(--brand-gold) rgba(255, 255, 255, 0.05);
}