@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');


/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Cinzel", serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Ensure no gaps on mobile */
@media (max-width: 968px) {
    body {
        margin: 0;
        padding: 0;
    }

    html {
        margin: 0;
        padding: 0;
    }
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(128, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(128, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    height: 90px;
    transition: all 0.3s ease;
    will-change: background-color, height;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}

.logo {
    position: relative;
    z-index: 1001;
}

.logo-img {
    height: 60px;
    width: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brand-name {
    font-family: "Cinzel", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    letter-spacing: 1px;
}

.brand-tagline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tagline-line {
    width: 20px;
    height: 2px;
    background: #ffffff;
}

.tagline-text {
    font-family: "Cinzel", serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Navigation */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

.nav-links a:hover {
    color: #FFD93D;
    opacity: 1;
}

.nav-links a.active {
    color: #FFD93D;
    font-weight: 600;
    opacity: 1;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFD93D;
    border-radius: 1px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}

.order-btn {
    font-family: "Poppins", sans-serif;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-align: center;
    min-width: 120px;
}

.order-btn:hover {
    background: #ffffff;
    color: #800000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: #ffffff;
    color: #800000;
    transform: scale(1.05);
}

/* Header scroll effect */
.header.scrolled {
    background: rgba(128, 0, 0, 0.98);
    box-shadow: 0 4px 25px rgba(128, 0, 0, 0.3);
    height: 80px;
}

.header.scrolled .logo-img {
    height: 50px;
    width: 50px;
}

.header.scrolled .brand-name {
    font-size: 1.6rem;
}

/* Header always stays fixed and visible */
.header {
    transform: translateY(0) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

/* Hero section styles */
.hero {
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin-top: 90px;
    overflow: hidden;
}

/* Fix mobile gap */
@media (max-width: 968px) {
    .hero {
        margin-top: 80px;
        height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
    }
}

/* Mobile First - Force vertical layout */
@media (max-width: 768px) {
    .hero {
        margin-top: 75px;
        height: auto;
        /* min-height: calc(100vh - 75px); */
    }

    .banner-main-content {
        padding: 0 10px;
    }

    .banner-branding-section {
        padding: 25px 15px;
        margin-bottom: 25px;
        margin-top: 15px;
    }

    .banner-brand-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .banner-reels-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        margin-top: 20px;
        position: relative;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        padding: 0;
        width: 100%;
    }

    .banner-reel-card {
        display: block !important;
        margin: 0 auto;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
    }

    /* Reorder reels for mobile: reel2 first, then reel1, then reel3 */
    .banner-reel-card[data-reel="2"] {
        order: 1;
        width: 100%;
        height: 70vh;
        aspect-ratio: 9/16;
        max-width: 100%;
    }

    .banner-reel-card[data-reel="1"] {
        order: 2;
        width: 100%;
        height: 60vh;
        aspect-ratio: 1/1;
        max-width: 100%;
    }

    .banner-reel-card[data-reel="3"] {
        order: 3;
        width: 100%;
        height: 60vh;
        aspect-ratio: 1/1;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 70px;
        /* height: calc(100vh - 70px); */
        /* min-height: calc(100vh - 70px); */

    }

    .banner-main-content {
        padding: 0 5px;
    }

    .banner-branding-section {
        padding: 20px 10px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .banner-brand-title {
        font-size: 1.9rem;
        line-height: 1.1;
    }

    .banner-reel-card {
        display: block !important;
        margin: 0 auto;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 15px;
    }

    /* Reorder reels for mobile: reel2 first, then reel1, then reel3 */
    .banner-reel-card[data-reel="2"] {
        order: 1;
        width: 100%;
        height: 75vh;
        aspect-ratio: 9/16;
        max-width: 100%;
    }

    .banner-reel-card[data-reel="1"] {
        order: 2;
        width: 100%;
        height: 65vh;
        aspect-ratio: 1/1;
        max-width: 100%;
    }

    .banner-reel-card[data-reel="3"] {
        order: 3;
        width: 100%;
        height: 65vh;
        aspect-ratio: 1/1;
        max-width: 100%;
    }

    .banner-reels-container {
        display: flex !important;
        flex-direction: column !important;
        margin-top: 10px !important;
        gap: 0 !important;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        padding: 0;
        width: 100%;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Ensure hero background covers the full area on mobile */
@media (max-width: 968px) {
    .hero-background {
        top: 0;
        height: 100vh;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/chicken-biryani.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

.banner-main-content {
    width: 100%;
    min-height: 100vh;
    padding: 20px;
    padding-top: 0;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.banner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-logo-container {
    display: flex;
    align-items: center;
}

.banner-logo {
    width: 50px;
    height: 50px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
}

.banner-page-title {
    font-family: 'Cinzel', serif;
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-follow-btn {
    background: #405de6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(64, 93, 230, 0.3);
}

.banner-follow-btn:hover {
    background: #3b4cc7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 93, 230, 0.4);
}

.banner-instagram-icon {
    font-size: 1.2rem;
}

/* Branding Section */
.banner-branding-section {
    text-align: center;
    margin-bottom: 0px;
    padding: 30px;
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 20px;
    /* backdrop-filter: blur(10px); */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    margin-bottom: 0px;
}

.banner-brand-title {
    font-family: 'Cinzel', serif;
    color: #FFD93D;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: banner-glow 3s ease-in-out infinite;
}

.banner-brand-subtitle {
    font-family: 'Cinzel', serif;
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 20px;
    margin-bottom: 0;
    margin-top: 0;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Reels Container */
.banner-reels-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    justify-items: center;
    align-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Reel Card */
.banner-reel-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #000;
    display: block;
}

/* Instagram Post Size (Square) for reel1 and reel3 */
.banner-reel-card[data-reel="1"],
.banner-reel-card[data-reel="3"] {
    aspect-ratio: 1/1;
    width: 300px;
    height: 370px;
}

/* Instagram Reels Size (Vertical) for reel2 */
.banner-reel-card[data-reel="2"] {
    aspect-ratio: 9/16;
    width: 300px;
    height: 500px;
}

.banner-reel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.banner-reel-video {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    overflow: hidden;
}

.banner-reel-video-element {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
}

.banner-reel-image-element {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    border-radius: 18px;
    background: #000;
}

.banner-reel-image {
    object-fit: cover !important;
    object-position: center;
    width: 100% !important;
    height: 100% !important;
    border-radius: 18px;
}

.banner-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.banner-play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.banner-play-icon {
    color: #333;
    font-size: 2rem;
    margin-left: 4px;
}

.banner-reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    z-index: 1;
}

.banner-reel-info h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.banner-reel-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.footer-bottom-wrapper {
    padding: 20px 0;
    background-color: #141414;
    text-align: center;
    margin-top: 40px;
    position: relative;
    width: 100%;
    z-index: 10;
}

.footer-bottom-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom-wrapper a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-bottom-wrapper a:hover {
    opacity: 0.8;
}

.footer-bottom-wrapper p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 10px;
}

.maghil-logo {
    width: 80px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .banner-reels-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 10px;
        position: relative;
        margin-top: 20px;
        justify-items: center;
        align-items: start;
        width: 100%;
        max-width: none;
        padding: 0 16px;
    }

    .banner-reel-card {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 320px;
    }

    /* Square cards (reel1 and reel3) */
    .banner-reel-card[data-reel="1"],
    .banner-reel-card[data-reel="3"] {
        width: 400px;
        height: 450px;
        aspect-ratio: 1/1;
    }

    /* Vertical reel (reel2) */
    .banner-reel-card[data-reel="2"] {
        width: 100%;
        height: 420px;
        aspect-ratio: 9/16;
    }

    .banner-brand-title {
        font-size: 2.2rem;
    }

    .banner-brand-subtitle {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .banner-main-content {
        padding: 15px;
        min-height: auto;
    }

    .banner-branding-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .banner-brand-title {
        font-size: 2rem;
    }

    .banner-brand-subtitle {
        font-size: 1rem;
    }

    .banner-reels-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
        position: relative;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
    }

    .banner-reel-card {
        display: block;
        margin: 0 auto;
    }

    /* Reorder reels for mobile: reel2 first, then reel1, then reel3 */
    .banner-reel-card[data-reel="2"] {
        order: 1;
        width: 250px;
        height: 500px;
        aspect-ratio: 9/16;
    }

    .banner-reel-card[data-reel="1"] {
        order: 2;
        width: 250px;
        height: 350px;
        aspect-ratio: 1/1;
    }

    .banner-reel-card[data-reel="3"] {
        order: 3;
        width: 250px;
        height: 350px;
        aspect-ratio: 1/1;
    }

    .banner-play-button {
        width: 60px;
        height: 60px;
    }

    .banner-play-icon {
        font-size: 1.5rem;
    }

    .footer-bottom-wrapper {
        position: relative;
        margin-top: 30px;
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .banner-main-content {
        padding: 10px;
        min-height: auto;
    }

    .banner-header {
        padding: 10px;
        margin-bottom: 20px;
    }

    .banner-logo {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .banner-page-title {
        font-size: 1.3rem;
    }

    .banner-follow-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .banner-branding-section {
        padding: 15px;
        margin-top: 30px;
    }

    .banner-brand-title {
        font-size: 1.8rem;
    }

    .banner-brand-subtitle {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .banner-reel-card {
        display: block;
        margin: 0 auto;
    }

    /* Reorder reels for mobile: reel2 first, then reel1, then reel3 */
    .banner-reel-card[data-reel="2"] {
        order: 1;
        width: 250px;
        height: 550px;
        margin-bottom: 20px;
        aspect-ratio: 9/16;
    }

    .banner-reel-card[data-reel="1"] {
        order: 2;
        width: 300px;
        height: 450px;
        margin-bottom: 20px;
        aspect-ratio: 1/1;
    }

    .banner-reel-card[data-reel="3"] {
        order: 3;
        width: 300px;
        height: 450px;
        margin-bottom: 20px;
        aspect-ratio: 1/1;
    }

    .banner-reels-container {
        display: flex;
        flex-direction: column;
        margin-top: 10px !important;
        gap: 15px;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
    }

    .banner-play-button {
        width: 50px;
        height: 50px;
    }

    .banner-play-icon {
        font-size: 1.2rem;
    }

    .banner-reel-info h3 {
        font-size: 1rem;
    }

    .banner-reel-info p {
        font-size: 0.8rem;
    }

    .footer-bottom-wrapper {
        position: relative;
        margin-top: 30px;
        padding: 20px 0;
        width: 100%;
    }

    .footer-bottom-wrapper .container {
        padding: 0 15px;
    }

    .footer-bottom-wrapper p {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .maghil-logo {
        width: 60px;
    }
}

/* Animations */
@keyframes banner-glow {

    0%,
    100% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 217, 61, 0.3);
    }

    50% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 217, 61, 0.6);
    }
}

@keyframes banner-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-reel-card {
    animation: banner-fadeIn 0.6s ease-out;
}

.banner-reel-card:nth-child(1) {
    animation-delay: 0.1s;
}

.banner-reel-card:nth-child(2) {
    animation-delay: 0.2s;
}

.banner-reel-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Smooth transitions for mobile slider */
.banner-reel-card {
    transition: all 0.5s ease-in-out;
}

/* Hover effects */
.banner-reel-card:hover .banner-play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.banner-reel-card:hover .banner-reel-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

/* Loading state */
.banner-reel-video-element {
    transition: opacity 0.3s ease;
}

.banner-reel-video-element.loading {
    opacity: 0.7;
}

/* Focus states for accessibility */
.nav-btn:focus,
.dot:focus,
.banner-play-button:focus {
    outline: 2px solid #FFD93D;
    outline-offset: 2px;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}


.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: brightness(0.6);
}

.hero-logo-img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 217, 61, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 217, 61, 0.2);
}

.hero-title {
    font-family: "Cinzel", serif;
    font-size: 5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    /* text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8); */
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #FFD93D, #FFD93D);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* animation: gradientShift 3s ease-in-out infinite; */
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-family: "Cinzel", serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    font-family: "Cinzel", serif;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.hero-btn.primary {
    background: #b31312;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 217, 61, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 217, 61, 0.4);
    background: #b31312;
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-btn.secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 217, 61, 0.2);
    border-color: #FFD93D;
    color: #FFD93D;
    box-shadow: 0 12px 35px rgba(255, 217, 61, 0.3);
}

.hero-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
    pointer-events: none;
}

.hero-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: rgba(255, 217, 61, 0.2);
    border-color: #FFD93D;
    color: #FFD93D;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 217, 61, 0.3);
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #FFD93D;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 217, 61, 0.6);
}

.indicator:hover {
    background: rgba(255, 217, 61, 0.8);
    transform: scale(1.2);
}

/* Features section */
.features {
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background-color: #f9f9f9;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #B31312;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
}

/* Intro section styles */
.intro-section {
    background-color: #280606;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.intro-section .shape img {
    position: absolute;
    bottom: -10%;
    right: 0%;
    width: 400px;
    animation: bounce 3s infinite;
    z-index: 0;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media screen and (max-width: 991px) {
    .intro-section .shape img {
        width: 200px;
        bottom: 35%;
        right: 0%;
    }

}

.intro-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1 !important;
}

.intro-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
}

.grid-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.grid-img:hover {
    transform: translateY(-5px);
}

.intro-content {
    color: #ffffff;
    padding: 2rem;
}

.intro-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.intro-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: #B31312;
}

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: #B31312;
}

