/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #B31312;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    height: 80px;
    overflow: visible;
}

.logo {
    position: relative;
    z-index: 1001;
}

.logo img {
    height: 150px;
    width: 150px;
    transition: all 0.3s ease;
    position: relative;
    top: -15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.nav-menu {
    padding-top: 15px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: #FFD93D;
}


.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
}

/* Hero section styles */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    margin-top: 60px;
    overflow: hidden;
}

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

.carousell-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousell-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.carousell-item.active {
    opacity: 1;
}

.carousell-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #FFD93D;
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #FFD93D;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-btn {
    font-family: 'Poppins', sans-serif;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #FFD93D;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.hero-btn:hover {
    transform: translateY(-3px);
    background-color: #ffffff;
}

/* 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: #1a0505;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.intro-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.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 h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #FFD93D;
    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: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.intro-text p {
    margin-bottom: 1.5rem;
}

.highlight {
    color: #FFD93D;
    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: 'Poppins', sans-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 {
    position: absolute;
    color: rgba(255, 217, 61, 0.1);
    font-size: 3rem;
    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 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: 968px) {
    .header {
        height: 70px;
    }

    .logo img {
        height: 120px;
        width: 120px;
        top: -12px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 280px;
        background-color: #B31312;
        padding: 80px 0 1rem 0;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        height: auto;
    }

    .nav-links li {
        width: 100%;
        height: auto;
    }

    .nav-links a {
        padding: 1rem 2rem;
        width: 100%;
        justify-content: flex-start;
        font-size: 1.1rem;
    }

    /* 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: block;
        z-index: 1002;
    }

    /* Menu overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .menu-overlay.active {
        display: block;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 1rem;
        height: 65px;
    }

    .logo img {
        height: 110px;
        width: 110px;
        top: -12px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        font-size: 1rem;
        padding: 0.8rem 1.8rem;
    }

    .features {
        padding: 3rem 1rem;
    }
}

.features-section {
    background: linear-gradient(135deg, #1a0505 0%, #B31312 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #FFD93D;
    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: #FFD93D;
    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: #FFD93D;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #ffffff;
    font-family: 'Poppins', sans-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: #1a0505;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #FFD93D;
    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(3, 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: #FFD93D;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.item-content p {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.view-dish {
    color: #FFD93D;
    text-decoration: none;
    font-family: 'Poppins', sans-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 */
.delivery-partners-section {
    background: linear-gradient(135deg, #1a0505 0%, #B31312 100%);
    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;
}

/* Specific logo sizes */
.partners-col:first-child .responsive-img {
    max-width: 180px;
}

.partners-col:last-child .responsive-img {
    max-width: 120px;
}

/* Responsive styles */
@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: #FFD93D;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-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: 'Poppins', sans-serif;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.order-options {
    display: none;
    /* Add your preferred styling */
}

.order-options.active {
    display: block;
}

.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: #FFD93D;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Info Section */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: #FFD93D;
    font-size: 1.2rem;
    margin-top: 5px;
}

.info-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #FFD93D;
    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: 'Poppins', sans-serif;
    font-weight: 500;
}

.hours-item .time {
    color: #FFD93D;
    font-family: 'Poppins', sans-serif;
}

/* Map Section */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 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: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
}

.brand-link {
    color: #FFD93D;
    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: 'Poppins', sans-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;
    }

 

    .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;
    }

    .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: #1a0505;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.popular-dishes-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #FFD93D;
    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: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #FFD93D;
    margin-bottom: 0.5rem;
}

.dish-content p {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #FFD93D;
    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: #FFD93D;
    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: linear-gradient(135deg, #e8f5e9 0%, #f8fafc 100%);
    padding: 120px 0 60px 0;
}

.catering-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: rgba(255,255,255,0.85);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    overflow: hidden;
    flex-wrap: wrap;
}

.catering-image {
    flex: 1 1 350px;
    min-width: 320px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px 0 0 24px;
    /* max-height: 600px; */
}

.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: 'Poppins', sans-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: 'Poppins', sans-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;
        max-height: 350px;
    }
    .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: 100px;
    }
    .catering-image img {
        border-radius: 12px 12px 0 0;
        max-height: 345px;
    }
    .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: #ffffff;
    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;
}

.reachus-image {
    flex: 1 1 400px;
    min-width: 320px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.reachus-image img,
.reachus-image iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 600px;
}

.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: 'Playfair Display', serif;
    color: #B31312;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.reachus-desc {
    color: #666;
    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: 'Poppins', sans-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-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-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: 6px;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: left;
    cursor: pointer;
  }
  
  .dropdown-trigger i {
    font-size: 0.9rem;
    line-height: 1;
  }
  

.nav-dropdown.active .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #ffffff;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    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;
    width: 100%;
    padding: 0.75rem 1.25rem;
    color: #333333;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #B31312;
}

.dropdown-content i {
    font-size: 1.1rem;
    color: #666666;
    transition: color 0.3s ease;
}

.dropdown-content a:hover i {
    color: #B31312;
}

@media (max-width: 968px) {
    .nav-dropdown {
        width: 100%;
        /* position: relative; */
    }
    .dropdown-trigger li:nth-child(4) {
        margin-left: 16px; /* adjust value as needed */
      }
      

    .nav-links li:first-child {
        margin-top: 1.5rem;
      }
      
      @media (max-width: 968px) {
        .dropdown-content {
          position: absolute;              /* Position it absolutely below the trigger */
          top: 100%;                       /* Move it just below the nav link */
          left: 0;
          transform: none !important;
          width: 100%;
          background-color: #1a1a1a;       /* Set visible background for dropdown */
          padding: 0;
          margin: 0;
          opacity: 0;
          visibility: hidden;
          max-height: 0;
          overflow: hidden;
          transition: all 0.3s ease-in-out;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          border-radius: 0 0 8px 8px;
          z-index: 1000;
        }
      
        .nav-dropdown {
          position: relative;              /* Ensure dropdown is positioned relative to nav item */
        }
      
        .nav-dropdown.active .dropdown-content {
          opacity: 1;
          visibility: visible;
          max-height: 500px;               /* Enough height for dropdown to expand */
          background-color: #1a1a1a;       /* Keep contrast visible */
        }
      
        .dropdown-content a {
          padding: 0.75rem 2.5rem;
          color: #fff;
          font-size: 1.1rem;
          display: flex;
          align-items: center;
        }
      
        .dropdown-content a i {
          margin-right: 10px;
          color: #FFD93D;
        }
      
        .dropdown-content a:hover {
          background-color: rgba(255, 255, 255, 0.1);
          color: #FFD93D;
        }
      }
      
}

/* Menu Page Styles */
.menu-page-section {
    padding: 4rem 2rem;
    background-color: #B31312;
}

.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: #f40909;
    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;
    }
}

/* ! ------------------------------------------------------------------- */
/* ! Social Media */
/* Social Media Section */
.social-media {
    background: linear-gradient(135deg, #1a0505 0%, #B31312 100%);
    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;
    }
  }
  .underlinenav a {
    color: #ffd93d;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
  }
  
  .underlinenav a span {
    display: inline-block;
    border-bottom: 2px solid #ffd93d;
    padding-bottom: 2px;
  }
  
  /* Responsive styling */
  @media (max-width: 768px) {
    .underlinenav a {
      font-size: 1rem;
    }
  
    .underlinenav a span {
      border-bottom: 1px solid #ffd93d;
      padding-bottom: 1px;
    }
  }
  
  @media (max-width: 480px) {
    .underlinenav a {
      font-size: 0.95rem;
    }
  
    .underlinenav a span {
      padding-bottom: 1px;
    }
  }
  
  