/* ============================================
   PROFESSIONAL RESTAURANT WEBSITE STYLING
   ============================================ */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #111;
    background: linear-gradient(135deg, #fffaf0 0%, #fffdf6 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION BAR - STICKY & MODERN
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffc107;
    text-decoration: none;
    letter-spacing: 1px;
    animation: fadeInDown 0.6s ease;
}

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

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffc107;
}

.nav-link:hover:after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffc107;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Use your main image at image/main.avif. Falls back to cream gradient if missing */
    background-image: linear-gradient(135deg, rgba(255,250,240,0.6) 0%, rgba(255,253,252,0.6) 100%), url('image/main.avif');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffc107" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,128C672,128,768,160,864,165.3C960,171,1056,149,1152,144C1248,139,1344,149,1392,149.3L1440,149L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* darker translucent overlay to ensure text is readable over the photo */
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.15));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.cta-button {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ============================================
   CAROUSEL SECTION
   ============================================ */

.carousel-section {
    padding: 100px 0 90px;
    background: linear-gradient(135deg, #fffaf0 0%, #fffefc 100%);
    position: relative;
}

.carousel-section .section-title {
    color: #1a1a2e;
}

.carousel-section .section-subtitle {
    color: #666;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a2e;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1320px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 19 / 10;
    border-radius: 28px;
    overflow: hidden;
    background: #1b1b1d;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
    isolation: isolate;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 22%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
}

.carousel-slide {
    position: absolute;
    width: 76%;
    height: 100%;
    top: 0;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%) scale(0.86);
    transition: left 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.75s ease;
    display: flex;
    align-items: flex-end;
    background: #111;
}

.carousel-slide.previous {
    left: 16%;
    transform: translateX(-50%) scale(0.84);
    opacity: 0.65;
    z-index: 3;
}

.carousel-slide.next {
    left: 84%;
    transform: translateX(-50%) scale(0.84);
    opacity: 0.65;
    z-index: 3;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%) scale(1);
}

.carousel-slide.previous img,
.carousel-slide.next img {
    filter: brightness(0.78) saturate(0.95);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease, filter 0.9s ease;
    filter: saturate(1.05) contrast(1.02);
}

.carousel-slide.active img {
    animation: zoomIn 8s ease both;
}

.slide-focus-left img { object-position: 40% center; }
.slide-focus-center img { object-position: center center; }
.slide-focus-right img { object-position: 60% center; }

.slide-caption {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(18, 18, 20, 0.88), rgba(18, 18, 20, 0.38));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    color: #fff;
    padding: 1rem 1.2rem;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    transform: translateY(28px);
    opacity: 0;
    z-index: 2;
}

.carousel-slide.active .slide-caption {
    animation: slideUp 0.8s ease 0.25s both;
}

/* Manual carousel controls removed for a cleaner, editorial look */


/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 80px 0;
    background: #fff;
}

/* Dark-style features section with three image cards (matches provided screenshot) */
.dark-features {
    padding: 80px 0;
    background: #3f3f42; /* dark grey */
    color: #e6e6e6;
}

.dark-features .section-title {
    color: #fff;
    text-align: center;
    font-size: 2.8rem;
}

.dark-features .features-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    max-width: 900px;
    margin: 8px auto 4px;
    line-height: 1.8;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
}

.feature-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    margin: 0 auto 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.feature-caption {
    color: rgba(255,255,255,0.75);
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
    font-style: italic;
}

@media (max-width: 900px) {
    .images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .images-grid {
        grid-template-columns: 1fr;
    }
    .feature-item img {
        width: 240px;
        height: 160px;
    }
}

/* ==========================
   Detailed Menu Layout
   ========================== */
.menu-section .menu-header {
    text-align: center;
    margin-bottom: 30px;
}

.menu-section .menu-tabs {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin: 12px 0 8px;
}

