/*=======================
Common css start
============================= */
img.logo_image {
    width: 120px;
}



iframe {
    width: 100%;
    height: 100%;
}

section {
    padding-right: 40px;
    padding-left: 40px;
}

.custom_display {
    display: none;
}

@media (max-width: 768px) {
    .optimize-model {
        width: 100% !important;
    }

    .optimize-model-size {
        margin-top: 58px !important;
        /* you can adjust if needed */
    }
}

@media (min-width: 1024px) {
    .optimize-model-size {
        margin-top: 100px !important;
        /* you can adjust if needed */
    }

}

@media (max-width: 768px) {
    .cartItems {
        bottom: 76px !important;
        position: relative;
    }

    section {
        padding-right: 5px;
        padding-left: 5px;
    }
}

@media (max-width: 1023px) {
    body {
        padding-bottom: 4rem;
        /* 64px - height of bottom nav */
    }
}


.font-display {
    font-family: 'Playfair Display', serif;
}

.font-body {
    font-family: 'Inter', sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.hero-gradient {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 25%, #2d1b00 50%, #1a1a1a 75%, #0f0f0f 100%);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

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

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.glow-effect {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.text-gradient {
    background: linear-gradient(135deg, #d4af37, #ffd700, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-premium {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-premium:hover::before {
    left: 100%;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.menu-category {
    transition: all 0.3s ease;
}

.menu-category.active {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
}

.online-order-bg {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 25%, #2d1b00 50%, #1a1a1a 75%, #0f0f0f 100%);
}
/*=======================
Common css start
============================= */

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

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

.text-gradient {
    background: linear-gradient(135deg, #d4af37, #ffd700, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/*=======================
Hero section start
============================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

.font-display {
    font-family: 'Playfair Display', serif;
}

.font-body {
    font-family: 'Inter', sans-serif;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-gradient {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #0f0f0f 100%);
}

.btn-premium {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.glow-effect {
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.parallax-bg {
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 228, 161, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(184, 148, 31, 0.06) 0%, transparent 50%);
}

.cuisine-tag {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 228, 161, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.feature-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
}

@media (max-width: 768px) {
    .floating {
        animation: none;
    }

    .hero-content {
        padding: 2rem 1rem;
    }
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

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

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

.marginT-2 {
    margin-top: 15px !important;
}

/*=======================
Hero section end
============================= */

/*=======================
About section start
============================= */

/* Additional custom styles for enhanced effects */
.glow-effect {
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

/* Enhanced gradient animation */
@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.text-gradient {
    background: linear-gradient(-45deg, #d4af37, #ffd700, #b8860b, #d4af37);
    background-size: 400% 400%;
    animation: gradient-shift 8s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Backdrop blur support */
@supports (backdrop-filter: blur(10px)) {
    .backdrop-blur-sm {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Responsive image optimization */
@media (max-width: 768px) {
    .container .about_img {
        min-height: 300px;
        max-height: 350px;
    }
}

@media (min-width: 1024px) {
    .container .about_img {
        min-height: 300px;
        max-height: 400px;
    }
}

/*=======================
About section End
============================= */

/*=======================
Online order section End
============================= */

.menu-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #25252c;
}

.menu-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.tab-button {
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.tab-button:hover::before {
    left: 100%;
}

.order-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.floating-circle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: -4s;
}

.floating-circle:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -1s;
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/*=======================
Online order section End
============================= */