.intro-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 400;
}

.intro-text {
    font-family: "Cinzel", serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.intro-text p {
    font-family: "Lato", sans-serif;

    margin-bottom: 1.5rem;
}

.highlight {
    color: #fff;
    font-weight: 500;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #B31312;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-family: "Cinzel", serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #FFD93D;
    color: #000000;
    transform: translateX(5px);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.spice-element-1 img {
    position: absolute;
    width: 300px;
    height: 300px;
    left: 0;
    right: 100%;
    bottom: -7%;
    z-index: 0;
    /* color: rgba(255, 217, 61, 0.1); */
    /* font-size: 3rem; */
    /* object-fit: cover; */
    animation: float 6s ease-in-out infinite;
}

.spice1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.spice2 {
    top: 60%;
    right: 5%;
    animation-delay: 2s;
}

.spice3 {
    bottom: 10%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive styles for intro section */
@media (max-width: 968px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-content h1 {
        font-size: 2.4rem;
    }

    .intro-content h2 {
        font-size: 2.4rem;
    }

    .intro-content h3 {
        font-size: 1.8rem;
    }

    .intro-images {
        order: 2;
    }

    .intro-content {
        order: 1;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .intro-section {
        padding: 4rem 1rem;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-content h3 {
        font-size: 1.5rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .grid-img {
        height: 150px;
    }
}

/* Responsive styles */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 2rem;
    }

    .brand-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 968px) {
    .header {
        height: 80px;
    }

    .header.scrolled {
        height: 70px;
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo-img {
        height: 50px;
        width: 50px;
    }

    .header.scrolled .logo-img {
        height: 45px;
        width: 45px;
    }

    .brand-name {
        font-size: 1.4rem;
    }

    .header.scrolled .brand-name {
        font-size: 1.3rem;
    }

    .tagline-text {
        font-size: 0.6rem;
    }

    .tagline-line {
        width: 15px;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .order-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        min-width: 100px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 300px;
        background: rgba(128, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 90px 0 1rem 0;
        box-shadow: 8px 0 32px rgba(128, 0, 0, 0.3);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1002;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-menu.active {
        display: block;
        transform: translateX(0);
    }

    /* Ensure mobile menu shows only navigation links */
    .nav-menu .nav-links {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        height: auto;
        align-items: stretch;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    /* Hide any filter content in mobile menu */
    .nav-menu .filter-select-container,
    .nav-menu .custom-select,
    .nav-menu .filter-bar,
    .nav-menu .filter-links,
    .nav-menu .filter-arrow {
        display: none !important;
    }

    /* Ensure mobile menu only shows navigation links */
    .nav-menu .nav-links,
    .nav-menu .nav-links li,
    .nav-menu .nav-links a {
        display: block !important;
    }

    .nav-menu .nav-links li {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        height: auto;
        align-items: stretch;
    }

    .nav-links li {
        width: 100%;
        height: auto;
    }

    .nav-links a {
        padding: 1rem 2rem;
        width: 100%;
        justify-content: flex-start;
        font-size: 1.1rem;
        border-radius: 0;
        background: transparent;
        border: none;
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.9;
        display: block;
        text-decoration: none;
    }

    .nav-links a:hover {
        background: rgba(255, 217, 61, 0.1);
        color: #FFD93D;
        opacity: 1;
    }

    .nav-links a.active {
        background: rgba(255, 217, 61, 0.1);
        color: #FFD93D;
        font-weight: 600;
        opacity: 1;
    }

    .nav-links a.active::after {
        display: none;
    }

    /* Dropdown specific styles */
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-trigger {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 2rem;
        color: #ffffff;
        font-size: 1.1rem;
        background: transparent;
    }

    .dropdown-content {
        position: static;
        background-color: transparent;
        width: 100%;
        min-width: 100%;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        transform: none !important;
    }

    .nav-dropdown.active .dropdown-content {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .dropdown-content li {
        margin: 0;
        width: 100%;
    }

    .dropdown-content a {
        color: #ffffff;
        padding: 0.75rem 3rem;
        font-size: 1.1rem;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .dropdown-content a i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
        color: #FFD93D;
    }

    .dropdown-trigger i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active .dropdown-trigger i {
        transform: rotate(180deg);
    }

    /* Mobile menu button */
    .mobile-menu-btn {
        display: flex;
        z-index: 1004;
        position: relative;
    }

    .order-btn {
        display: none;
    }

    /* Menu overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 1000;
    }

    .menu-overlay.active {
        display: block;
    }

    /* Hide filter bar when mobile menu is active */
    .menu-overlay.active~.container .filter-bar,
    body:has(.menu-overlay.active) .filter-bar {
        display: none !important;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-logo-img {
        height: 100px;
        width: 100px;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .hero-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .header {
        height: 75px;
    }

    .header.scrolled {
        height: 65px;
    }

    .logo-section {
        gap: 0.75rem;
    }

    .logo-img {
        height: 45px;
        width: 45px;
    }

    .header.scrolled .logo-img {
        height: 40px;
        width: 40px;
    }

    .brand-name {
        font-size: 1.3rem;
    }

    .header.scrolled .brand-name {
        font-size: 1.2rem;
    }

    .tagline-text {
        font-size: 0.6rem;
    }

    .tagline-line {
        width: 12px;
    }

    .order-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
        min-width: 90px;
    }
}

@media (max-width: 480px) {
    .header {
        height: 70px;
    }

    .header.scrolled {
        height: 60px;
    }

    .header-container {
        padding: 0 0.75rem;
    }

    .logo-section {
        gap: 0.5rem;
    }

    .logo-img {
        height: 40px;
        width: 40px;
    }

    .header.scrolled .logo-img {
        height: 35px;
        width: 35px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .header.scrolled .brand-name {
        font-size: 1.1rem;
    }

    .tagline-text {
        font-size: 0.55rem;
    }

    .tagline-line {
        width: 10px;
    }

    .order-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        min-width: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-logo-img {
        height: 80px;
        width: 80px;
    }

    .hero-buttons {
        /* flex-direction: column; */
        gap: 0.8rem;
    }

    .hero-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.8rem;
    }

    .hero-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .hero-navigation {
        padding: 0 1rem;
    }

    .features {
        padding: 3rem 1rem;
    }
}

.features-section {
    position: relative;
    background: #280606;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.features-section .shape img {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 300px;
    animation: bounce 3s infinite;
    z-index: 0;
}

@media screen and (max-width: 768px) {
    .features-section .shape img {
        width: 200px;
        top: -1%;
    }

}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD93D, transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #B31312;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg);
}

.feature-card h3 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #ffffff;
    font-family: "Cinzel", serif;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 217, 61, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .card-hover-effect {
    opacity: 1;
}

.features-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.spice-float {
    position: absolute;
    font-size: 2rem;
    opacity: 0.2;
    animation: floatAnimation 6s infinite ease-in-out;
}

.spice1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.spice2 {
    top: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.spice3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 3s;
}

.spice4 {
    bottom: 20%;
    right: 5%;
    animation-delay: 4.5s;
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(10px, -15px) rotate(5deg);
    }

    50% {
        transform: translate(0, -30px) rotate(0deg);
    }

    75% {
        transform: translate(-10px, -15px) rotate(-5deg);
    }
}

@media (max-width: 968px) {
    .features-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 4rem 1rem;
    }

    .features-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

.gallery-section {
    background-color: #280606;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.gallery-section .shape img {
    position: absolute;
    top: -2%;
    right: 0%;
    width: 300px;
    animation: bounce 3s infinite;
    z-index: 0;
}

@media screen and (max-width: 991px) {
    .gallery-section .shape img {
        top: 0px;
        width: 200px;
    }
}

@media screen and (max-width: 991px) {
    .gallery-section .shape img {
        top: 0px;
        width: 150px;
    }
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD93D, transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem;
    transform: translateY(100px);
    transition: transform 0.5s ease;
}

.gallery-item:hover .item-content {
    transform: translateY(0);
}

.item-content h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.item-content p {
    color: #ffffff;
    font-family: "Cinzel", serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.view-dish {
    color: #ffffff;
    text-decoration: none;
    font-family: "Cinzel", serif;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .view-dish {
    opacity: 1;
    transform: translateX(0);
}

.view-dish i {
    transition: transform 0.3s ease;
}

.view-dish:hover i {
    transform: translateX(5px);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-title {
        font-size: 2.5rem;
    }

    .gallery-section {
        padding: 4rem 1rem;
    }

    .gallery-grid {
        gap: 1rem;
    }

    .item-content {
        padding: 1.5rem;
    }

    .item-content h3 {
        font-size: 1.3rem;
    }

    .item-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .gallery-section {
        padding: 3rem 1rem;
    }

    .item-content {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    }

    .view-dish {
        opacity: 1;
        transform: translateX(0);
    }
}


/* .delivery-partners-section {
    background: #280606;
    padding: 60px 0;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.partners-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px;
}

.content-center {
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD93D;
}

.title-spacing {
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background-color: #FFD93D;
}

.center-line {
    margin: 0 auto 20px;
}

.partners-subtitle {
    color: #f8f8f4;
    font-size: 1.1rem;
}

.subtitle-spacing {
    margin-bottom: 30px;
}

.logo-container {
    display: flex;
}

.center-flex {
    justify-content: center;
    align-items: center;
}

.logo-gap {
    gap: 1.5rem;
}

.wrap {
    flex-wrap: wrap;
}

.partner-logo {
    padding: 15px;
}

.logo-link {
    display: block;
    transition: transform 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-5px);
}

.responsive-img {
    max-width: 150px;
    height: auto;
    object-fit: contain;
}


.partners-col:first-child .responsive-img {
    max-width: 180px;
}

.partners-col:last-child .responsive-img {
    max-width: 120px;
}


@media (max-width: 768px) {
    .partners-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: 1.75rem;
    }
    
    .partners-subtitle {
        font-size: 1rem;
    }
    
    .partners-col:first-child .responsive-img {
        max-width: 150px;
    }
    
    .partners-col:last-child .responsive-img {
        max-width: 100px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .partners-col:first-child .responsive-img {
        max-width: 120px;
    }
    
    .partners-col:last-child .responsive-img {
        max-width: 80px;
    }
    
    .logo-gap {
        gap: 2rem;
    }
} */

/* Floating Order Menu Styles */
.floating-order-menu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.floating-order-btn {
    background: #B31312;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #FFD93D;
    color: #B31312;
}

.floating-order-btn i {
    font-size: 1.2rem;
}

.order-options {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0;
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.floating-order-menu:hover .order-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.order-section {
    margin-bottom: 20px;
}

.order-section:last-child {
    margin-bottom: 0;
}

.order-section h3 {
    color: #1a0505;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(179, 19, 18, 0.1);
}

.order-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    text-decoration: none;
    color: #1a0505;
    font-family: "Cinzel", serif;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.order-link:hover {
    background: rgba(179, 19, 18, 0.1);
    color: #B31312;
    transform: translateX(5px);
}

.order-link i {
    font-size: 1.2rem;
    color: #B31312;
}

/* Responsive styles for floating order menu */
@media (max-width: 768px) {
    .floating-order-menu {
        bottom: 20px;
        right: 20px;
    }

    .floating-order-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .order-options {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .floating-order-btn span {
        display: none;
    }

    .floating-order-btn {
        padding: 15px;
        border-radius: 50%;
    }

    .floating-order-btn i {
        margin: 0;
    }

    .order-options {
        width: 250px;
        right: -10px;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a0505;
    color: #ffffff;
    padding: 4rem 2rem 0;
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h2 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Ensure map section takes full width of its grid cell */
.footer-section.map {
    width: 100%;
    overflow: hidden;
}

/* Info Section */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 5px;
}

.info-item p {
    font-family: "Cinzel", serif;
    font-size: 1rem;
    line-height: 1.5;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a0505;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background-color: #ffffff;
}

/* Opening Hours Section */
.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item .day {
    font-family: "Cinzel", serif;
    font-weight: 500;
}

.hours-item .time {
    color: #ffffff;
    font-family: "Cinzel", serif;
    white-space: nowrap;
    text-align: right;
    min-width: 200px;
}

/* Map Section */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 100%;
    position: relative;
    aspect-ratio: 16/9;
    min-height: 300px;
    /* Fallback for browsers that don't support aspect-ratio */
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
}

/* Reset height for browsers that support aspect-ratio */
@supports (aspect-ratio: 16/9) {
    .map-container {
        height: auto;
        padding-bottom: 0;
    }
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #1a0505;
    padding: 1.5rem 0;
    text-align: center;
}

.copyright-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.copyright {
    font-family: "Cinzel", serif;
    font-size: 0.9rem;
    color: #ffffff;
}

.brand-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.brand-link:hover {
    color: #ffffff;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Cinzel", serif;
    font-size: 0.9rem;
    color: #ffffff;
}

.maghil-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.maghil-logo {
    height: 18px;
    margin-left: 5px;
}

/* Responsive styles for footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-section:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-section:last-child {
        grid-column: auto;
    }

    .footer-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .info-item p {
        font-size: 0.95rem;
    }

    .hours-item {
        font-size: 0.95rem;
    }

    .hours-item .time {
        white-space: nowrap;
        min-width: 180px;
    }

    .map-container {
        aspect-ratio: 16/9;
        min-height: 250px;
    }

    .map-container iframe {
        height: 100%;
    }



    .footer-bottom {
        padding: 1.2rem 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 1rem 0;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .info-item {
        margin-bottom: 1.2rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    .hours-item {
        font-size: 0.9rem;
    }

    .hours-item .time {
        white-space: nowrap;
        min-width: 160px;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .copyright {
        font-size: 0.8rem;
    }

    .powered-by {
        font-size: 0.8rem;
    }

    .maghil-logo {
        height: 15px;
    }
}

/* Popular Dishes Section */
.popular-dishes-section {
    background-color: #280606;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.popular-dishes-section .shape img {
    position: absolute;
    top: -5%;
    right: 0%;
    width: 350px;
    animation: bounce 3s infinite;
    z-index: 0;
}

@media screen and (max-width: 991px) {
    .popular-dishes-section .shape img {
        top: 0%;
        width: 250px;
    }
}

@media screen and (max-width: 768px) {
    .popular-dishes-section .shape img {
        top: -3%;
        width: 200px;
    }
}

.popular-dishes-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-family: "Cinzel", serif;
    font-size: 3rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD93D, transparent);
}

.scroll-container {
    position: relative;
    padding: 1rem 0;
}

.dishes-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem;
    -ms-overflow-style: none;
    /* Hide scrollbar IE and Edge */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.dishes-scroll::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome, Safari and Opera */
}

.dish-card {
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-10px);
}

.dish-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.1);
}

.dish-content {
    padding: 1.5rem;
}

.dish-content h3 {
    font-family: "Cinzel", serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.dish-content p {
    font-family: "Cinzel", serif;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.price {
    font-family: "Cinzel", serif;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.scroll-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 1rem;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    color: #1a0505;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.scroll-arrow:hover {
    opacity: 1;
    transform: scale(1.1);
}

.scroll-arrow.left {
    margin-right: auto;
}

.scroll-arrow.right {
    margin-left: auto;
}

@media (max-width: 768px) {
    .popular-dishes-section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .dish-card {
        min-width: 260px;
    }

    .dish-content {
        padding: 1.2rem;
    }

    .dish-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .dish-card {
        min-width: 220px;
    }

    .dish-image {
        height: 160px;
    }

    .dish-content {
        padding: 1rem;
    }

    .dish-content h3 {
        font-size: 1.2rem;
    }

    .price {
        font-size: 1.1rem;
    }

    .scroll-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Catering Page Styles */
.catering-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #280606;
    padding: 120px 0 60px 0;
}

.catering-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    flex-wrap: wrap;
    min-height: 600px;
}

.catering-image {
    flex: 1 1 350px;
    min-width: 320px;
    background: #fff;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
}

.catering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 24px 0 0 24px;
    display: block;
    margin: 0;
    padding: 0;
}

.catering-form-wrapper {
    flex: 2 1 400px;
    min-width: 320px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catering-title {
    font-family: 'Playfair Display', serif;
    color: #de0808;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.catering-desc {
    margin-bottom: 2rem;
    color: #555;
    font-size: 1.1rem;
}

.catering-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.input-field {
    /* flex: 1 1 180px; */
    width: 100% !important;
    padding: 0.9rem 1.1rem;
    border: 1px solid #ddc10c;
    border-radius: 8px;
    font-size: 1rem;
    font-family: "Cinzel", serif;
    background: #fff;
    transition: border 0.2s;
}

.input-field:focus {
    border-color: #219150;
    outline: none;
}

.catering-form textarea.input-field {
    resize: vertical;
    min-height: 90px;
}

.recaptcha-mock {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 320px;
    margin: 1rem 0;
}

.recaptcha-mock input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.recaptcha-mock label {
    color: #333;
    font-size: 1rem;
    font-family: "Cinzel", serif;
}

.recaptcha-text {
    margin-left: auto;
    font-size: 0.8rem;
    color: #888;
}

.catering-btn {
    width: 100%;
    max-width: 320px;
    align-self: flex-end;
}

@media (max-width: 968px) {
    .catering-section {
        padding: 100px 0 40px 0;
    }

    .catering-container {
        flex-direction: column;
        border-radius: 24px;
    }

    .catering-image img {
        border-radius: 24px 24px 0 0;
        height: 350px;
        object-fit: cover;
        object-position: center;
    }

    .catering-form-wrapper {
        border-radius: 0 0 24px 24px;
    }
}

@media (max-width: 600px) {
    .catering-section {
        padding: 80px 0 20px 0;
    }

    .catering-container {
        border-radius: 12px;
    }

    .catering-image {
        min-width: 0;
    }

    .catering-image img {
        border-radius: 12px 12px 0 0;
        height: 180px;
        object-fit: cover;
        object-position: center;
    }

    .catering-form-wrapper {
        padding: 1.2rem 0.7rem;
        border-radius: 0 0 12px 12px;
    }

    .catering-title {
        font-size: 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0.7rem;
    }

    .catering-btn {
        max-width: 100%;
    }
}

/* Reach Us Page Styles */
.reachus-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #280606;
    padding: 120px 20px 60px;
}

.reachus-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    flex-wrap: wrap;
    min-height: 600px;
}

.reachus-image {
    flex: 1 1 400px;
    min-width: 320px;
    background: #f8f9fa;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    position: relative;
    overflow: hidden;
}

.reachus-image img,
.reachus-image iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
}

.reachus-form-wrapper {
    flex: 1 1 400px;
    min-width: 320px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.reachus-title {
    font-family: 'Cinzel', serif;
    color: #B31312;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.reachus-desc {
    color: #666;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.reachus-desc span {
    color: #B31312;
    font-weight: 500;
}

.reachus-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reachus-row {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.reachus-input {
    /* flex: 1 1 200px; */
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: "Cinzel", serif;
    color: #333;
    transition: all 0.3s ease;
    background: #fff;
}

.reachus-input:focus {
    border-color: #B31312;
    outline: none;
    box-shadow: 0 0 0 3px rgba(179, 19, 18, 0.1);
}

.reachus-input::placeholder {
    color: #999;
    font-size: 0.9rem;
}

.reachus-form textarea.reachus-input {
    min-height: 120px;
    resize: vertical;
}

.reachus-phone-group {
    display: flex;
    gap: 8px;
    /* flex: 1 1 200px; */
    width: 100%;
}

.reachus-phone-group select {
    width: 100px;
    padding: 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    background: #fff;
    cursor: pointer;
}

.reachus-phone-group select:focus {
    border-color: #B31312;
    outline: none;
    box-shadow: 0 0 0 3px rgba(179, 19, 18, 0.1);
}

.reachus-phone-group input {
    flex: 1;
}

.reachus-btn {
    width: 100%;
    max-width: 200px;
    padding: 14px 28px;
    background: #B31312;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reachus-btn:hover {
    background: #9a0f0e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(179, 19, 18, 0.2);
}

.reachus-btn i {
    font-size: 1.2rem;
}

.required-text {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.required-text span {
    color: #B31312;
}

.recaptcha-wrapper {
    margin: 1rem 0;
}

@media (max-width: 968px) {
    .reachus-section {
        padding: 100px 16px 40px;
    }

    .reachus-container {
        flex-direction: column;
    }

    .reachus-image img,
    .reachus-image iframe {
        height: 550px;
        object-fit: cover;
        object-position: center;
    }

    .reachus-form-wrapper {
        padding: 2rem;
    }

    .reachus-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .reachus-section {
        padding: 80px 16px 20px;
    }

    .reachus-container {
        border-radius: 12px;
    }

    .reachus-image img,
    .reachus-image iframe {
        height: 350px;
        object-fit: cover;
        object-position: center;
    }

    .reachus-form-wrapper {
        padding: 1.5rem;
    }

    .reachus-title {
        font-size: 2rem;
    }

    .reachus-row {
        flex-direction: column;
        gap: 1rem;
    }

    .reachus-btn {
        max-width: 100%;
    }
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Cinzel", serif;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-trigger:hover {
    color: #FFD93D;
    background: rgba(255, 217, 61, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 217, 61, 0.2);
}

.dropdown-trigger i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 200px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    list-style: none;
}

.nav-dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content li {
    margin: 0;
    padding: 0;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 8px;
    margin: 0.25rem;
}

.dropdown-content a:hover {
    background: rgba(255, 217, 61, 0.2);
    color: #FFD93D;
    transform: translateX(5px);
}

.dropdown-content i {
    font-size: 1.1rem;
    color: #FFD93D;
    transition: all 0.3s ease;
}

.dropdown-content a:hover i {
    color: #FFD93D;
    transform: scale(1.1);
}

@media (max-width: 968px) {
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-trigger {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 2rem;
        color: #ffffff;
        font-size: 1.1rem;
        background: transparent;
    }

    .dropdown-content {
        position: static;
        background-color: transparent;
        width: 100%;
        min-width: 100%;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        transform: none !important;
    }

    .nav-dropdown.active .dropdown-content {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .dropdown-content li {
        margin: 0;
        width: 100%;
    }

    .dropdown-content a {
        color: #ffffff;
        padding: 0.75rem 3rem;
        font-size: 1.1rem;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .dropdown-content a i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
        color: #FFD93D;
    }

    .dropdown-trigger i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active .dropdown-trigger i {
        transform: rotate(180deg);
    }
}

/* Menu Page Styles */
.menu-page-section {
    padding: 4rem 2rem;
    background-color: #551111;
}

.menu-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-page-title {
    text-align: center;
    font-size: 2.5rem;
    color: #B31312;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.menu-page-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Menu Navigation */
.menu-nav {
    margin-bottom: 2rem;
}

.menu-nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.menu-nav-list a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.menu-nav-list a:hover,
.menu-nav-list a.active {
    background-color: #B31312;
    color: #fff;
}

/* Search Box */
.menu-search {
    margin-bottom: 3rem;
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 1rem 3rem;
    border: 2px solid #eee;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #B31312;
    box-shadow: 0 2px 15px rgba(179, 19, 18, 0.1);
}

.search-box i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #B31312;
}

/* Menu Categories */
.menu-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.8rem;
    color: #B31312;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #B31312;
    display: inline-block;
    font-family: 'Playfair Display', serif;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(179, 19, 18, 0.1);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-details {
    padding: 1.5rem;
}

.item-name {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.item-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.item-price {
    font-size: 1.1rem;
    color: #B31312;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-page-section {
        padding: 3rem 1rem;
    }

    .menu-page-title {
        font-size: 2rem;
    }

    .menu-nav-list {
        gap: 0.5rem;
    }

    .menu-nav-list a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }
}

/* Hide/Show Menu Items */
.menu-item.hidden {
    display: none;
}

.menu-category.hidden {
    display: none;
}

/* Animation */
.menu-item {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    color: #fff !important;
    pointer-events: none !important;
    background-color: #9a0f0e !important;
    border-color: #9a0f0e !important;
    opacity: 0.65 !important;
}

.payment-methods {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--body-font);
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
}

.payment-icons img {
    height: 30px;
    width: auto;
    /* Removing the filter that was making images white */
    /* filter: brightness(0) invert(1); */
    opacity: 1;
    transition: opacity 0.3s ease;
    object-fit: contain;
    background-color: transparent;
}

.payment-icons img:hover {
    opacity: 0.8;
}

/* Responsive styles for payment methods */
@media (max-width: 768px) {
    .payment-methods {
        margin-top: 20px;
        padding-top: 15px;
    }

    .payment-methods h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .payment-icons {
        gap: 12px;
    }

    .payment-icons img {
        height: 25px;
    }
}

@media (max-width: 576px) {
    .payment-methods {
        margin-top: 15px;
        padding-top: 12px;
    }

    .payment-icons img {
        height: 20px;
    }
}

/* Terms and Conditions Styles */
.terms-btn {
    background-color: transparent;
    border: none;
    color: #ffffff;
    text-decoration: underline;
    font-size: 14px;
    padding: 2px 10px;
    margin: 2px 0;
    transition: color 0.3s ease;
}

.terms-btn:hover {
    color: var(--primary-color);
}

#termsModal .modal-content {
    background: #fff;
    border-radius: 15px;
    border: 1px solid rgba(22, 196, 127, 0.2);
}

#termsModal .modal-header {
    border-bottom: 2px solid rgba(22, 196, 127, 0.1);
    padding: 20px;
}

#termsModal .modal-title {
    color: #B31312;
    font-family: var(--heading-font);
    font-size: 24px;
}

#termsModal .modal-body {
    padding: 25px;
}

#termsModal .welcome-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

#termsModal .terms-section {
    margin-bottom: 25px;
}