.menu-tab {
    border: 2px solid #444;
    padding: 8px 24px;
    display: inline-block;
    font-weight: 600;
    background: #fff;
    color: #222;
    border-radius: 2px;
}

.menu-times {
    display: flex;
    justify-content: center;
    gap: 60px;
    color: #666;
    font-size: 0.95rem;
    margin-top: 8px;
}

.menu-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.menu-card {
    background: transparent;
    padding: 8px 0;
}

.menu-item-title {
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
}

.menu-item-body {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.dot-list {
    list-style: disc;
    padding-left: 20px;
    color: #222;
}

.price-box {
    min-width: 140px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 18px 14px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.price {
    font-size: 1.5rem;
    color: #9b2b2b;
    font-weight: 700;
}

.price-currency { font-size: 0.9rem; color: #9b2b2b; }
.price-note { font-size: 0.8rem; color: #666; margin-top: 6px; }

.menu-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background: #333;
    color: #fff;
    padding: 20px;
    border-radius: 4px;
}

.sidebar-box h4 { margin-top: 0; color: #fff; }
.sidebar-inner.light-box {
    background: #efefef;
    color: #222;
    padding: 12px;
    margin-top: 10px;
}

.sidebar-inner.light-box ol {
    margin: 0;
    padding-left: 24px;
    color: #222;
}

.sidebar-inner.light-box li {
    margin-bottom: 4px;
    color: #222;
}

.sidebar-inner.light-box p {
    color: #222;
}

/* Responsive */
@media (max-width: 1000px) {
    .menu-content { grid-template-columns: 1fr; }
    .menu-columns { grid-template-columns: 1fr; }
    .menu-times { gap: 30px; }
}

@media (max-width: 600px) {
    .menu-tab { padding: 6px 12px; font-size: 0.95rem; }
    .price-box { min-width: 120px; padding: 12px; }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid #ffc107;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.15);
    background: linear-gradient(135deg, #fff, #fff9f0);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   MENU PREVIEW SECTION
   ============================================ */

.menu-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffaf0 0%, #fffefc 100%);
    position: relative;
    overflow: hidden;
}

.menu-preview::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.menu-preview .section-title,
.menu-preview .section-subtitle {
    color: #111;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.menu-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    color: #111;
}

.menu-item:hover {
    transform: translateY(-8px);
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.menu-image {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-image {
    transform: scale(1.2) rotate(-10deg);
}

.menu-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.menu-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.menu-price {
    font-size: 1.3rem;
    color: #ffc107;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    width: 100%;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.15);
    border-top: 3px solid #ffc107;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.info-item p {
    color: #666;
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #0a0a0f;
    color: #fff;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
}

.footer p {
    margin: 0.5rem 0;
    letter-spacing: 0.5px;
}

.footer p:first-child {
    color: #ffc107;
    font-weight: 600;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

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

@keyframes zoomIn {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(10, 10, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255, 193, 7, 0.1);
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        height: auto;
        padding: 100px 0 60px;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Sections */
    .carousel-section,
    .features,
    .menu-preview,
    .contact {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Carousel */
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-prev {
        left: 10px;
        position: relative;
        top: auto;
        transform: none;
    }

    .carousel-next {
        right: 10px;
        position: relative;
        top: auto;
        transform: none;
    }

    .carousel-wrapper {
        gap: 0;
        flex-wrap: wrap;
    }

    .carousel-container {
        aspect-ratio: 16 / 12;
    }

    .carousel-indicators {
        bottom: 15px;
        gap: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    /* Contact */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .carousel-container {
        aspect-ratio: 1 / 1;
    }

    .slide-caption {
        padding: 1rem;
        font-size: 1rem;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .features-grid,
    .menu-grid,
    .contact-info {
        gap: 1rem;
    }

    .feature-card,
    .menu-item,
    .info-item {
        padding: 1.5rem;
    }

    .feature-icon,
    .menu-image {
        font-size: 2rem;
    }
}
