/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color:var(--dark-brown);
    background-image: linear-gradient(to bottom right, #FFDE59, #FE1414);
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header Styles */
.header {
   background-image: radial-gradient(circle, #FFDE59, #FE1414);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 100%;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #c52c2c;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: auto;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 5rem;
    width: auto;
    transition: height 0.3s ease;
}
.nav-menu {
    display: flex;
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0;
    align-items: center;
    margin-left: auto;
}
.nav-menu li {
    margin-left: 30px;
}
.nav-menu li:first-child {
    margin-left: 0;
}
.nav-menu a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
    
}
.nav-menu a:hover, .nav-menu a.active {
    color: #c52c2c;
}
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}
.btn-order {
    background-color: #c52c2c;
    color: white;
}
.btn-order:hover {
    background-color: #a82424;
}
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 15px;
}

/* Ensure right-side nav elements are grouped and aligned */
.nav-container .custom-lang-selector,
.nav-container .cart-icon-menu,
.nav-container .hamburger {
    flex-shrink: 0;
    margin-left: 15px;
}
/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 180px 20px 120px;
    margin-top: 80px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.hero h1 span {
    color: #ffcc00;
}
.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}
.btn-primary {
    background-color: #ffcc00;
    color: #333;
    font-size: 1.1rem;
    padding: 12px 35px;
}
.btn-primary:hover {
    background-color: #e6b800;
}
/* Menu Section */
.menu-section {
    padding: 80px 20px;
}
.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #222;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.menu-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.menu-card:hover {
    transform: translateY(-10px);
}
.menu-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}
.menu-info {
    padding: 25px;
}
.menu-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #c52c2c;
}
.menu-desc {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}
.menu-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}
.btn-cart {
    background-color: #333;
    color: white;
    width: 100%;
    padding: 12px;
}
.btn-cart:hover {
    background-color: #c52c2c;
}
/* Steps Section */
.steps-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.step-card {
    text-align: center;
    padding: 30px 20px;
}
.step-icon {
    font-size: 2.5rem;
    color: #c52c2c;
    margin-bottom: 20px;
}
.step-card h3 {
    margin-bottom: 15px;
    color: #222;
}
/* Footer */
.footer {
    background-color: #222;
    color: #ddd;
    padding: 60px 20px 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.social-icons {
    margin-top: 20px;
}
.social-icons a {
    display: inline-block;
    color: #ddd;
    background-color: #444;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s;
}
.social-icons a:hover {
    background-color: #c52c2c;
}
.footer-contact p, .footer-hours p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.footer-contact i, .footer-hours i {
    margin-right: 10px;
    color: #c52c2c;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        margin: 10px 0;
    }
    .hamburger {
        display: block;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

/*About section styles*/

.restaurant-story {
    padding: 80px 20px;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #ffcc00;
}

.story-tagline {
    font-size: 1.3rem;
    color: #c52c2c;
    font-weight: 500;
    margin-bottom: 30px;
    font-style: italic;
}

.story-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #c52c2c;
    color: #c52c2c;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-outline:hover {
    background: #c52c2c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 44, 44, 0.2);
}

/* Sidebar Styles */
.info-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #222;
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: #c52c2c;
}

/* Hours Table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid #eee;
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 12px 0;
    color: #555;
}

.hours-table td:first-child {
    font-weight: 500;
    color: #333;
}

.hours-table td:last-child {
    text-align: right;
    color: #666;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.features-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.features-list i {
    color: #4CAF50;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.features-list span {
    color: #555;
    line-height: 1.5;
}

/* Special Note */
.special-note {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-left: 4px solid #ffcc00;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.special-note i {
    color: #ff9800;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.special-note p {
    margin: 0;
    color: #5d4037;
    line-height: 1.6;
}

.special-note strong {
    color: #e65100;
}

/* Responsive Design */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-content h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .restaurant-story {
        padding: 60px 20px;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .story-tagline {
        font-size: 1.1rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .hours-table td {
        padding: 10px 0;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .special-note {
        flex-direction: column;
        text-align: center;
    }
    
    .special-note i {
        margin: 0 auto 10px;
    }
}

/*------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------*/
/* Hero Slideshow Styles */
.index-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 80px;
    overflow: hidden;
}

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

.index-hero .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.index-hero .hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.index-hero .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    z-index: 1;
}

