@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
    --primary-color: #f37021;     /* Warm Saffron Orange */
    --secondary-color: #0f753a;   /* Pure Veg Deep Green */
    --dark-color: #1a1a1a;        /* Charcoal Black */
    --footer-bg: #f37021;         /* Orange Footer Background */
    --light-bg: #fdfaf7;          /* Fresh off-white with warm light orange tint */
    --text-gray: #555555;         /* Body text gray */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base resets & styles */
body {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: var(--text-gray);
    line-height: 1.8;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark-color);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}

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

a:hover, a:focus {
    color: var(--secondary-color);
    text-decoration: none;
    outline: none;
}

/* Utilities */
.bg-light-custom {
    background-color: var(--light-bg);
}

.text-gold {
    color: var(--secondary-color) !important;
}

.text-burgundy {
    color: var(--primary-color) !important;
}

.pt-120 { padding-top: 120px; }
.pb-120 { padding-bottom: 120px; }
.pb-90 { padding-bottom: 90px; }
.pt-90 { padding-top: 90px; }
.pb-70 { padding-bottom: 70px; }
.pt-50 { padding-top: 50px; }

/* Section Title */
.section-title {
    margin-bottom: 50px;
}

.section-title h5 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title h5.text-left {
    justify-content: flex-start;
}

.section-title h5 span.line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: var(--secondary-color);
    margin-right: 10px;
}

.section-title h2 {
    font-size: 44px;
    line-height: 1.2;
    color: var(--dark-color);
}

/* Buttons */
.btn-custom {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 35px;
    border-radius: 0;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-burgundy {
    background-color: var(--primary-color);
    color: #fff !important;
    border: 1px solid var(--primary-color);
}

.btn-burgundy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    transition: var(--transition);
    z-index: -1;
}

.btn-burgundy:hover::before {
    left: 0;
}

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

.btn-outline-gold {
    background-color: transparent;
    color: #fff !important;
    border: 1px solid var(--secondary-color);
}

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

