/* ═══════════════════════════════════════════════════════════════════════════════
   SUNRISE KARAHI HOUSE - COMPREHENSIVE STYLESHEET
   ═══════════════════════════════════════════════════════════════════════════════ */

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

:root {
    --primary-orange: #F26522;
    --secondary-yellow: #FBB03B;
    --dark-bg: #2e2e2e;
    --light-text: #ffffff;
    --dark-text: #333333;
    --gray-text: #3a3a3a;
    --border-color: #ddd;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: transparent;
}

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

/* ═══════════════════════════════════════════════════════════════════════════════
   NAVIGATION BAR - PROFESSIONAL & ELEGANT
   ═══════════════════════════════════════════════════════════════════════════════ */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.92);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#navbar {
    padding: 0.6rem 0;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-links.left-links {
    justify-self: start;
}

.nav-links.right-links {
    justify-self: end;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-yellow));
    transition: width 0.35s ease, left 0.35s ease;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.nav-links a:hover {
    color: var(--secondary-yellow);
}

/* ORDER ONLINE button */
.nav-order-online {
    background: #E53935;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 4px;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    font-size: 0.85rem !important;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.3);
}

.nav-order-online::after {
    display: none !important;
}

.nav-order-online:hover {
    background: #C62828 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.5);
}

/* RESERVE A TABLE button */
.nav-reserve-btn {
    background: var(--primary-orange) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 4px;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    font-size: 0.85rem !important;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(242, 101, 34, 0.3);
}

.nav-reserve-btn::after {
    display: none !important;
}

.nav-reserve-btn:hover {
    background: #d45a1a !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.5);
}

.logo-container {
    flex: 0 0 auto;
    padding: 0 20px;
    justify-self: center;
}

.brand-logo {
    height: 65px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.brand-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(242, 101, 34, 0.5));
}

.logo-link {
    display: flex;
    align-items: center;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.7);
    background: #000;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    pointer-events: none;
}

/* ── Generic Banner Video Background ─────────────────────────── */
.banner-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.banner-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9) contrast(1.1);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   MENU + ABOUT GRID SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.menu-about-section {
    padding: 40px 0;
    background: #2a2a2a;
}

.menu-about-single-row {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(180px, 260px) minmax(300px, 420px) minmax(180px, 260px) minmax(180px, 260px);
    gap: 24px;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

.menu-small-image-card {
    aspect-ratio: 0.75 / 1;
    min-height: 320px;
}

.about-bar.about-panel {
    min-height: 340px;
}

.menu-small-image-card {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    background: #fafafa;

    max-width: 260px;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 1 / 1.25;
}

.menu-small-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
    transition: var(--transition);
}

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

/* ═══════════════════════════════════════════════════════════════════════════════
   IMAGE MODAL
   ═══════════════════════════════════════════════════════════════════════════════ */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-out;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.modal-content {
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease-out;
    border-radius: 4px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.menu-small-image-card {
    cursor: pointer;
}

.about-bar.about-panel {
    background: #262626;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    min-height: 260px;
}

.about-bar.about-panel .about-bar-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-bar.about-panel .about-text {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 20px;
}

.about-bar.about-panel .btn-light {
    background: #ffffff;
    color: var(--primary-orange);
    border: 2px solid #ffffff;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 0.95rem;
}

.about-bar.about-panel .btn-light:hover {
    background-color: var(--secondary-yellow);
    color: #1a1a1a;
}


.menu-image-card {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    aspect-ratio: 0.65 / 1;
    background: #f8f8f8;
}

.menu-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(242, 101, 34, 0.2);
}

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

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

.about-bar.about-panel {
    background: #252525;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-bar.about-panel .about-bar-content {
    text-align: left;
}

.about-bar.about-panel .about-text {
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 25px;
}

.about-bar.about-panel .btn-light {
    background: #fff;
    color: var(--primary-orange);
    border: 2px solid #fff;
    padding: 12px 20px;
    font-weight: 700;
}

