/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
}
body,html{
  overflow-x: hidden;
}
/* Hero Section */
.hero {
    background: url('src/img/bg-hero.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 8px;
    color: #fff;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.menu-tabs {
    margin-bottom: 20px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: #f0c97a;
    margin: 0 10px;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    color: #fff;
    font-weight: bold;
}

.menu-content {
    background: transparent;
    padding: 20px;
    border-radius: 6px;
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
}

.menu-panel ul {
    list-style: none;
}

.menu-panel li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
    color: #fff;
}

.menu-panel li img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}

/* Popular Dish Section */
.popular {
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-family: 'Georgia', serif;
    font-size: 36px;
    margin-bottom: 40px;
    color: #5a2b2b;
}

.popular-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.dish-card {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.dish-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.dish-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #5a2b2b;
}

.dish-card p {
    font-size: 14px;
    color: #555;
}

.dish-card:hover {
    transform: translateY(-10px);
    background-color: rgb(255, 192, 75);
}

.highlight {

    color: #fff;
    border-radius: 8px;
}

.highlight h3 {
    color: #fff;
}



/* About */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 60px;
    background: #fff;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text span {
    color: #e6a139;
}

.about-gallery {
    flex: 1;
    display: flex;
    gap: 20px;
}

.about-gallery img {
    width: 350px;
    border-radius: 8px;
}

/* Highlight (Best Seller) */
.highlight-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    background: #f8f8f8;
}

.highlight-box {
    background: #f19a29;
    color: #fff;
    padding: 40px;
    border-radius: 8px;
    flex: 1;
}

.highlight-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.highlight-list {
    list-style: none;
}

.highlight-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.highlight-image {
    flex: 1;
    text-align: center;
}

.highlight-image img {
    width: 80%;
    border-radius: 8px;
}

/* Menu */
.menu-section {
    padding: 80px 60px;
    background: #111;
    color: #fff;
    text-align: center;
}

.menu-heading {
    font-size: 36px;
    margin-bottom: 40px;
}

.menu-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.menu-card {
    text-align: center;
    flex: 1 1 200px;
}

.menu-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #e68739;
}

/* Kitchen */
.kitchen-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    gap: 40px;
}

.kitchen-photo {
    width: 50%;
    border-radius: 8px;
}

.kitchen-content {
    flex: 1;
}

.kitchen-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.kitchen-content p {
    margin-bottom: 20px;
}

/* Info (Specials & Mission) */
.info-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px;
    background: #f8f8f8;
}

.info-box {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.info-box span {
    color: orange;
}



/* Main Wrapper */
.raka-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 40px 0;
  margin-left: 40px;
}

/* Booking Section */
.raka-booking-box {
  flex: 1;
  background: rgb(236, 188, 98);
  color: #fff;
  padding: 40px 30px;

}
.raka-booking-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}
.raka-booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.raka-booking-form input,
.raka-booking-form select {
  padding: 12px;
  border: none;
  outline: none;
  font-size: 14px;
  border-radius: 4px;
}
.raka-submit-btn {
  background: #fff;
  color: #000;
  padding: 14px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.raka-submit-btn:hover {
  background: #ddd;
}

/* About Text */
.raka-about-text {
  flex: 1;
  padding: 40px 30px;
}
.raka-subtitle {
  color: orange;
  font-size: 3.5rem;
  font-family: 'Brush Script MT', cursive;
  margin-bottom: 10px;
  margin-left: 30px;
}
.raka-heading {
  font-size: 32px;
  margin-bottom: 20px;
}
.raka-heading span {
  color: #111;
  font-weight: bold;
}
.raka-description {
  line-height: 1.8;
  color: #555;
}

/* Chef Image */
.raka-chef-photo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.raka-chef-photo img {
  width: 400px;
  height: 500px;
}

/* ===========================
   Responsive Design
   =========================== */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  

  .about-section,
  .highlight-section,
  .kitchen-section,
  .info-section,
  .raka-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .about-gallery {
    flex-direction: column;
    align-items: center;
  }

  .about-gallery img {
    width: 80%;
  }

  .highlight-image img {
    width: 100%;
  }

  .kitchen-photo {
    width: 100%;
  }

  .raka-chef-photo img {
    width: 300px;
    height:  450px;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  

  .tab-btn {
    font-size: 16px;
    margin: 0 5px;
  }

  .popular-grid {
    flex-direction: column;
    align-items: center;
  }

  .dish-card img {
    width: 120px;
    height: 120px;
  }

  .section-title {
    font-size: 28px;
  }

  .raka-wrapper {
    margin-left: 0;
    padding: 20px;
  }

  .raka-chef-photo img {
    width: 250px;
    height:  450px;
  }
}

/* Extra Small (≤ 480px) */
@media (max-width: 480px) {
  
  .tab-btn {
    font-size: 14px;
  }

  .dish-card {
    max-width: 90%;
  }

  .raka-booking-box {
    padding: 20px;
  }

  .raka-about-text {
    padding: 20px;
  }

  .raka-heading {
    font-size: 24px;
  }

  .raka-chef-photo img {
    width: 200px;
    height: 450px;
  }
}


.primary-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffb222; /* vibrant orange */
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: #e68d19; /* darker shade on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}


/* --- Global Styles & Variables (Required for both Navbar and Footer) --- */
:root {
    --primary-color: #E67E22;
    --dark-color: #2C3E50;
    --light-color: #FDFEFE;
    --text-color: #34495E;
    --rustic-bg: #F5EFE6;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Montserrat', sans-serif;
    --nav-height: 70px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--rustic-bg);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 3rem 1.5rem;
}