/* Header Area */
.header-top {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.header-top-left {
    display: flex;
    align-items: center;
}

.header-top-left i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.header-cta ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

.header-cta ul li {
    margin-left: 25px;
    display: flex;
    align-items: center;
}

.header-cta ul li i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* Navigation Bar */
.menu-area {
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    z-index: 99;
    transition: var(--transition);
}

.navbar-brand img {
    height: 60px;
    transition: var(--transition);
}

.nav-link {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark-color) !important;
    padding: 25px 15px !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: right;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-section.inner-hero {
    height: auto;
    min-height: 50vh;
    padding: 120px 0 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 16, 10, 0.75), rgba(243, 112, 33, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h5 {
    color: #e6b56c;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-content h1 {
    color: #fff;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

/* Feature Cards */
.feature-card {
    background: #fff;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(243, 112, 33, 0.08);
    border-bottom: 3px solid var(--primary-color);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-color);
}

.feature-icon-wrapper i {
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper i {
    color: #fff;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Stats Section */
.stat-box {
    text-align: center;
    padding: 30px 15px;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-box h5 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-color);
}

/* About Page / Bio Section */
.about-img-container {
    position: relative;
    padding-right: 30px;
}

.about-img-container::after {
    content: '';
    position: absolute;
    border: 10px solid var(--secondary-color);
    top: 30px;
    right: 0;
    bottom: -30px;
    left: 60px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-badge span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.experience-badge p {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services Grid */
.service-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.service-img {
    position: relative;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(243, 112, 33, 0.5) 15%, rgba(16, 16, 16, 0.05)); /* Reduced overlay opacity */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
    transition: var(--transition);
}

.service-overlay h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 10px;
}

.service-overlay p {
    font-size: 14px;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    line-height: 1.5;
}

.service-card:hover .service-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* Menu Page Styling */
.menu-tab-nav {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid var(--light-bg);
    margin-bottom: 50px;
}

.menu-tab-btn {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    background: none;
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    color: var(--dark-color);
    position: relative;
    transition: var(--transition);
}

.menu-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.menu-tab-btn:hover,
.menu-tab-btn.active {
    color: var(--primary-color);
}

.menu-tab-btn.active::after {
    transform: scaleX(1);
}

.menu-section {
    display: none;
}

.menu-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Menu Course Styling */
.course-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 10px;
    text-transform: capitalize;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    padding-right: 15px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.menu-item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted #ccc;
    position: relative;
    top: -4px;
    z-index: 1;
}

.menu-item-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 5px;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Make Your Own Menu Interactive Section */
.interactive-menu-container {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.category-box {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.category-box h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-left: 3px solid var(--secondary-color);
    padding-left: 10px;
}

.menu-checkbox-item {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

.menu-checkbox-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 3px;
    transition: var(--transition);
}

.menu-checkbox-item:hover input ~ .checkmark {
    background-color: #ccc;
}

.menu-checkbox-item input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.menu-checkbox-item input:checked ~ .checkmark:after {
    display: block;
}

.menu-checkbox-item .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.floating-counter {
    position: fixed;
    bottom: 30px;
    right: 110px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.floating-counter:hover {
    transform: scale(1.05);
    background-color: var(--secondary-color);
}

.floating-counter span.badge {
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-size: 16px;
}

/* Fixed Menu Pricing Cards */
.pricing-card {
    background: #fff;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 10px;
    font-weight: bold;
    padding: 3px 10px;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.price span {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: normal;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Forms & Booking */
.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-group-custom {
    position: relative;
    margin-bottom: 25px;
}

.form-group-custom input,
.form-group-custom textarea,
.form-group-custom select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e2e2e2;
    background-color: var(--light-bg);
    color: var(--dark-color);
    font-size: 15px;
    border-radius: 0;
    transition: var(--transition);
}

.form-group-custom input:focus,
.form-group-custom textarea:focus,
.form-group-custom select:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    outline: none;
}

/* Map area */
.map-container {
    height: 450px;
    width: 100%;
    margin-top: 50px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Section */
.footer-area {
    background-color: var(--footer-bg);
    color: #fff;
}

.footer-top {
    padding-top: 90px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-widget-logo img {
    height: 60px;
    margin-bottom: 25px;
}

.footer-widget h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-contact-list li i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-right: 15px;
    margin-top: 4px;
}

.footer-contact-list li span {
    line-height: 1.5;
}

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

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

.footer-links-list li a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.footer-links-list li a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.footer-social-links {
    margin-top: 20px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: #fff;
    margin-right: 10px;
    transition: var(--transition);
}

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

.contact-social-links {
    margin-top: 20px;
}

.contact-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    margin-right: 10px;
    transition: var(--transition);
}

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

.transition-scale {
    transition: var(--transition);
}

.transition-hover:hover .transition-scale {
    transform: scale(1.08);
}

.copyright-wrap {
    background-color: #111;
    padding: 25px 0;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Floating Shortcuts */
.floating-shortcut {
    position: fixed;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    color: #fff !important;
    font-size: 24px;
    transition: var(--transition);
}

.floating-shortcut:hover {
    transform: scale(1.1) rotate(10deg);
}

.shortcut-phone {
    bottom: 110px;
    background-color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.shortcut-phone:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
}

.shortcut-whatsapp {
    bottom: 30px;
    background-color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.shortcut-whatsapp:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color) !important;
}

.shortcut-email {
    bottom: 190px;
    background-color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.shortcut-email:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
}

/* Floating Left Shortcuts */
.floating-left-shortcut {
    position: fixed;
    left: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    color: #fff !important;
    font-size: 24px;
    transition: var(--transition);
}

.floating-left-shortcut:hover {
    transform: scale(1.1) rotate(-10deg);
}

.shortcut-left-fb {
    bottom: 110px;
    background-color: #1877F2;
    border: 2px solid #fff;
}

.shortcut-left-ig {
    bottom: 30px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: 2px solid #fff;
}

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

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

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .nav-link {
        padding: 12px 15px !important;
    }
    .nav-link::after {
        display: none;
    }
    .hero-content h1 {
        font-size: 46px;
    }
    .pricing-card.featured {
        transform: none;
    }
    .about-img-container {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .about-img-container::after {
        display: none;
    }
    .menu-tab-nav {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    .menu-tab-btn {
        font-size: 18px;
        padding: 10px 20px;
    }
    .hero-section.inner-hero {
        padding: 100px 0 60px;
    }
}

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 32px;
    }
    .hero-content h1 {
        font-size: 34px;
    }
    .btn-custom {
        padding: 12px 25px;
        font-size: 16px;
    }
    .interactive-menu-container {
        padding: 20px 15px;
    }
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    .menu-tab-btn {
        font-size: 14px;
        padding: 8px 12px;
    }
    .hero-section.inner-hero {
        padding: 80px 0 50px;
    }
}

/* Special Offers Section */
.special-offers-section {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.offers-header {
    margin-bottom: 40px;
}

.offers-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    line-height: 1.2;
}

.offers-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 2px;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.offers-divider {
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    position: relative;
}

.offers-divider::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 27px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

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

.offer-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f2f2f2;
    transition: var(--transition);
}

.offer-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 112, 33, 0.08);
    border-color: rgba(243, 112, 33, 0.15);
}