.index-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding-top: 20vh;
    animation: fadeInUp 1s ease-out;
}

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

/* Slide Navigation Dots */
.index-hero .slide-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 4;
}

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

.index-hero .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.index-hero .dot.active {
    background: #ffcc00;
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

/* Navigation Arrows */
.index-hero .slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.index-hero .slide-arrow:hover {
    background: rgba(197, 44, 44, 0.8);
    border-color: white;
    transform: translateY(-50%) scale(1.1);
}

.index-hero .prev-arrow {
    left: 30px;
}

.index-hero .next-arrow {
    right: 30px;
}

/* Slideshow Controls */
.index-hero .slideshow-controls {
    position: absolute;
    bottom: 40px;
    right: 30px;
    z-index: 4;
    display: flex;
    gap: 10px;
}

.index-hero .control-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.index-hero .control-btn:hover {
    background: rgba(197, 44, 44, 0.8);
    border-color: white;
    transform: scale(1.1);
}

/* Hero Content Styling */
.index-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.index-hero h1 span {
    color: #ffcc00;
}

.index-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.index-hero .btn-primary {
    background-color: #ffcc00;
    color: #333;
    font-size: 1.1rem;
    padding: 14px 35px;
    font-weight: 600;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.index-hero .btn-primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.index-hero .btn-primary::after {
    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 ease;
}

.index-hero .btn-primary:hover::after {
    left: 100%;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .index-hero h1 {
        font-size: 3rem;
    }
    
    .index-hero p {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    
    .index-hero .slide-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .index-hero .prev-arrow {
        left: 15px;
    }
    
    .index-hero .next-arrow {
        right: 15px;
    }
    
    .index-hero .slideshow-controls {
        right: 15px;
        bottom: 35px;
    }
}

@media (max-width: 768px) {
    .index-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .index-hero h1 {
        font-size: 2.5rem;
    }
    
    .index-hero p {
        font-size: 1.1rem;
    }
    
    .index-hero .hero-content {
        padding-top: 15vh;
    }
    
    .index-hero .slide-dots {
        bottom: 30px;
    }
    
    .index-hero .slideshow-controls {
        bottom: 25px;
    }
    
    .index-hero .control-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .index- hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .index-hero h1 {
        font-size: 2rem;
    }
    
    .index-hero p {
        font-size: 1rem;
    }
    
    .index-hero .slide-arrow {
        width: 35px;
        height: 35px;
        display: none; /* Hide arrows on very small screens */
    }
    
    .index-hero .slide-dots {
        bottom: 20px;
    }
    
    .index-hero .dot {
        width: 10px;
        height: 10px;
    }
}
/* Scroll-Based Navbar Styles */
.index-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease, background-color 0.3s ease;
}

.index-hero .header.visible {
    transform: translateY(0);
}

.index-hero .header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 70px;
}

/* Logo transition */
.index-hero .header .logo {
    transition: all 0.3s ease;
}

.index-hero .header.scrolled .logo {
    font-size: 1.6rem;
}

.index-hero .header.scrolled .logo-img {
    height: 4rem;
}

/* Nav menu items transition */
.index-hero .nav-menu a {
    transition: all 0.3s ease;
}

.index-hero .header.scrolled .nav-menu a {
    font-size: 0.95rem;
}

/* Order button transition */
.index-hero .btn-order {
    transition: all 0.3s ease;
}

.index-hero .header.scrolled .btn-order {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Make hero section fill viewport */
.index-hero {
    height: 100vh;
    min-height: 700px;
    
}

/* Add scroll indicator at bottom of hero */
.index-hero .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: white;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.index-hero .scroll-indicator p {
    margin: 0 0 -300px 0;
    font-size: 0.9rem;
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.index-hero .scroll-indicator i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hero content adjustment */
.index-hero .hero-content {
    padding-top: 25vh;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .index-header {
        height: 70px;
    }
    
    .index-hero .header.scrolled {
        height: 60px;
    }
    
    .index-hero {
        min-height: 600px;
    }
    
    .index-hero .hero-content {
        padding-top: 20vh;
    }
    
    .index-hero .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .index-header {
        height: 60px;
    }
    
    .index-hero .header.scrolled {
        height: 50px;
    }
    
    .index-hero {
        min-height: 500px;
    }
    
    .index-hero .hero-content {
        padding-top: 15vh;
    }
}