/* --- RESET & BASIC SETUP --- */
* { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto; 
}

/* --- HEADER (New Layout: Left Logo, Right Menu) --- */
.header {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between; /* Pushes items to edges */
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 82, 82, 0.5);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left align text */
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(90deg, #ff5252, #ff1744);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-top: 2px;
}

/* --- BURGER MENU ICON --- */
.burger-menu {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}
.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s;
}

/* --- SLIDE OUT MENU (Glass Style) --- */
.nav-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 280px;
    height: 100vh;
    background: rgba(15, 32, 39, 0.95);
    backdrop-filter: blur(15px);
    z-index: 2000;
    transition: 0.4s ease-in-out;
    padding: 60px 20px 20px 20px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    border-left: 1px solid rgba(255,255,255,0.1);
}
.nav-overlay.active {
    right: 0; /* Slide In */
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    line-height: 1;
}

.nav-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    transition: 0.2s;
}
.nav-link:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}
.nav-link i { width: 25px; text-align: center; }

/* --- MAIN CONTENT --- */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem); 
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    background: linear-gradient(90deg, #ff9800, #ff5252);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 20px;
}

/* --- SLIDESHOW SECTION --- */
.slideshow-container {
    width: 95%;
    max-width: 600px;
    aspect-ratio: 4 / 3; 
    min-height: 300px;
    position: relative;
    border-radius: 12px; 
    overflow: hidden;
    border: 5px solid #ffffff;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.4), 0 25px 50px rgba(0,0,0,0.6);    
    margin-bottom: 30px;
    background: #000;
    margin-left: auto;
    margin-right: auto;
}

.slide-wrapper { width: 100%; height: 100%; position: relative; }

.slide {
    position: absolute;
    top: 0; left: 100%; width: 100%; height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); 
    opacity: 0; will-change: transform; 
}
.slide.active { left: 0; opacity: 1; z-index: 2; }
.slide.prev { left: -100%; opacity: 0; z-index: 1; }

