/* ========================================
   BABA KIDS STOP - CUSTOM STYLESHEET
   Authentic Afghani & Hyderabadi BBQ
======================================== */

/* ========================================
   ROOT VARIABLES
======================================== */
:root {
    --primary-color: #d32f2f;
    --primary-dark: #b71c1c;
    --primary-light: #ff6659;
    --secondary-color: #ff6f00;
    --secondary-dark: #c43e00;
    --secondary-light: #ffa040;
    --dark-color: #212121;
    --light-color: #fafafa;
    --gray-color: #757575;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --info-color: #2196f3;

    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;

    --transition: all 0.3s ease-in-out;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ========================================
   GLOBAL STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

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

a:hover {
    color: var(--primary-dark);
}

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

.btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Section Utilities */
.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   SECONDARY HEADER (TOP BAR)
======================================== */
.secondary-header {
    background-color: var(--dark-color);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.secondary-header a {
    color: #fff;
}

.secondary-header a:hover {
    color: var(--primary-light);
}

.top-info .info-item {
    margin-right: 25px;
    display: inline-block;
}

.top-info .info-item i {
    margin-right: 5px;
    color: var(--primary-color);
}

.ticker {
    color: var(--secondary-color);
    font-weight: 600;
}

.social-icons a {
    color: #fff;
    font-size: 16px;
    margin-left: 15px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ========================================
   PRIMARY HEADER (NAVIGATION)
======================================== */
.primary-header {
    background-color: #fff !important;
    box-shadow: var(--shadow-sm);
    /* padding: 15px 0; */
    padding: 10px 0;
}

.primary-header.sticky-header {
    padding: 0;
}

.primary-header .logo-img {
    /* height: 65px; */
    transition: 0.3s all ease-in-out;
}

.primary-header.sticky-header .logo-img {
    height: 60px;
    transition: 0.3s all ease-in-out;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 95px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}

.brand-text {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 20px !important;
    transition: var(--transition);
    font-size: 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.btn-cta {
    padding: 10px 25px;
    font-size: 14px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FF6F01;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 35px;
    font-size: 16px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    font-size: 30px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   BRAND SNAPSHOT
======================================== */
.brand-snapshot {
    padding: 80px 0;
}

.brand-image {
    position: relative;
}

.brand-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.brand-badge i {
    margin-right: 8px;
    font-size: 20px;
}

.brand-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item h5 {
    margin-bottom: 8px;
    font-size: 18px;
}

.feature-item p {
    margin: 0;
    color: var(--gray-color);
    font-size: 14px;
}

/* ========================================
   SIGNATURE DISHES
======================================== */
.signature-dishes {
    padding: 80px 0;
}

.dish-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.dish-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.dish-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.dish-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.dish-content {
    padding: 25px;
}

.dish-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.dish-description {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 14px;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dish-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ========================================
   WHY CHOOSE US
======================================== */
.why-choose {
    padding: 80px 0;
}

.feature-box {
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 36px;
    color: #fff;
}

.feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--gray-color);
    margin: 0;
}

.trust-indicators {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.trust-item {
    padding: 20px;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.trust-label {
    color: var(--gray-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   MENU PREVIEW
======================================== */
.menu-preview {
    padding: 80px 0;
}

.menu-category-card {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.9), rgba(255, 111, 0, 0.9));
    color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.menu-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.9), rgba(211, 47, 47, 0.9));
    opacity: 0;
    transition: var(--transition);
}

.menu-category-card:hover::before {
    opacity: 1;
}

.menu-category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.menu-icon {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.menu-category-card h4 {
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.menu-category-card p {
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ========================================
   GALLERY PREVIEW
======================================== */
.gallery-preview {
    padding: 80px 0;
}

/* Homepage Gallery Preview */
.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 280px;
}

.home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.home-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(211, 47, 47, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

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

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

.home-gallery-link {
    color: #fff;
    font-size: 36px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.home-gallery-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: scale(1.1);
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials {
    padding: 80px 0;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--secondary-color);
}

.stars i {
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

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

.author-name {
    font-size: 16px;
    margin-bottom: 2px;
}

.author-location {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
}

.google-badge,
.yelp-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.google-badge {
    background-color: #f1f3f4;
    color: #5f6368;
}

.yelp-badge {
    background-color: #d32323;
    color: #fff;
}

/* ========================================
   LOCATION & CONTACT
======================================== */
.location-contact {
    padding: 80px 0;
}

.contact-info-box {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 15px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #fff;
    font-size: 20px;
}

.contact-detail h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-detail p {
    margin: 0;
    color: var(--gray-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ========================================
   CTA BANNER
======================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-banner h2,
.cta-banner p {
    color: #fff;
}

/* ========================================
   FOOTER
======================================== */
.footer-section {
    background-color: var(--dark-color);
    color: #fff;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-smoke-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/smoke-texture.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.footer-widget {
    position: relative;
    z-index: 1;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 200px;
    margin-bottom: 10px;
    display: block;
    object-fit: contain;
}

.brand-name {
    color: #fff;
    font-size: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list .day {
    color: rgba(255, 255, 255, 0.9);
}

.hours-list .time {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-map iframe {
    border-radius: 10px;
}

.footer-address {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-box h6 {
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: #fff;
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright,
.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

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

/* ========================================
   PAGE HEADER (INTERNAL PAGES)
======================================== */
.page-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/page-header-bg.jpg') center/cover;
    color: #fff;
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.7), rgba(255, 111, 0, 0.5));
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   MENU PAGE
======================================== */
.menu-tabs-section {
    position: sticky;
    top: 85px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.menu-nav {
    flex-wrap: wrap;
    /* gap: 10px; */
    gap: 5px;
}

.menu-nav .nav-link {
    color: var(--dark-color);
    /* padding: 12px 25px; */
    padding: 8px 17px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 16px;
}

.menu-nav .nav-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.menu-nav .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
}

.menu-category-header {
    margin-bottom: 40px;
}

.category-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.category-description {
    font-size: 1.1rem;
    color: var(--gray-color);
}

.menu-item-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.menu-item-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.menu-item-card.highlight {
    border: 2px solid var(--primary-color);
}

.menu-item-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.menu-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.menu-item-description {
    color: var(--gray-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ========================================
   GALLERY PAGE
======================================== */
.gallery-filter {
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-filter .nav-link {
    color: var(--dark-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.gallery-filter .nav-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.gallery-filter .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
}

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

.gallery-grid-item {
    animation: fadeIn 0.5s ease-in-out;
}

.gallery-grid-item.hide {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

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

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

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(211, 47, 47, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-card-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.gallery-card-content h4 {
    color: #fff;
    margin-bottom: 10px;
}

.gallery-card-content .gallery-link {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    line-height: 60px;
    font-size: 24px;
    margin-top: 15px;
    transition: var(--transition);
}

.gallery-card-content .gallery-link:hover {
    transform: scale(1.1);
}

.instagram-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

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

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.9), rgba(255, 111, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.instagram-overlay i {
    font-size: 48px;
    color: #fff;
}

/* ========================================
   CONTACT PAGE
======================================== */
.quick-contact-card {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quick-contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.quick-contact-icon i {
    font-size: 32px;
    color: #fff;
}

.quick-contact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.quick-contact-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.contact-form-wrapper {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 15px;
}

.contact-form .form-label {
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.25);
}

.contact-info-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.contact-info-list {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: #fff;
    font-size: 20px;
}

.contact-info-content h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

.hours-list-detailed {
    list-style: none;
    padding: 0;
}

.hours-list-detailed li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.hours-list-detailed li:last-child {
    border-bottom: none;
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-links-large a {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-links-large a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* ========================================
   ABOUT PAGE
======================================== */
.story-image-grid img {
    border-radius: 15px;
}

.heritage-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.heritage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.heritage-icon i {
    font-size: 36px;
    color: #fff;
}

.heritage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card {
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 32px;
    color: #fff;
}

.founder-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-detail-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.feature-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.commitment-list {
    margin-top: 30px;
}

.commitment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.commitment-item i {
    font-size: 24px;
    color: var(--success-color);
    flex-shrink: 0;
}

.commitment-item h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.commitment-item p {
    margin: 0;
    color: var(--gray-color);
    font-size: 14px;
}

/* ========================================
   RESPONSIVE STYLES
======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

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

    .home-gallery-item {
        height: 220px;
    }

    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-card img {
        height: 250px;
    }

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

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

    .home-gallery-item-large,
    .home-gallery-item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

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

    .section-description {
        font-size: 0.95rem;
    }

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

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

    .home-gallery-item {
        height: 200px;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-card img {
        height: 220px;
    }

    .menu-nav .nav-link {
        padding: 10px 15px;
        font-size: 13px;
    }

    .secondary-header .top-info {
        text-align: center;
    }

    .secondary-header .info-item {
        display: block;
        margin: 5px 0;
    }

    .brand-features .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .brand-features .feature-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .dish-card {
        margin-bottom: 20px;
    }

    .feature-box {
        padding: 25px 15px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .contact-info-box {
        padding: 30px 20px;
    }

    .contact-detail {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .action-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .map-container iframe {
        min-height: 300px !important;
    }

    .cta-banner .display-5 {
        font-size: 1.75rem;
    }

    .cta-banner .lead {
        font-size: 1rem;
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .logo-img {
        height: 45px;
    }

    .footer-logo-img {
        height: 45px;
    }

    /* Hide secondary header on mobile */
    .secondary-header {
        display: none;
    }

    /* Hide CTA buttons in mobile nav */
    .primary-header .btn-cta {
        display: none;
    }

    /* Footer mobile improvements */
    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .hours-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 15px;
    }

    .hours-list .day {
        font-weight: 600;
    }

    .footer-contact {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .newsletter-form input {
        font-size: 0.9rem;
    }

    .newsletter-form button {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.5rem;
    }

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

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

    .section-label {
        font-size: 0.8rem;
    }

    .trust-number {
        font-size: 2rem;
    }

    .dish-price {
        font-size: 1.25rem;
    }

    .dish-name {
        font-size: 1.25rem;
    }

    .feature-box h4 {
        font-size: 1.1rem;
    }

    .menu-category-card h4 {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .author-name {
        font-size: 1rem;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .footer-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .footer-links li a,
    .footer-contact,
    .hours-list {
        font-size: 0.85rem;
    }

    /* Hide secondary header on small mobile */
    .secondary-header {
        display: none;
    }

    /* Stack footer columns vertically with better spacing */
    .footer-section .col-lg-3 {
        margin-bottom: 25px;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.8rem;
    }

    .footer-bottom .row>div {
        text-align: center !important;
        margin-bottom: 10px;
    }

    .btn-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .primary-header {
        padding: 10px 0;
    }



    .btn-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .hero-section {
        min-height: 70vh;
        padding: 30px 0;
    }

    .brand-snapshot,
    .signature-dishes,
    .why-choose,
    .menu-preview,
    .gallery-preview,
    .testimonials,
    .location-contact {
        padding: 40px 0 !important;
    }
}