#termsModal h6 {
    color: #551111;

    font-family: var(--heading-font);
    font-size: 18px;
    margin-bottom: 15px;
}

#termsModal p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

#termsModal strong {
    color: #333;
}

#termsModal ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

#termsModal li {
    font-size: 15px;
    color: #555;
    margin-bottom: 5px;
}

#termsModal .modal-footer {
    border-top: 2px solid rgba(224, 7, 4, 0.1);
    padding: 15px 20px;
}

#termsModal .btn-secondary {
    background-color: var(--primary-color);
    border: none;
    padding: 8px 25px;
    font-size: 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

#termsModal .btn-secondary:hover {
    background-color: #f40d0d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 24, 4, 0.3);
}

/* Responsive styles for Terms Modal */
@media (max-width: 768px) {
    #termsModal .modal-title {
        font-size: 20px;
    }

    #termsModal .modal-body {
        padding: 20px;
    }

    #termsModal h6 {
        font-size: 16px;
    }

    #termsModal p,
    #termsModal li {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    #termsModal .modal-title {
        font-size: 18px;
    }

    #termsModal .modal-body {
        padding: 15px;
    }

    #termsModal .welcome-text {
        font-size: 14px;
    }

    #termsModal h6 {
        font-size: 15px;
    }

    #termsModal p,
    #termsModal li {
        font-size: 13px;
    }

    #termsModal .btn-secondary {
        padding: 6px 20px;
        font-size: 14px;
    }
}