.offer-img-frame {
    width: 110px;
    height: 90px;
    border: 5px solid #f4f4f4;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.offer-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-details h4 {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.offer-details p {
    color: var(--text-gray);
    font-size: 13.5px;
    margin: 0;
    line-height: 1.4;
}

.offer-arrow-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 15px;
}

.offer-arrow-btn i {
    font-size: 14px;
    transition: var(--transition);
}

.offer-item:hover .offer-arrow-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.offer-item:hover .offer-arrow-btn i {
    transform: translateX(2px);
}

/* Collage Grid */
.offers-grid-container {
    position: relative;
    padding: 10px;
}

.grid-img-wrapper {
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border: 3px solid #ffffff;
}

.grid-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.grid-img-wrapper:hover img {
    transform: scale(1.08);
}

/* Explore Center Badge */
.explore-badge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.explore-badge-link {
    width: 120px;
    height: 120px;
    background-color: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.explore-badge-link:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(243, 112, 33, 0.2);
    border-color: var(--secondary-color);
}

.explore-badge-link .small-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 2px;
    font-weight: 500;
}

.explore-badge-link .main-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    color: var(--dark-color);
    letter-spacing: 1px;
    line-height: 1.1;
}

.explore-badge-link .bold-text {
    font-weight: 700;
    color: var(--primary-color);
}

/* Media Queries for Special Offers */
@media (max-width: 991px) {
    .offers-grid-container {
        max-width: 500px;
        margin: 0 auto;
    }
    .grid-img-wrapper {
        height: 180px;
    }
    .explore-badge-link {
        width: 100px;
        height: 100px;
    }
    .explore-badge-link .small-text {
        font-size: 10px;
    }
    .explore-badge-link .main-text {
        font-size: 12px;
    }
}

}

/* Regular Menu Masonry Layout & Aesthetics */
.regular-menu-section {
    background-color: #fdfaf7; /* Warm off-white background */
    padding: 80px 0;
}

.menu-container {
    max-width: 1600px;
    margin: 0 auto;
    column-count: 4;
    column-gap: 24px;
}

/* Individual Menu Cards */
.menu-card {
    background-color: #ffffff;
    border: 1px solid #f3ebe1;
    border-radius: 10px;
    padding: 24px 24px 24px 24px; /* Standard uniform padding */
    margin-bottom: 24px;
    break-inside: avoid; /* Prevents cards from breaking across columns */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative; 
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 112, 33, 0.08);
    border-color: rgba(243, 112, 33, 0.15);
}

/* Card Headings */
.menu-card h3 {
    margin-top: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 17px;
    color: var(--dark-color);
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #f2f2f2;
    padding-bottom: 8px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2; /* Sit in front of background watermark */
}

.menu-card h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary-color); /* Orange underline accent */
}

/* The List of Items */
.menu-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2; /* Sit in front of background watermark */
}

.menu-list li {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.7;
    color: #4a5568;
    display: flex;
    align-items: flex-start;
    margin-bottom: 6px;
}

