/* ============================================= */
/* FONTS */
/* ============================================= */
@font-face {
    font-family: 'Lobster';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/lobster/lobster-v28-latin-regular.woff2') format('woff2'),
         url('../fonts/lobster/lobster-v28-latin-regular.woff') format('woff');
    font-display: swap;
}

/* ============================================= */
/* GLOBAL STYLES */
/* ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lobster', cursive;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* ============================================= */
/* HERO & BANNER SECTIONS */
/* ============================================= */
.hero-section, .about-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.hero-section { 
    height: 96vh; 
}

.about-hero-section {
    height: 450px;
    margin-top: 80px;
}

.hero-bg, .about-hero-bg {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: url('../img/aboutus.png') no-repeat center/cover;
    z-index: -2;
}

.about-hero-bg {
    background: url('../img/menu_banner.png') no-repeat center center/cover;
}

.overlay {
    position: absolute; 
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

.hero-content { 
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-content h1 { 
    font-size: 48px; 
    line-height: 1.2; 
    margin-bottom: 20px;
}

.hero-content h5 { 
    color: #fbbf24; 
    font-weight: 400; 
}

.hero-content p { 
    margin: 20px 0; 
    font-size: 17px; 
    color: #eee; 
}

.btn-warning { 
    font-weight: 600; 
    border-radius: 8px; 
    padding: 10px 20px; 
    margin-top: 20px;
}

/* Carousel Styles */
.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ============================================= */
/* ABOUT SECTION */
/* ============================================= */
.about-section { 
    background: linear-gradient(135deg, #fffbea, #fff);
    padding: 80px 0;
}

.about-heading { 
    font-weight: 700; 
    font-size: 33px; 
    color: #333; 
    margin-bottom: 15px; 
}

.about-text { 
    font-size: 17px; 
    line-height: 1.7; 
    color: #333;
    margin-bottom: 20px;
}

.about-img { 
    width: 100%; 
    padding: 5px; 
    border: 3px dashed #333;
    border-radius: 8px;
}

/* ============================================= */
/* MENU SECTION */
/* ============================================= */
.menu-section { 
    background-color: #222E39;
    padding: 80px 0;
}

.menu-heading { 
    font-size: 33px; 
    color: #f9a825; 
    font-weight: 400; 
}

.menu-subtext { 
    color: #ddd; 
    font-size: 17px; 
    margin: 20px 0 30px; 
}

.menu-box { 
    background: #fff; 
    border-radius: 8px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-box img { 
    width: 100%; 
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.menu-box:hover img {
    transform: scale(1.05);
}

.menu-title { 
    text-align: center; 
    font-weight: bold; 
    font-size: 18px; 
    padding: 15px 0; 
    color: black;
    margin: 0;
}

.menu-box a {
    text-decoration: none !important;
}

.menu-box a:hover {
    text-decoration: none !important;
}

/* ============================================= */
/* GALLERY SECTION */
/* ============================================= */
.gallery-section { 
    background: #fff;
    padding: 80px 0;
}

.gallery-heading { 
    font-size: 33px; 
    color: #222; 
    font-weight: 700; 
}

.gallery-subtext { 
    color: #666; 
    font-size: 17px; 
    margin-bottom: 30px; 
}

.gallery-box { 
    overflow: hidden; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
}

.gallery-box img { 
    width: 100%; 
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-box:hover img { 
    transform: scale(1.08); 
}

.gallery-box:hover { 
    box-shadow: 0 6px 18px rgba(0,0,0,0.25); 
}

/* ============================================= */
/* REVIEWS SECTION */
/* ============================================= */
.reviews-section { 
    background: linear-gradient(135deg, #f8f9fa, #e9ecef); 
    padding: 80px 0; 
}

.review-heading { 
    font-size: 2.5rem; 
    color: #333; 
    text-align: center; 
    font-weight: 700; 
    margin-bottom: 15px; 
}

.review-subtext { 
    color: #666; 
    text-align: center; 
    font-size: 1.1rem; 
    margin-bottom: 40px; 
}

.review-card {
    background: #fff; 
    padding: 30px 25px; 
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center; 
    height: 100%; 
    transition: all 0.3s ease;
    border: 1px solid rgba(249,168,37,0.2); 
    position: relative; 
    overflow: hidden;
}

.review-card::before {
    content: ''; 
    position: absolute; 
    top:0; 
    left:0; 
    right:0; 
    height:4px;
    background: linear-gradient(90deg, #f9a825, #e20000);
}

.review-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); 
}

.review-profile { 
    text-align: center; 
    margin-bottom: 20px; 
}

.profile-pic { 
    width: 100px; 
    height: 100px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 4px solid #f9a825; 
    margin: 0 auto; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
    transition: transform 0.3s; 
}

.review-card:hover .profile-pic { 
    transform: scale(1.1); 
}

.stars { 
    color: #ffc107; 
    font-size: 1.4rem; 
    margin-bottom: 20px; 
    letter-spacing: 2px; 
}

.review-text { 
    font-style: italic; 
    margin-bottom: 20px; 
    color: #555; 
    line-height: 1.7; 
    font-size: 1.05rem; 
    position: relative; 
    padding: 0 10px; 
}

.review-text::before, .review-text::after { 
    content:'"'; 
    font-size: 2rem; 
    color: #f9a825; 
    position: absolute; 
}

.review-text::before { 
    top:-10px; 
    left:-5px; 
}

.review-text::after { 
    bottom:-20px; 
    right:-5px; 
}

.review-author { 
    font-weight: bold; 
    color: #333; 
    font-size: 1.1rem; 
    margin-top: 15px; 
}

/* ============================================= */
/* FOOTER SECTION */
/* ============================================= */
.footer-section { 
    background: #222E39; 
    padding: 60px 0; 
}

.footer-heading { 
    color: #f9a825; 
    margin-bottom: 15px; 
    font-size: 1.25rem; 
}

.footer-text { 
    color: #ddd; 
    font-size: 14px; 
    line-height: 1.7; 
}

.footer-links, .footer-contact { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.footer-links li, .footer-contact li { 
    margin-bottom: 8px; 
}

.footer-links a { 
    color: #ddd; 
    text-decoration: none; 
    transition: color 0.3s; 
    font-size: 14px; 
}

.footer-links a:hover { 
    color: #f9a825; 
}

.footer-contact i { 
    margin-right: 10px; 
    margin-top: 3px; 
}

.footer-social { 
    display: flex; 
    gap: 10px; 
    margin-top: 20px; 
}

.footer-social a { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    background: #f9a825; 
    color: #222E39; 
    transition: all 0.3s; 
    font-size: 16px; 
    text-decoration: none; 
}

.footer-social a:hover { 
    background: #fff; 
    color: #f9a825; 
    transform: scale(1.1); 
}

/* ============================================= */
/* UTILITY CLASSES */
/* ============================================= */
.text-center {
    text-align: center;
}

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 1.5rem; }

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Breadcrumb */
.custom-breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 10px;
}

.custom-breadcrumb .breadcrumb-item a { 
    color: #fff; 
    text-decoration: none; 
    font-weight: 500; 
}

.custom-breadcrumb .breadcrumb-item a:hover { 
    color: #ffc107; 
}

.custom-breadcrumb .breadcrumb-item.active { 
    color: #ffc107; 
    font-weight: 600; 
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›"; 
    color: #fff; 
    padding: 0 8px; 
    font-size: 1rem;
}

/* ============================================= */
/* RESPONSIVE MEDIA QUERIES */
/* ============================================= */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .about-hero-section {
        height: 300px;
        margin-top: 70px;
    }
    
    .menu-box img,
    .gallery-box img {
        height: 150px;
    }
    
    .col-6 {
        padding: 5px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
    
    .footer-section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 70vh;
    }
    
    .about-section,
    .menu-section,
    .gallery-section,
    .reviews-section {
        padding: 50px 0;
    }
    
    .about-heading,
    .menu-heading,
    .gallery-heading {
        font-size: 28px;
    }
}
/* Fix content hiding behind fixed header */
.about-hero-section,
.hero-section {
    margin-top: 80px; /* Same as header height */
}

/* For all sections that have anchor links */
section[id] {
    scroll-margin-top: 100px; /* Extra space for fixed header */
}
/* ============================================= */
/* WHATSAPP & CALL ICONS */
/* ============================================= */

/* WhatsApp Icon */
.whatsapp-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

/* Phone Call Icon */
.phone-call {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.phone-link {
    display: flex;
    align-items: center;
    background: #007bff;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    font-weight: 600;
}

.phone-link:hover {
    background: #0056b3;
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

.whatsapp-link i,
.phone-link i {
    font-size: 20px;
    margin-right: 8px;
}

.call-text {
    font-weight: 600;
    font-size: 14px;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .whatsapp-call,
    .phone-call {
        bottom: 15px;
    }
    
    .whatsapp-call {
        right: 15px;
    }
    
    .phone-call {
        left: 15px;
    }
    
    .whatsapp-link,
    .phone-link {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .call-text {
        font-size: 12px;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .whatsapp-link,
    .phone-link {
        padding: 8px 14px;
    }
    
    .whatsapp-link i,
    .phone-link i {
        font-size: 18px;
        margin-right: 6px;
    }
    
    .call-text {
        font-size: 11px;
    }
}