/* --- General Setup & Variables --- */
:root {
    --bg-color: #212121;
    --text-color: #F5F5F5;
    --primary-accent: #E64A19;
    --secondary-accent: #4CAF50;
    --card-bg-color: #333;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 40px; }
.content-section { padding: 80px 0; }

/* --- Header & Navigation --- */
.main-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: background-color 0.3s ease; }
.main-header.scrolled { background-color: rgba(33, 33, 33, 0.95); box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.main-nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; }
.logo img {
    height: 45px; /* Adjust this value to make the logo bigger or smaller */
    width: auto;
    display: block; /* Helps prevent extra space below the image */
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05); /* Adds a subtle zoom effect on hover */
}
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { color: var(--text-color); text-decoration: none; font-size: 1rem; font-weight: 700; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--primary-accent); }
.cta-button { background-color: var(--primary-accent); color: #fff; padding: 10px 25px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: background-color 0.3s ease, transform 0.2s ease; }
.cta-button:hover { background-color: #d84315; transform: translateY(-2px); }

/* --- Hero Carousel --- */
.hero-section { min-height: 100vh; position: relative; display: flex; overflow: hidden; }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.slider-wrapper { display: flex; width: 400%; height: 100%; transition: transform 0.7s ease-in-out; }
.slide { width: 25%; height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; padding: 0 20px; background-size: cover; background-position: center; position: relative; }
.slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)); }
.slide:nth-child(1) { background-image: url('images/burger_carousel.jpeg'); }
.slide:nth-child(2) { background-image: url('images/chops_carousel.jpeg'); }
.slide:nth-child(3) { background-image: url('images/oxtail_carousel.jpeg'); }
.slide:nth-child(4) { background-image: url('images/salad_carousel.jpeg'); }
.hero-content { position: relative; z-index: 2; color: #fff; }
.hero-content h1 { font-size: 4rem; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; max-width: 600px; margin: 0 auto; }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(0,0,0,0.3); color: #fff; border: none; font-size: 2rem; padding: 10px 15px; cursor: pointer; z-index: 10; transition: background-color 0.3s; }
.slider-nav:hover { background-color: rgba(0,0,0,0.6); }
.slider-nav.prev { left: 15px; }
.slider-nav.next { right: 15px; }
.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.dot { width: 12px; height: 12px; border-radius: 50%; background-color: rgba(255,255,255,0.5); cursor: pointer; transition: background-color 0.3s; }
.dot.active { background-color: var(--primary-accent); }

/* --- About Section --- */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-image img { width: 100%; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.about-text h2 { text-align: left; margin-bottom: 20px; }
.usp-list { list-style: none; margin-top: 20px; }
.usp-list li { font-size: 1.1rem; margin-bottom: 10px; display: flex; align-items: center; }
.usp-list i { color: var(--secondary-accent); margin-right: 15px; width: 20px; text-align: center; }

/* --- Menu Section --- */
.menu-section { background-color: #1a1a1a; }
.spice-level-key { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; margin-bottom: 40px; font-weight: bold; }
.spice-indicator { padding: 5px 15px; color: #fff; font-size: 0.8rem; border-radius: 5px; text-transform: uppercase; }
.extra-hot { background: linear-gradient(45deg, #b71c1c, #d32f2f); }
.hot { background-color: #E64A19; }
.medium { background-color: #f7b731; }
.tikka-hot { background-color: #ff8a65; color: #333; }
.mild { background-color: #4CAF50; }
.mango-lime { background-color: #ffca28; color: #333; }
.lemon-herb { background-color: #a4cc4f; color: #333; }
.menu-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; }
.tab-link { background: transparent; border: 2px solid var(--primary-accent); color: var(--text-color); padding: 10px 25px; border-radius: 50px; cursor: pointer; font-size: 1rem; font-weight: 700; transition: all 0.3s ease; }
.tab-link:hover, .tab-link.active { background-color: var(--primary-accent); color: #fff; }
.menu-content { display: none; animation: fadeIn 0.5s; }
.menu-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.menu-category-title { font-size: 1.8rem; color: var(--primary-accent); margin-top: 40px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--card-bg-color); }
.menu-content > .menu-category-title:first-child { margin-top: 0; }
.menu-item { background-color: var(--card-bg-color); padding: 20px; border-radius: 8px; margin-bottom: 20px; border-left: 5px solid var(--primary-accent); }
.menu-item-header { display: flex; justify-content: space-between; align-items: baseline; }
.menu-item-header h4 { font-size: 1.2rem; }
.menu-item-header span { font-size: 1.2rem; font-weight: 700; color: var(--primary-accent); }
.menu-item p { margin-top: 5px; color: #ccc; }

/* --- Gallery Section --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.gallery-item:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }

/* --- Contact Section --- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: flex-start; }
.contact-details h3 { font-size: 2rem; margin-bottom: 20px; }
.contact-info { list-style: none; margin-bottom: 30px; }
.contact-info li { font-size: 1.1rem; margin-bottom: 15px; display: flex; align-items: center; }
.contact-info i { color: var(--primary-accent); margin-right: 15px; width: 25px; text-align: center; }
.social-links a { color: var(--text-color); font-size: 1.5rem; margin-right: 20px; transition: color 0.3s ease; }
.social-links a:hover { color: var(--primary-accent); }
.contact-map iframe { width: 100%; height: 400px; border-radius: 8px; filter: invert(90%) hue-rotate(180deg); }

/* --- Footer --- */
.main-footer { background-color: #111; padding: 30px 0; }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; max-width: 1200px; margin: 0 auto; padding: 0 20px;}
.footer-links a { color: var(--text-color); text-decoration: none; margin-left: 20px; }
.footer-links a:hover { color: var(--primary-accent); }

/* --- Helper Utilities --- */
.back-to-top { position: fixed; bottom: 20px; right: 20px; background-color: var(--primary-accent); color: #fff; width: 40px; height: 40px; border-radius: 50%; display: none; justify-content: center; align-items: center; font-size: 1.2rem; z-index: 100; text-decoration: none; transition: opacity 0.3s ease, visibility 0.3s ease; }
.back-to-top.visible { display: flex; }
.lightbox { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.9); }
.lightbox-content { margin: auto; display: block; max-width: 80%; max-height: 80%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.lightbox-close { position: absolute; top: 15px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; cursor: pointer; }

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .main-nav { flex-direction: column; gap: 15px; padding: 15px 20px; }
    .nav-links { gap: 20px; }
    .hero-content h1 { font-size: 2.5rem; }
    .slider-nav { font-size: 1.5rem; padding: 5px 10px; }
    .about-layout, .contact-layout { grid-template-columns: 1fr; }
    .about-text h2 { text-align: center; }
    .footer-content { flex-direction: column; text-align: center; }
}
/* PASTE THIS CODE AT THE BOTTOM OF style.css */

/* --- Mall Map Section --- */
.mall-map-section {
    background-color: #1a1a1a; /* Matches the menu background for consistency */
    text-align: center;
}

.mall-map-section .map-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.mall-map-section img {
    max-width: 100%;
    width: 600px; /* Adjust this value if the map is too large or small */
    border-radius: 8px;
    margin-bottom: 25px;
    border: 3px solid #444;
}

.mall-map-section .location-callout {
    font-size: 1.25rem;
    font-weight: 700;
}

.mall-map-section .location-callout strong {
    color: var(--primary-accent); /* Highlights FU2 in the brand's orange color */
    font-size: 1.5rem;
}