.about-bar.about-panel .btn-light:hover {
    background: var(--secondary-yellow);
    color: #1a1a1a;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HALAL CERTIFIED SECTION STYLES
   ═══════════════════════════════════════════════════════════════════════════════ */

.halal-section {
    padding: 50px 0;
    background: #2e2e2e;
}

.halal-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.halal-image-card,
.halal-text-card {
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    background: #333333;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    position: relative;
    color: #ddd;
}

.halal-img {
    width: 100%;
    height: 100%;
    max-height: 340px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.halal-image-card::before {
    content: "HALAL CERTIFIED";
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 4px 10px;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 4px;
}

.halal-text-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.halal-text-card p {
    margin-bottom: 14px;
    font-size: 1rem;
    color: #bbb;
    line-height: 1.58;
}

@media (max-width: 900px) {
    .halal-grid {
        grid-template-columns: 1fr;
    }

    .halal-image-card,
    .halal-text-card {
        padding: 18px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--secondary-yellow);
    margin-bottom: 40px;
    letter-spacing: 1px;
    animation: slideUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: slideUp 1s ease-out 0.4s both;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════════ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-orange);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #e55c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(242, 101, 34, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-yellow);
    color: #1a1a1a;
    transform: translateY(-2px);
}

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

.btn-light:hover {
    background-color: var(--secondary-yellow);
    color: #1a1a1a;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

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

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

.section-header h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-yellow));
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ABOUT BAR SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.about-bar-section {
    padding: 0;
    margin: 60px 0;
}

.about-bar {
    background: #333333;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-bar-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.about-text {
    font-size: 1.35rem;
    color: white;
    line-height: 1.8;
    letter-spacing: 0.3px;
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.services-section {
    padding: 80px 0;
    background: #282828;
}

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

.service-card {
    padding: 40px;
    background: #333333;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(242, 101, 34, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: #aaa;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CATERING SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.catering-section {
    padding: 80px 0;
    background: #2c2c2c;
}

.catering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.catering-text h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.catering-text p {
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.8;
}

.catering-list {
    list-style: none;
    margin-bottom: 30px;
}

.catering-list li {
    padding: 10px 0;
    color: #ccc;
    font-weight: 500;
    transition: var(--transition);
    padding-left: 0;
}

.catering-list li:hover {
    padding-left: 10px;
    color: var(--primary-orange);
}

.catering-image {
    overflow: hidden;
    border-radius: 8px;
}

.catering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 100%;
    width: 100%;
}

.catering-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
    transition: var(--transition);
    display: block;
}

.catering-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.testimonials-section {
    padding: 80px 0;
    background: #262626;
    color: white;
}

.testimonials-section .section-header h2 {
    color: white;
}