/* Tiny orange square bullets to match the aesthetic */
.menu-list li::before {
    content: '■'; 
    color: var(--primary-color); /* Brand Orange */
    font-size: 8px;
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Watermark Background Image positioning */
.card-image {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 130px;
    height: 130px;
    opacity: 0.5; /* 50% opacity watermark background */
    z-index: 1; /* Render behind text contents */
    pointer-events: none; /* Allow mouse selection on list text */
    object-fit: contain;
}

/* =========================================
   RESPONSIVE DESIGN FOR MASONRY
   ========================================= */

@media (max-width: 1400px) {
    .menu-container { column-count: 3; }
}

@media (max-width: 992px) {
    .menu-container { column-count: 2; }
}

@media (max-width: 600px) {
    .menu-container { column-count: 1; }
    .menu-card { margin-bottom: 15px; }
}

/* Navbar Dropdown Menu Overrides */
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 10px;
}

.navbar-nav .dropdown-item {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    color: var(--dark-color);
    transition: var(--transition);
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:active {
    background-color: #fdfaf7;
    color: var(--primary-color);
}

.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

}

/* Birthday Menu Layout & Aesthetics */
.birthday-menu-section {
    background-color: #fdfaf7; /* Warm cream background */
    padding: 80px 0;
}

.birthday-menu-container {
    display: flex;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.birthday-menu-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.birthday-side-col {
    flex: 1; /* Left and Right columns take equal smaller space */
}

.birthday-center-col {
    flex: 1.8; /* Center column is wider for the banner and starters */
}

/* Individual Menu Cards */
.birthday-menu-card {
    background-color: #ffffff;
    border: 1px solid #f3ebe1;
    border-radius: 12px;
    padding: 24px 24px 24px 24px; /* Standard uniform padding */
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    position: relative;
    height: fit-content;
    transition: var(--transition);
}

.birthday-menu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 112, 33, 0.08);
    border-color: rgba(243, 112, 33, 0.15);
}

/* Special styling for the Birthday Banner card */
.birthday-banner-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #f3ebe1;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.birthday-banner-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.birthday-banner-card:hover img {
    transform: scale(1.02);
}

/* Card Headings */
.birthday-menu-card h3 {
    margin-top: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 19px;
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    z-index: 2; /* Sit in front of background watermark */
}

/* The short orange underline under headings */
.birthday-menu-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color); /* Orange accent */
}

/* The List of Items */
.birthday-menu-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2; /* Sit in front of background watermark */
}

.birthday-menu-list li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #4a5568;
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

/* Orange checked box bullet points */
.birthday-menu-list li::before {
    content: '\2611'; /* Unicode for checkbox with check */
    color: var(--primary-color); /* Brand Orange */
    font-size: 16px;
    margin-right: 10px;
    line-height: 1.4;
    flex-shrink: 0;
}

/* Multi-column list for Starters */
.birthday-starters-list {
    column-count: 3;
    column-gap: 20px;
}

.birthday-starters-list li {
    break-inside: avoid;
    margin-bottom: 6px;
}

/* Watermark Background Image positioning */
.birthday-card-image {
    position: absolute;
    bottom: 10px;
    right: 10px;
    height: 140px;
    width: 140px;
    opacity: 0.5; /* 50% opacity watermark background */
    z-index: 1; /* Render behind text contents */
    pointer-events: none; /* Allow mouse selection on list text */
    object-fit: contain;
}

/* =========================================
   RESPONSIVE DESIGN FOR BIRTHDAY LAYOUT
   ========================================= */