.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* RIBBONS */
.ribbon-name {
    position: absolute; right: 0; bottom: 25px;
    background: linear-gradient(90deg, #d50000, #ff1744);
    color: white; padding: 8px 20px 8px 25px;
    font-weight: 800; font-size: 0.95rem; text-transform: uppercase;
    box-shadow: -5px 5px 15px rgba(0,0,0,0.5);
    clip-path: polygon(15px 0%, 100% 0, 100% 100%, 15px 100%, 0% 50%);
    z-index: 10; max-width: 65%; text-align: right;
    animation: slideInRight 0.8s ease-out;
}
.ribbon-msg {
    position: absolute; left: 0; top: 25px;
    background: linear-gradient(90deg, #2962FF, #448AFF); 
    color: white; padding: 6px 20px 6px 15px;
    font-weight: 600; font-size: 0.8rem;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
    z-index: 10; animation: slideInLeft 0.8s ease-out;
}
.price-tag {
    position: absolute; left: 15px; bottom: 15px;
    background: #FFD700; color: #000; font-weight: 900; font-size: 1.1rem;
    padding: 10px; border-radius: 50%; width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4); z-index: 11;
    border: 3px solid white; transform: rotate(-10deg);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideInLeft { from { transform: translateX(-100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes popIn { from { transform: scale(0) rotate(-90deg); } to { transform: scale(1) rotate(-10deg); } }

/* --- BUTTON --- */
.order-btn {
    background: linear-gradient(to bottom, #ff4081, #d50000); 
    color: white; border: none; padding: 20px 45px;
    font-size: 1.5rem; font-weight: 800; border-radius: 60px;
    cursor: pointer; text-transform: uppercase; letter-spacing: 1.5px;
    box-shadow: 0 6px 0 #9b0000, 0 15px 20px rgba(0,0,0,0.4), inset 0 2px 0 rgba(255,255,255,0.3); 
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-bottom: 30px; min-width: 300px; position: relative; overflow: hidden;
    transition: all 0.1s ease;
}
.order-btn::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shine-sweep 3s infinite ease-in-out;
}
@keyframes shine-sweep { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
.order-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 0 #9b0000, 0 20px 25px rgba(0,0,0,0.5), inset 0 2px 0 rgba(255,255,255,0.3); }
.order-btn:active { transform: translateY(6px); box-shadow: 0 0 0 #9b0000, inset 0 2px 0 rgba(255,255,255,0.3); }

/* --- TIMER --- */
.timer-box {
    background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px; border-radius: 30px; display: flex; align-items: center; justify-content: center;
    gap: 6px; margin-bottom: 30px; backdrop-filter: blur(5px); animation: fadeIn 1s ease-in;
}
.timer-text { font-size: 0.85rem; color: rgba(255, 255, 255, 0.8); font-weight: 500; }
.timer-number { font-size: 1rem; font-weight: 800; color: #ff5252; min-width: 20px; text-align: center; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* --- TAGS --- */
.tags-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 600px; margin-bottom: 20px; }
.tag {
    background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 18px; border-radius: 50px; font-size: 0.9rem; font-weight: 500; color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: all 0.3s; animation: random-blink 3s infinite ease-in-out;
}
@keyframes random-blink { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(0.98); box-shadow: 0 0 10px rgba(255,255,255,0.3); } }
.tag:nth-child(2n) { animation-duration: 2.5s; animation-delay: 0.2s; }
.tag:nth-child(3n) { animation-duration: 4.0s; animation-delay: 1.5s; }
.tag:nth-child(4n) { animation-duration: 3.2s; animation-delay: 0.8s; }
.tag:nth-child(5n) { animation-duration: 2.8s; animation-delay: 2.1s; }
.tag:hover { transform: scale(1.1) !important; background: rgba(255,255,255,0.3); opacity: 1 !important; animation: none; cursor: default; }
.tag.jain { background: linear-gradient(135deg, #43a047, #2e7d32); border: 1px solid #a5d6a7; animation-delay: 0s; }
.tag.veg { background: linear-gradient(135deg, #8bc34a, #689f38); border: 1px solid #dcedc8; animation-delay: 0.5s; }
.tag.nonveg { background: linear-gradient(135deg, #ff7043, #d84315); border: 1px solid #ffccbc; animation-delay: 1s; }

.secure-text { font-size: 0.9rem; opacity: 0.8; display: flex; align-items: center; gap: 8px; margin-top: 10px; }

/* --- FOOTER --- */
.footer {
    background: rgba(0,0,0,0.4); padding: 40px 20px; text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1); margin-top: auto; padding-bottom: 100px;
}
.address-box { font-size: 0.95rem; line-height: 1.7; margin-bottom: 15px; opacity: 0.95; }
.address-title { font-weight: 800; font-size: 1.1rem; margin-bottom: 5px; display: block; color: #ffccbc; }
.phone-line {
    margin-top: 10px; font-weight: 700; font-size: 1.2rem; display: block;
    background: rgba(255,255,255,0.1); padding: 5px 15px; border-radius: 50px;
    width: fit-content; margin-left: auto; margin-right: auto; border: 1px solid rgba(255,255,255,0.2);
}
.phone-line a { color: #4cd137; text-decoration: none; }
.distance-badge {
    background: rgba(30,136,229,0.2); color: #90caf9; padding: 8px 16px; border-radius: 30px;
    font-weight: 600; display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(144,202,249,0.3);
}
.seo-text { margin-top: 25px; font-size: 0.7rem; color: rgba(255,255,255,0.4); text-align: justify; line-height: 1.4; max-width: 700px; margin-left: auto; margin-right: auto; }
.credentials-bar {
    margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 10px; font-size: 0.85rem; opacity: 0.9;
}
.cred-row { font-weight: 700; letter-spacing: 0.5px; }
.cred-details { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.license-num { font-family: 'Courier New', monospace; font-weight: 700; color: #ffd54f; letter-spacing: 0.5px; }
.cred-divider { color: rgba(255,255,255,0.3); }
.copyright { font-size: 0.75rem; opacity: 0.6; margin-top: 20px; }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 25px; right: 25px;
    background-color: #25d366; color: #FFF; border-radius: 50px;
    text-align: center; font-size: 35px; box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 100; display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: all 0.3s; animation: bounce 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background-color: #128C7E; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }

/* MOBILE ADJUSTMENTS */
@media (max-width: 400px) {
    .logo-text { font-size: 1.3rem; }
    .logo-sub { font-size: 0.6rem; max-width: 160px; } 
    .order-btn { font-size: 1.2rem; padding: 16px 30px; }
    .cred-divider { display: none; }
    .cred-details { flex-direction: column; gap: 5px; }
}