.testimonials-section .divider {
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-card {
    background: #333333;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: #252525;
    transform: translateY(-5px);
}

.testimonial-header {
    margin-bottom: 20px;
}

.stars {
    color: var(--secondary-yellow);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.google-badge {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

.testimonial-text {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ddd;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-yellow);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CONTACT/CALL BAR SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.contact-call-section {
    padding: 0;
}

.call-bar {
    background: linear-gradient(135deg, #d4521e, #F26522);
    padding: 60px 40px;
    text-align: center;
}

.call-bar-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.call-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

.call-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: white;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.call-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background-color: var(--secondary-yellow);
}

.phone-icon {
    font-size: 1.5rem;
}

.call-subtitle {
    color: white;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════════ */

.footer {
    background: #222222;
    color: #fff;
    padding: 60px 0 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 600;
}

.footer-section h4 {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
    padding-left: 4px;
}

.footer-address,
.footer-phone {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-phone a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-phone a:hover {
    color: var(--primary-orange);
}

.hours-table {
    width: 100%;
    max-width: 360px;
    border-collapse: collapse;
}

.hours-table td {
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
}

.hours-table td:first-child {
    font-weight: 600;
    padding-right: 24px;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #2a2a2a;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════════ */

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

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-right {
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Prevent horizontal scroll from animations */
html, body {
    overflow-x: hidden;
}

/* Hide scrollbar for horizontal scroll containers */
.menu-about-single-row::-webkit-scrollbar { display: none; }
.menu-about-single-row { scrollbar-width: none; -ms-overflow-style: none; }

/* Touch-friendly tap targets */
@media (max-width: 1024px) {
    .btn, a.call-button, .nav-order-online, .mobile-order-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        aspect-ratio: auto;
        height: 500px;
    }

    .hero-video-wrap {
        /* visible on mobile */
    }

    .hero {
        background: #000;
    }

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

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

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

    .container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Homepage 5-col grid → horizontal scroll on tablet/mobile */
    .menu-about-single-row {
        grid-template-columns: none;
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 0 20px 16px;
    }
    .menu-about-single-row > * {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }
    .menu-about-single-row .about-bar.about-panel {
        flex: 0 0 300px;
        min-height: auto;
    }

    .catering-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .catering-grid img {
        height: 180px;
    }

    .about-bar.about-panel {
        margin-top: 20px;
    }

    /* Services & testimonials grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonials-carousel {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .call-bar {
        padding: 40px 20px;
    }
    .call-bar-content {
        gap: 15px;
    }
    .call-title {
        font-size: 1.5rem;
    }
    .call-button {
        font-size: 1rem;
        padding: 14px 24px;
    }

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

    /* Modal mobile */
    .modal-content {
        max-width: 95%;
        max-height: 80vh;
        margin-top: 10vh;
    }
    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 32px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .about-bar {
        padding: 30px 20px;
    }

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

    .service-card {
        padding: 20px;
    }
    .service-icon {
        font-size: 2.5rem;
    }

    /* Homepage 5-col grid → stack vertically on small phones */
    .menu-about-single-row {
        flex-direction: column;
        overflow-x: visible;
        align-items: center;
    }
    .menu-about-single-row > * {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
    }
    .menu-about-single-row .about-bar.about-panel {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
    }

    .halal-text-card h2 {
        font-size: 1.5rem;
    }

    .catering-grid img {
        height: 140px;
    }

    .call-title {
        font-size: 1.3rem;
    }
    .call-button {
        font-size: 0.95rem;
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
    }

    /* Testimonial cards */
    .testimonial-card {
        padding: 20px;
    }

    .footer {
        padding: 40px 0 0;
    }
    .hours-table td {
        font-size: 0.82rem;
        padding: 4px 0;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Flash messages positioned below fixed navbar */
.flash {
    padding: 15px 20px;
    margin-bottom: 0;
    border-radius: 0;
    text-align: center;
    font-weight: 500;
    animation: slideDown 0.5s ease-out;
    position: relative;
    z-index: 900;
    margin-top: 0;
}

.flash-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.flash-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

main {
    min-height: auto;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HAMBURGER MENU & MOBILE NAV
   ═══════════════════════════════════════════════════════════════════════════════ */

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    flex-direction: column;
    gap: 5px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(10px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}
.mobile-menu ul li {
    margin: 18px 0;
}
.mobile-menu ul li a {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}
.mobile-menu ul li a:hover {
    color: #F26522;
}
.mobile-order-btn {
    display: inline-block;
    margin-top: 12px;
    background: #E53935 !important;
    color: #fff !important;
    padding: 12px 28px !important;
    border-radius: 6px !important;
    font-size: 1rem !important;
}

.mobile-reserve-btn {
    color: var(--primary-orange) !important;
    font-weight: 700 !important;
    border-bottom: 3px solid var(--primary-orange);
    padding-bottom: 4px;
}

@media (max-width: 1024px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }
    .logo-container {
        order: 0;
        padding: 0;
    }
    .brand-logo { height: 50px; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   GALLERY PAGE STYLES (for React GalleryPage component)
   ═══════════════════════════════════════════════════════════════════════════════ */

.gallery-banner {
    position: relative;
    height: 420px;
    background: #252525;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.gallery-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}
.gallery-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.gallery-banner-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.gallery-banner-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    opacity: 0.85;
    letter-spacing: 1px;
}

.gallery-page {
    background: #2a2a2a;
    padding: 0 0 80px;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 40px 20px 30px;
}

.filter-btn {
    background: #323232;
    color: #ccc;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #3a3a3a;
    color: #fff;
}

.filter-btn.active {
    background: var(--primary-orange);
    color: #fff;
    border-color: var(--primary-orange);
}

.gallery-category {
    padding: 20px 40px;
}

.gallery-category-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 20px;
    padding: 0 10px;
}

.gallery-category-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 700;
}

.gallery-count {
    font-size: 0.9rem;
    color: #888;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
    background: #2e2e2e;
}

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

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

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 3rem;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}
.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #aaa;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .gallery-banner { height: 300px; }
    .gallery-banner-content h1 { font-size: 2rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-category { padding: 20px; }
}

@media (max-width: 480px) {
    .gallery-banner { height: 240px; }
    .gallery-banner-content h1 { font-size: 1.6rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