/* Tablets */
@media (max-width: 1024px) {
    .birthday-menu-container {
        flex-wrap: wrap;
    }
    .birthday-side-col {
        flex: 1 1 45%;
    }
    .birthday-center-col {
        order: -1; /* Pushes the center column (banner/starters) to the top */
        flex: 1 1 100%;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .birthday-menu-container {
        flex-direction: column;
    }
    .birthday-side-col, .birthday-center-col {
        flex: 1 1 100%;
    }
    .birthday-starters-list {
        column-count: 1; /* Stacks starters into a single column on mobile */
    }
    .birthday-menu-card {
        padding-bottom: 20px; /* Reduce bottom padding on mobile */
    }
    .birthday-card-image {
        display: none; /* Hide images on very small screens to save space */
    }
}

/* Pricing Packages Styles */
.packages-section {
    background: url('../img/background.jpg') no-repeat center center / cover !important;
    padding: 100px 0;
    position: relative;
}

.packages-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background-image: url('../img/jamun.png'); /* Accent watermark in background */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.03;
    pointer-events: none;
}

.package-card {
    background-color: #fdfaf7; /* Warm cream/off-white background */
    border: 1px solid #f3ebe1;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(243, 112, 33, 0.06);
    border-color: rgba(243, 112, 33, 0.15);
}

.package-card-header {
    text-align: center;
    border-bottom: 1px solid rgba(243, 112, 33, 0.15);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.package-title {
    font-family: 'Alex Brush', cursive;
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    flex-grow: 1;
}

.package-list li {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: #444444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(243, 112, 33, 0.08);
}

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

.package-list li .item-name {
    font-weight: 500;
}

.package-list li .item-count {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    color: var(--dark-color);
}

.package-price-wrap {
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.package-price-label {
    font-family: 'Alex Brush', cursive;
    font-size: 34px;
    color: #444444;
    line-height: 1;
}

.package-price-amount {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color); /* Tun Tun Vegetarian Green */
    line-height: 1.2;
}

.package-btn-wrap {
    text-align: center;
}

.package-btn {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color); /* Tun Tun Saffron Orange */
    background-color: #ffffff;
    border: 1.5px solid var(--primary-color);
    padding: 10px 35px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
}

.package-btn:hover {
    color: #ffffff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Menu Category Cards on menu.html */
.menu-cats-section {
    padding: 60px 0 30px 0;
    background-color: #ffffff;
}

.menu-cat-card {
    background: #ffffff;
    border: 1px solid #f3ebe1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(243, 112, 33, 0.08);
    border-color: rgba(243, 112, 33, 0.15);
}

.menu-cat-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.menu-cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.menu-cat-body {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.menu-cat-body h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-cat-body p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.menu-cat-btn-wrap {
    text-align: center;
}

.menu-cat-btn {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--primary-color);
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.menu-cat-btn:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

/* Hero Image Slider (Carousel) */
#heroCarousel {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 100%;
}

#heroCarousel .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}

.hero-slider-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 16, 10, 0.45), rgba(243, 112, 33, 0.15)); /* Reduced opacity brand overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    z-index: 15;
    width: 5%;
}

#heroCarousel .carousel-indicators {
    position: relative;
    bottom: 0;
    margin: 25px auto 0 auto;
    z-index: 15;
}

#heroCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

#heroCarousel .carousel-indicators button.active {
    background-color: var(--primary-color);
}

/* Animations for Hero Overlay Text */
.animate-fade-in-down {
    animation: fadeInDown 1.2s ease-out both;
}

.animate-fade-in-up {
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.animate-fade-in-delay {
    animation: fadeInUp 1.4s ease-out 0.6s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1.4s ease-out 0.9s both;
}

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

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

@media (max-width: 768px) {
    #heroCarousel {
        height: 80vh; /* Increased mobile hero view height */
    }
    #heroCarousel .hero-content h1 {
        font-size: 34px !important;
        line-height: 1.2;
    }
}

/* Gallery Showcase Grid styling */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    width: 100%;
    height: 250px; /* Fixed height for absolute grid uniformity */
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops image cleanly to fill container */
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(243, 112, 33, 0.7); /* Saffron orange themed overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Floating FSSAI Badge on Hero Banners */
.fssai-hero-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 10;
    pointer-events: none;
}

.fssai-hero-badge img {
    height: 28px; /* Reduced to 50% size (28px height) */
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

@media (max-width: 768px) {
    .fssai-hero-badge {
        top: 15px;
        right: 15px;
    }
    .fssai-hero-badge img {
        height: 20px; /* Reduced to 50% size (20px height) */
    }
}