/* ! ------------------------------------------------------------------- */
/* Testimonials Section */
.testimonials-section {
    background: #280606;
    padding: 6rem 2rem;
    position: relative;
    color: #ffffff;
}

.testimonials-section .shape img {
    position: absolute;
    top: -10%;
    left: 0px;
    width: 300px;
    z-index: 0;
    animation: bounce 4s infinite;
}

@media screen and (max-width: 991px) {
    .testimonials-section .shape img {
        width: 250px;
        top: -8%;
    }
}

@media screen and (max-width: 768px) {
    .testimonials-section .shape img {
        width: 200px;
        top: -5%;
    }
}

@media screen and (max-width: 576px) {
    .testimonials-section .shape img {
        width: 180px;
        top: 0%;
    }
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-container .section-title {
    font-family: "Cinzel", serif;
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content .stars {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-family: "Cinzel", serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    font-family: "Cinzel", serif;
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    background: #800000;
    padding: 6rem 2rem;
    color: #ffffff;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: "Cinzel", serif;
    font-size: 2.5rem;
    color: #FFD93D;
    margin-bottom: 2rem;
}

.about-text p {
    font-family: "Cinzel", serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-family: "Cinzel", serif;
    font-size: 2.5rem;
    color: #FFD93D;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Location Section */
.location-section {
    background: #800000;
    padding: 6rem 2rem;
    color: #ffffff;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info h2 {
    font-family: "Cinzel", serif;
    font-size: 2.5rem;
    color: #FFD93D;
    margin-bottom: 2rem;
}

.location-details {
    margin-bottom: 3rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.location-item i {
    color: #FFD93D;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.location-item h4 {
    font-family: "Cinzel", serif;
    color: #FFD93D;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.opening-hours h4 {
    font-family: "Cinzel", serif;
    color: #FFD93D;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-item span:first-child {
    font-weight: 600;
    color: #ffffff;
}

.hours-item span:last-child {
    color: rgba(255, 255, 255, 0.8);
}

.location-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Newsletter Section */
.newsletter-section {
    background: #800000;
    padding: 4rem 2rem;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: "Cinzel", serif;
    font-size: 2.5rem;
    color: #FFD93D;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-family: "Cinzel", serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.form-group input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-family: "Cinzel", serif;
    outline: none;
}

.form-group button {
    background: #FFD93D;
    color: #800000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-family: "Cinzel", serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group button:hover {
    background: #ffffff;
    transform: translateY(-2px);
}


.social-link {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b31312;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Design for New Sections */
@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-group {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {

    .testimonials-section,
    .about-section,
    .location-section {
        padding: 4rem 1rem;
    }

    .newsletter-section {
        padding: 3rem 1rem;
    }

    .about-text h2,
    .location-info h2,
    .newsletter-content h2 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem;
    }

    .about-text h2,
    .location-info h2,
    .newsletter-content h2 {
        font-size: 1.8rem;
    }

    .about-text p,
    .newsletter-content p {
        font-size: 1rem;
    }

    .location-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hours-item {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .hours-item .time {
        white-space: normal;
        text-align: center;
        min-width: auto;
        font-size: 0.9rem;
    }

    .map-container {
        aspect-ratio: 16/9;
        min-height: 200px;
    }

    .map-container iframe {
        height: 100%;
    }
}

/* ! Social Media */
/* Social Media Section */
.social-media {
    background: #551111;
    padding: 80px 0;
    color: #fff;
}

.social-border {
    max-width: 1200px;
    margin: 0 auto;
    padding: 65px 20px;
    text-align: center;
}

.social-border .heading {
    font-family: var(--Blinker-font);
    font-size: 32px;
    font-weight: 600;
    color: var(--yellow-color);
    margin-bottom: 32px;
    text-decoration: underline;
    text-underline-offset: 10px;
    letter-spacing: 1.5px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.socialmediatab {
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
}

.iframe-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 650px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background-color: #000;
    border: 2px solid #444;
}

.iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ----------------------------- */
/* Responsive Media Queries     */
/* ----------------------------- */

/* Tablets */
@media (max-width: 1024px) {
    .social-border .heading {
        font-size: 28px;
    }

    .socialmediatab {
        font-size: 2.4rem;
    }

    .iframe-wrapper {
        height: 550px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .social-border .heading {
        font-size: 24px;
        text-underline-offset: 6px;
    }

    .socialmediatab {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .iframe-wrapper {
        height: 450px;
        border-radius: 15px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .social-border .heading {
        font-size: 20px;
    }

    .socialmediatab {
        font-size: 1.6rem;
    }

    .iframe-wrapper {
        height: 300px;
        border-radius: 10px;
    }
}



/*-----------------------------------*\
  #ORDERING SECTION
\*-----------------------------------*/

/* background-color: var(--smoky-black-2); */
/* background-color: var(--eerie-black-1); */

.ordering-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #280606;
    position: relative;
}

.ordering-section .shape img {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 450px;
    height: auto;
    z-index: 0;
    opacity: 0.2;
    animation: bounce 2s infinite;
}

@media screen and (max-width : 991px) {
    .ordering-section .shape img {
        width: 250px;
        top: -10%;
        left: 0%;
    }
}

.ordering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

@media screen and (max-width : 768px) {
    .ordering-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.ordering-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 10px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    z-index: 2;
}

.ordering-title {
    text-align: center;
    font-family: "Cinzel", serif !important;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 4rem;
}

.ordering-subtitle {
    font-family: "Cinzel", serif !important;
    text-transform: lowercase !important;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2rem;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.delivery-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.ordering-title {
    font-family: var(--fontFamily-forum);
    font-size: 28px;
    margin-bottom: 10px;
    position: relative;
}

.ordering-title::after {
    content: "";
    display: block;
    width: 60px;
    /* length of underline */
    height: 3px;
    /* thickness */
    background-color: #FFD93D;
    /* underline color */
    margin: 8px auto 0;
    /* space above and center alignment */
    border-radius: 2px;
    /* smooth edges */
}

.ordering-subtitle {
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.6;
}

.ordering-subtitle strong {
    color: var(--gold-crayola);
}

.option-title {
    margin-top: 12px;
    font-size: 18px;
}

.delivery-logo,
.store-logo {
    transition: all 0.2s ease-in-out;
}

.store-logo a {
    text-decoration: none;
}

.store-logo p {
    color: #ffffff;
}

.delivery-logo:hover,
.store-logo:hover {
    transform: translateY(-4px);
}


@media screen and (max-width : 768px) {
    .ordering-title {
        font-size: 24px;
    }

    .ordering-subtitle {
        font-size: 17px;
    }

    .option-title {
        font-size: 17.5px;
    }
}

@media screen and (max-width : 480px) {
    .logo-container {
        gap: 50px;
    }

    .ordering-title {
        font-size: 22px;
    }

    .ordering-subtitle {
        font-size: 16px;
    }

    .option-title {
        font-size: 16px;
    }
}


.instagram-section {
    /* padding-top: 0px; */
    padding-bottom: 80px;
    background: #280606;
}

/*-----------------------------------*\
# BLOG PAGE STYLES
\*-----------------------------------*/

.blog-grid-section {
    background: #1b0505;
    padding: 120px 20px;
    color: #fff;
    margin-top: 90px;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: #fff;
}

.section-heading p {
    color: #f6e5cc;
    line-height: 1.7;
    font-size: 1.1rem;
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 217, 61, 0.4);
}

.blog-card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.blog-card-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 217, 61, 0.15);
    color: #ffd93d;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", serif;
    line-height: 1.4;
}

.blog-card p {
    color: #f8ead5;
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.9rem;
    color: #f6ddc1;
}

.blog-card-meta i {
    margin-right: 6px;
    color: #ffd93d;
}

.blog-card-link {
    color: #ffd93d;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    gap: 12px;
}

/* Single Blog Post Styles */
.single-blog-hero {
    background: linear-gradient(135deg, #190303, #2a0808);
    color: #fff;
    padding: 160px 20px 100px;
    margin-top: 90px;
}

.single-blog-heading {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.single-blog-heading h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.single-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    color: #f6e5cc;
    font-size: 0.95rem;
}

.single-blog-meta i {
    margin-right: 6px;
    color: #ffd93d;
}

.single-blog-cover {
    max-width: 1000px;
    margin: 0 auto;
}

.single-blog-cover img {
    width: 100%;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
    object-fit: cover;
    max-height: 500px;
}

.single-blog-content {
    background: #f9f5ef;
    padding: 80px 20px;
}

.single-blog-article {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    font-size: 1.05rem;
    line-height: 1.9;
    color: #40211f;
}

.single-blog-article h2 {
    font-family: "Playfair Display", serif;
    color: #250909;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
}

.single-blog-article h3 {
    font-family: "Playfair Display", serif;
    color: #250909;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.single-blog-article p {
    margin-bottom: 1.5rem;
    color: #4a2a26;
}

.single-blog-article ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
    padding-left: 1rem;
}

.single-blog-article li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.single-blog-article strong {
    color: #9a0f0e;
    font-weight: bold;
    text-decoration: none;
}

.single-blog-article a {
    text-decoration-color: #9a0f0e;
    color: #9a0f0e;
}

.single-blog-article img {
    max-width: 100%;
    border-radius: 20px;
    margin: 30px auto;
    display: block;
}

@media (max-width: 768px) {
    .blog-grid-section {
        padding: 100px 20px 80px;
        margin-top: 80px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card-image img {
        height: 200px;
    }

    .single-blog-hero {
        padding: 120px 20px 80px;
        margin-top: 80px;
    }

    .single-blog-article {
        padding: 35px 24px;
    }

    .single-blog-article h2 {
        font-size: 1.6rem;
    }

    .single-blog-article h3 {
        font-size: 1.3rem;
    }

    .single-blog-article p {
        font-size: 14.5px;
    }

    .single-blog-article li {
        font-size: 15px;
    }

    .single-blog-hero {
        padding-top: 100px;
    }
}



/* Availability Banner Styles */
.availability-banner {
    font-family: "Bevan", serif;
    position: relative;
    top: 80px;
    z-index: 10;
    /* background: #1a4d2e; */
    padding: 20px 30px;
    padding-top: 30px;
    padding-bottom: 20px;
    text-align: center;
    margin: 0px auto;
    max-width: 100%;
    border-radius: 12px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
}

.availability-label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    font-family: "Bevan", serif;
}

.availability-days {
    color: #FFD700;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    font-family: "Bevan", serif;
}

.availability-location {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 5px 0;
    font-family: "Bevan", serif;
}

@media (max-width: 768px) {
    .availability-banner {
        padding: 15px 20px;
        margin: 15px auto;
    }

    .availability-label {
        font-size: 12px;
    }

    .availability-days {
        font-size: 20px;
    }

    .availability-location {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .availability-banner {
        padding: 7px 15px;
        margin: 8px auto;
    }

    .availability-label {
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 1.2px;
    }

    .availability-days {
        font-size: 15px;
        font-weight: 300;
        margin-bottom: 5px;
    }

    .availability-location {
        font-size: 13.5px;
        font-weight: 300;
        letter-spacing: 1.2px;
    }
}

.tasmac-banner-section {
    position: relative;
    height: 100vh;
    background: url('images/banner/desktop/desktop-banner.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

/* Banner Slider */
.tasmac-banner-section .slider-container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    padding: 20px;
    border-radius: 20px;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    --slider-card-width: min(100vw, 1100px);
    --slider-card-height: clamp(300px, 50vw, 480px);
}

.tasmac-banner-section .slider-container::before,
.tasmac-banner-section .slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    pointer-events: none;
    z-index: 3;
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.65), transparent); */
}

.tasmac-banner-section .slider-container::after {
    right: 0;
    /* background: linear-gradient(to left, rgba(0, 0, 0, 0.65), transparent); */
}

.tasmac-banner-section .slider-container::before {
    left: 0;
}

.tasmac-banner-section .slider-container .slider-content {
    position: relative;
    width: 100%;
    height: var(--slider-card-height);
}

.tasmac-banner-section .slider-container .slider-item {
    position: absolute;
    top: 0;
    left: 50%;
    width: var(--slider-card-width);
    height: var(--slider-card-height);
    transform: translateX(-50%) scale(0.94);
    transform-origin: center;
    border-radius: 24px;
    overflow: hidden;
    /* background: #000000; */
    /* box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35); */
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
}

.slider-container .slider-item.is-active {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 4;
}

.slider-container .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.tasmac-banner-section .slider-container .slider-item.small-image img {
    object-fit: contain;
    object-position: center;
}

.slider-container .slider-item.is-active img {
    transform: scale(1.05);
}

.slider-container .slider-item:not(.is-active) img {
    filter: grayscale(0.15) brightness(0.85);
}

.slider-container .slider-item--clone {
    display: none;
}

@media (max-width: 768px) {
    .banner-main-content .slider-container {
        padding: 15px 0;
        --slider-card-width: min(92vw, 750px);
        --slider-card-height: clamp(300px, 60vw, 400px);
    }

    .slider-container::before,
    .slider-container::after {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .banner-main-content .slider-container {
        --slider-card-width: min(96vw, 520px);
        --slider-card-height: clamp(320px, 90vw, 520px);
    }

    .slider-container::before,
    .slider-container::after {
        width: 50px;
    }

    .slider-container .slider-item {
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slider-container .slider-item {
        transition: none !important;
    }
}


/* Above 576px: show large-image, hide small-image */
.tasmac-banner-section .slider-container .slider-item.large-image {
    display: block;
}

.tasmac-banner-section .slider-container .slider-item.small-image {
    display: none !important;
}

/* Ensure only active items are visible - this applies to all screen sizes */
.tasmac-banner-section .slider-container .slider-item:not(.is-active) {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.tasmac-banner-section .slider-container .slider-item.is-active {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Below 576px: hide large-image, show small-image */
@media (max-width: 576px) {
    .tasmac-banner-section .slider-container .slider-item.large-image {
        display: none !important;
    }

    .tasmac-banner-section .slider-container {
        --slider-card-width: min(92vw, 380px);
        --slider-card-height: clamp(550px, 130vw, 750px);
    }

    .tasmac-banner-section .slider-container .slider-item.small-image {
        display: block !important;
    }
}



@media (max-width: 768px) {
    .banner-reel-card.hide-reel {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .banner-branding-section {
        padding: 0px;
        margin-bottom: 0px;
    }
}