.contact-link {
    color: inherit;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--primary-color);
}


/* --- Navbar Specific Styles --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease;
    /* Set a default background color for other pages */
    background-color: #1d1d1d; 
    height: var(--nav-height);
    display: flex;
    align-items: center;
}

/* This class is for the transparent-to-solid effect on the homepage.
   You can keep it for consistency or remove if not needed on other pages. */
.navbar.scrolled {
    background-color: var(--dark-color);
    box-shadow: 0 2px 10px #ffffff1a;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.nav-logo img {
    height: 45px;
    width: 45px;
    margin-right: 10px;
    border-radius: 50%;
    background: white;
    padding: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active-link {
    color: var(--primary-color);
    font-weight: 700;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--light-color);
    transition: all 0.3s ease-in-out;
}

/* --- Responsive Styles for Navbar --- */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px; /* Adjust based on navbar height */
        flex-direction: column;
        background-color: #1d1d1d;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid #4d5b69;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
/* --- Footer Styles --- */
.site-footer {
    background-color: #1d1d1d;
    color: #edf3f7;
    padding-top: 3rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-logo {
    width: 100px;
    background: var(--light-color);
    border-radius: 50%;
    padding: 5px;
    margin-bottom: 1rem;
}

.site-footer h4 {
    font-family: var(--font-heading);
    color: orange;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li a {
    color: #fcfeff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p i {
    margin-right: 10px;
}

.footer-social a {
    color: #ecf1f5;
    font-size: 1.5rem;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #34495E;
}
/* =================================
   MENU SECTION & VIDEO BACKGROUND
==================================== */
#menu {
    position: relative; /* Required for video positioning */
    overflow: hidden;   /* Hides anything that spills out */
    padding-bottom: 80px;
    color: #fff; /* Default text color for this section */
}

.menu-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the video */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Place video behind content */
    object-fit: cover;
}

#menu .wrap {
    position: relative; /* Ensure text is above the video */
    z-index: 1;
    text-align: center;
    padding: 80px 20px;
}

#menu h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffd369; /* A gold-like color for the title */
}

#menu p.lead {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #f1f1f1;
}

/* =================================
   MENU GRID & CATEGORY CARDS
==================================== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
    gap: 24px;
    padding: 0 24px;
}

.menu-card {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    backdrop-filter: blur(5px);      /* Frosted glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.menu-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.menu-card h2 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 8px;
}

.menu-card p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

/* =================================
   POPUP PANEL & DISH LIST
==================================== */
.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.panel-content {
    background: #fffbea; /* A warm, creamy background */
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    padding: 25px;
    position: relative;
    max-height: 90vh; /* Prevent panel from being too tall */
    overflow-y: auto;
    animation: slideDown 0.4s ease-out;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.panel-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    line-height: 1;
}

#panel-title {
    text-align: center;
    font-family: 'Merriweather', serif;
    color: #E67E22; /* Primary orange color */
    margin-bottom: 20px;
    font-size: 1.8rem;
}

#panel-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dish-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5efe6; /* Rustic background from your variables */
    padding: 12px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dish-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dish-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-right: 15px;
    object-fit: cover;
}

.dish-info {
    flex-grow: 1;
    text-align: left;
}

.dish-info span:first-child {
    font-weight: 600;
    color: #2C3E50; /* Dark color from your variables */
    font-size: 1rem;
    display: block;
}

.dish-info span:last-child {
    font-weight: 600;
    color: #E67E22; /* Price in primary color */
    font-size: 1rem;
}

/* Animation for the panel appearing */
@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* =================================
   RESPONSIVE DESIGN
==================================== */
/* Tablets */
@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobiles */
@media (max-width: 600px) {
    #menu .wrap {
        padding: 60px 15px;
    }
    .menu-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 20px;
    }
}
