/* --- Basic Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior:smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
     color: #333;
}

/* --- Header & Navigation Bar --- */
header {
    background-color: #ffffff;
    border-bottom: 3px solid #ff8c00;
    padding: 15px 5%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.logo img {
    height: 60px;
}

.logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #e67e22;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    /* ADDED for the underline effect */
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: #d35400;
}

/* --- ADDED FOR THE ACTIVE LINK --- */
.nav-links a.active {
    color: #d35400;
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff8c00;
}
/* --- END OF ACTIVE LINK STYLES --- */

.mobile-menu-button {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}






/* --- Hero Section --- */
.hero {
    height: 90vh;
    color: #fff;
    background: url('./src/banner_pic.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}






/* Dark overlay for readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    /* To sit on top of the overlay */
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-content .tagline {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}









/* --- General Section Styling (Add if you don't have it) --- */
.content-section {
    padding: 80px 5%;
    box-sizing: border-box; /* <-- ADD THIS LINE */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 4px;
    background-color: #ff8c00;
}

.btn {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}










/* --- About Us Section --- */
.about-section {
    padding: 80px 5%;
    background: #fff;
}

/* Main About content (image + text) */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-content img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-text h3 {
    font-size: 1.8rem;
    color: #ff8c00;
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

/* Grand Opening */
.grand-opening {
    text-align: center;
    margin-bottom: 50px;
}
.grand-opening h3 {
    color: #ff8c00;
    font-size: 24px;
    margin-bottom: 10px;
}
.grand-opening p {
    max-width: 700px;
    margin: 0 auto;
    color: #444;
}

/* Invitation */
.about-invitation {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}
.about-invitation img {
    width: 45%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.about-invitation .invitation-text {
    flex: 1;
}
.about-invitation h3 {
    color: #ff8c00;
    margin-bottom: 15px;
    font-size: 1.8rem;
}
.about-invitation p {
    margin-bottom: 15px;
}

/* Future Promise */
.about-dream {
    text-align: center;
}
.about-dream h3 {
    margin-bottom: 30px;
    font-size: 26px;
    color: #ff8c00;
}
.dream-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.dream-item {
    text-align: center;
}
.dream-item img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.dream-item:hover img {
    transform: scale(1.05);
}
.dream-item p {
    font-size: 14px;
    color: #444;
}

/* 4. Define the styles for the hover state */
.dream-item:hover img {
    transform: scale(1.1); /* Zoom the image in */
}

.dream-item:hover .dream-caption {
    opacity: 1; /* Fade the caption in */
    transform: translateY(0); /* Slide the caption up to its original spot */
}

.dream-item img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
  height: 180px;
  object-fit: cover;
}
.dream-item p {
  font-size: 14px;
  color: #444;
}









/* --- Ambiances Section & Attractive Owl Carousel --- */

.content-section-dark {
    padding: 80px 5%;
    background-color: #f8f9fa;
    /* A very light grey for contrast */
    position: relative;
    /* Needed for positioning nav arrows */
}

/* 1. Carousel Item Styling (The Cards) */
.ambiance-item {
    position: relative;
    border-radius: 15px;
    /* Softer corners */
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: scale(0.95);
    /* Start slightly smaller */
    transition: all 0.4s ease-in-out;
}

.ambiance-item img {
    display: block;
    width: 100%;
    height: 300px;
    /* Taller images */
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ambiance-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #fff;
    padding: 30px 20px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    opacity: 0;
    /* Hidden by default */
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

/* 2. Enhanced Hover and Active States */
.owl-item.active .ambiance-item {
    transform: scale(1);
    /* Active (center) item is full size */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ambiance-item:hover .ambiance-caption,
.owl-item.active .ambiance-item .ambiance-caption {
    opacity: 1;
    /* Show caption on hover and for active item */
    transform: translateY(0);
}

.ambiance-item:hover img {
    transform: scale(1.1);
}


/* 3. Custom Navigation Arrows (Prev/Next) */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff !important;
    color: #ff8c00 !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    font-size: 24px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: #ff8c00 !important;
    color: #ffffff !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -25px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -25px;
}

/* 4. Custom Dot Indicators */
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px !important;
}

.owl-carousel .owl-dot {
    display: inline-block;
}

.owl-carousel .owl-dot span {
    width: 12px !important;
    height: 12px !important;
    margin: 0 5px !important;
    background: #ddd !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active span {
    background: #ff8c00 !important;
    width: 30px !important;
    /* Active dot is wider */
    border-radius: 10px;
}

/* --- Magnific Popup Custom INLINE Styling --- */

/* This class hides the popup content on the page */
.mfp-hide {
    display: none !important;
}

/* Styles for the popup container itself */
.mfp-content .popup-description {
    background: #2c3e50;
    /* Matches your footer */
    padding: 40px;
    width: auto;
    max-width: 600px;
    /* Set a comfortable width */
    margin: 20px auto;
    /* Center the popup */
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.mfp-content .popup-description h2 {
    font-size: 2rem;
    color: #ff8c00;
    /* Your brand orange */
    margin-bottom: 15px;
}

.mfp-content .popup-description p {
    font-size: 1.1rem;
    color: #ecf0f1;
    line-height: 1.7;
    margin: 0;
}

/* Optional: Fade-in animation for the popup */
.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;

}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-removing .mfp-content {
    opacity: 0;
}

/* --- Custom Styling for Magnific Popup Close Button --- */

.mfp-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    line-height: 44px;

    /* Style the 'X' */
    font-size: 30px;
    color: #ffffff;
    text-align: center;

    /* Remove default styling */
    opacity: 0.8;
    background: transparent;
    text-shadow: none;
    padding: 0;

    transition: color 0.3s ease, transform 0.3s ease;
}

.mfp-close:hover {
    color: #ffffff;
    /* Brighter white on hover */
    opacity: 1;
    transform: scale(1.1);
}

/* Position the close button inside our custom popup */
.mfp-content .popup-description .mfp-close {
    top: 5px;
    right: 5px;
    color: white;
}

.menu-container {
    display: flex;
    min-height: 100vh;
    flex-wrap: wrap;
}

/* LEFT PANEL */
.menu-left {
    flex: 1;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: opacity 1s ease-in-out, background-image 1s ease-in-out;
    background-color: #000;
    /* fallback */
}

.slideshow.fade {
    opacity: 0.7;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.left-content {
    position: relative;
    text-align: center;
    padding: 20px;
    z-index: 2;
}

.restaurant-name {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.slogan {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.opening-hours {
    margin-top: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.website {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* RIGHT PANEL */
.menu-right {
    flex: 1;
    background: #fafafa;
    padding: 40px;
    overflow-y: auto;
    max-height: 100vh;
}

.menu-section {
    margin-bottom: 40px;
}

.menu-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ff8c00;
    border-bottom: 2px solid #ddd;
    display: inline-block;
    padding-bottom: 5px;
}

.menu-item {
    margin-bottom: 20px;
}

.menu-item h3 {
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    color: #333;
}

.menu-item p {
    font-size: 0.95rem;
    color: #666;
}

/* SCROLL STYLING */
.menu-right::-webkit-scrollbar {
    width: 8px;
}

.menu-right::-webkit-scrollbar-thumb {
    background: #ff8c00;
    border-radius: 4px;
}

.menu-right::-webkit-scrollbar-track {
    background: #eee;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
    .restaurant-name {
        font-size: 2rem;
    }

    .slogan {
        font-size: 1rem;
    }

    .menu-right {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .menu-container {
        flex-direction: column;
    }

    .menu-left {
        height: 60vh;
    }

    .menu-right {
        max-height: none;
        height: auto;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .restaurant-name {
        font-size: 1.6rem;
    }

    .slogan {
        font-size: 0.9rem;
    }

    .menu-section h2 {
        font-size: 1.4rem;
    }

    .menu-item h3 {
        font-size: 1rem;
    }

    .menu-item p {
        font-size: 0.85rem;
    }
}





/* --- Contact Section --- */
#contact {
  padding: 80px 5%;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 70px;
  height: 3px;
  background-color: #ff7b00;
  border-radius: 3px;
}

/* --- Wrapper --- */
.contact-wrapper {
  display: flex;
  /* gap: 20px; */
  flex-wrap: wrap;
  justify-content: space-between;
}

/* --- Contact Info --- */
.contact-info {
  flex: 1 1 45%;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: #ff7b00;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

.contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.contact-details-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
}

.contact-details-list i {
  color: #ff7b00;
  margin-right: 12px;
  font-size: 1.2rem;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  border: none;
}

/* --- Contact Form --- */
.contact-form {
  flex: 1 1 45%;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #ff7b00;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff7b00;
}

.contact-form button.btn {
  background: #ff7b00;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}

.contact-form button.btn:hover {
  background: #e66a00;
  transform: translateY(-2px);
}

/* --- Responsive Breakpoints --- */

/* Tablets (<= 768px) */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
  }

  .contact-map iframe {
    height: 200px;
  }
}

/* Mobile (<= 480px) */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .contact-info h3,
  .contact-form h3 {
    font-size: 1.3rem;
  }

  .contact-details-list li {
    font-size: 0.9rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.9rem;
    padding: 10px;
  }

  .contact-form button.btn {
    width: 100%;
    font-size: 0.95rem;
  }
}

/* Small Mobile (<= 320px) */
@media (max-width: 320px) {
  .section-title {
    font-size: 1.5rem;
  }

  .contact-info p {
    font-size: 0.85rem;
  }

  .contact-details-list li {
    font-size: 0.8rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.85rem;
    padding: 8px;
  }

  .contact-form button.btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}












/* --- Attractive Footer Section --- */
.site-footer {
    background-color: #2c3e50;
    /* A modern, dark blue-grey */
    color: #bdc3c7;
    /* A soft, light grey for text */
    padding: 60px 0 20px 0;
    font-size: 0.95rem;
    border-bottom: 3px solid #ff8c00;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* This creates 4 responsive columns */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    padding: 0 10px;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: #ff8c00;
    /* Using your brand's orange */
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

/* Stylish underline for headings */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: #ff8c00;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 60px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-tagline {
    line-height: 1.7;
}

.footer-links,
.contact-details,
.opening-hours {
    list-style: none;
    padding: 0;
}

.footer-links a,
.contact-details span,
.opening-hours li {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff8c00;
    padding-left: 5px;
}

.contact-details li,
.opening-hours li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-details i {
    color: #ff8c00;
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 4px;
}

/* Social Media Icons */
.social-links {
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ff8c00;
    transform: translateY(-3px);
}

/* Bottom Copyright Bar */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    /* A slightly lighter line */
}


#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #e67e22;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

#backToTop:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}
/* =========================================== */
/* --- Main Responsive Styles for Mobile --- */
/* =========================================== */

@media (max-width: 992px) {

    /* --- General Spacing & Typography --- */
    .content-section,
    .content-section-dark {
        padding: 60px 5px; /* Reduce top/bottom padding */
    }

    .section-title {
        font-size: 2rem; /* Make section titles smaller */
    }

    /* --- Header & Navigation --- */
    .nav-links {
        display: none;
        position: absolute;
        top: 93px; /* Adjusted to match your header height */
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links ul {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 20px;
    }

    .mobile-menu-button {
        display: block;
    }

    /* --- Hero Section --- */
    .hero {
        height: 80vh;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content .tagline {
        font-size: 1.2rem;
    }

    /* --- About Section --- */
    .about-content {
        grid-template-columns: 1fr; /* Stack image and text */
    }
    .about-invitation {
        flex-direction: column; /* Stack image and text */
        text-align: center;
    }
    .about-invitation img {
        width: 100%;
        max-width: 400px;
    }
    .dream-list {
        grid-template-columns: 1fr 1fr; /* 2 columns on tablets */
    }

    /* --- Ambiences Carousel --- */
    .owl-carousel .owl-nav button.owl-prev {
        left: 10px; /* Bring arrows inside on mobile */
    }
    .owl-carousel .owl-nav button.owl-next {
        right: 10px; /* Bring arrows inside on mobile */
    }

    /* --- Our Dishes Section --- */
    .menu-container {
        flex-direction: column; /* Stack the two panels */
    }
    .menu-left {
        height: 50vh; /* Adjust height for mobile view */
    }
    .menu-right {
        max-height: none; /* Allow it to grow */
        height: auto;
    }

    /* --- Contact Section --- */
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stack info and form */
    }

    .contact-form {
        margin-top: 40px;
    }
    
    /* --- Footer --- */
    .footer-container {
        text-align: center; /* Center text when columns stack */
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%); /* Center the underline */
    }
    
    .footer-logo, .social-links, .contact-details li, .opening-hours li {
        justify-content: center; /* Center align items */
    }
}


/* Adjustments for very small screens */
@media (max-width: 600px) {
    .dream-list {
        grid-template-columns: 1fr; /* 1 column on small phones */
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
