/* ============================================
   LAHORI POINT — Restaurant Website
   Color Scheme: Dark Green + Gold + Cream
   ============================================ */

:root {
    --dark-green: #1a2e1a;
    --green: #1f3a1f;
    --green-light: #2a4a2a;
    --gold: #c8a24e;
    --gold-light: #d4b56a;
    --cream: #f5f0e1;
    --cream-dark: #e8dfc8;
    --white: #ffffff;
    --text-light: #d4d0c4;
    --text-muted: #9a9688;
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Cormorant Garamond', 'Georgia', serif;
    --font-ui: 'Montserrat', 'Arial', sans-serif;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark-green);
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--cream);
    color: var(--dark-green);
    border-color: var(--cream);
}

.btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-green);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn-outline:hover {
    background: var(--cream);
    color: var(--dark-green);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 14px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 8px 0;
    transition: all 0.4s ease;
    background: rgba(26, 46, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
    padding: 4px 0;
    background: rgba(26, 46, 26, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 180px;
    width: auto;
    transition: all 0.4s ease;
}

.navbar.scrolled .nav-logo-img {
    height: 70px;
}

.nav-info {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-contact {
    text-align: right;
}

.nav-phone {
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 700;
    color: var(--cream) !important;
    display: block;
    letter-spacing: 0.5px;
}

.nav-hours {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.nav-buttons .btn {
    padding: 10px 24px;
    font-size: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s;
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 16px 32px 24px;
    gap: 0;
}

.nav-mobile a {
    padding: 14px 0;
    color: var(--cream);
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(200, 162, 78, 0.15);
}

.nav-mobile a:last-child {
    border-bottom: none;
}

.nav-mobile .mobile-cta {
    margin-top: 16px;
    text-align: center;
}

.nav-mobile.open {
    display: flex;
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    background-color: var(--dark-green);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 40, 20, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 40px 80px;
    max-width: 100%;
    width: 100%;
}

.hero-location {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 10vw, 140px);
    font-weight: 900;
    color: #f0e8d0;
    line-height: 0.95;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

@media (min-width: 1024px) {
    .hero-title {
        white-space: nowrap;
    }
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 28px);
    color: var(--gold);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(200, 162, 78, 0.3);
    border-radius: 16px;
    padding: 16px 28px;
}

.rating-score {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.rating-details {
    text-align: left;
}

.rating-label {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--cream);
    display: block;
}

.rating-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}

.rating-source {
    font-family: var(--font-ui);
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

/* ============================================
   SECTIONS (shared)
   ============================================ */

.section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.section-title.gold {
    color: var(--gold);
}

.section-title.left {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-style: italic;
}

.gold-text {
    color: var(--gold);
}

/* ============================================
   ABOUT
   ============================================ */

.about {
    background: var(--dark-green);
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-light);
}

/* ============================================
   HIGHLIGHTS
   ============================================ */

.highlights {
    background: var(--green);
    padding: 80px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.highlight-card {
    text-align: center;
    padding: 48px 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 162, 78, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(200, 162, 78, 0.3);
    transform: translateY(-4px);
}

.highlight-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 12px;
}

.highlight-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   HALAL SECTION
   ============================================ */

.halal {
    background: var(--dark-green);
}

.halal-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.halal-image {
    border-radius: 16px;
    overflow: hidden;
}

.halal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    min-height: 400px;
}

.halal-card {
    padding: 56px;
    border: 1px solid rgba(200, 162, 78, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.halal-subtitle {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.halal-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.halal-card .btn {
    margin-top: 16px;
}

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

.menu {
    background: var(--dark-green);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 48px;
    border-bottom: 2px solid rgba(200, 162, 78, 0.2);
}

.menu-tab {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-light);
    padding: 14px 28px;
    border-radius: 0;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: -2px;
}

.menu-tab:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.menu-tab.active {
    background: transparent;
    border-bottom: 2px solid var(--gold);
    color: var(--cream);
    font-weight: 600;
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 700px;
}

.menu-item {
    padding: 20px 0;
    border: none;
    border-bottom: 1px solid rgba(200, 162, 78, 0.2);
    border-radius: 0;
    background: transparent;
    transition: none;
}

.menu-item:last-child {
    border-bottom: 1px solid rgba(200, 162, 78, 0.2);
}

.menu-item:hover {
    background: transparent;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
    gap: 16px;
}

.menu-item h4 {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--cream);
    font-weight: 400;
}

.menu-price {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    color: var(--cream);
    white-space: nowrap;
}

.menu-item p {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 500;
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gold);
    margin-top: 48px;
    margin-bottom: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-style: italic;
}

.menu-category-title:first-child {
    margin-top: 0;
}

.menu-category-desc {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--text-muted);
    font-style: normal;
    font-weight: 500;
    margin-bottom: 8px;
}

.menu-category-title + .menu-grid {
    margin-top: 8px;
}

.menu-category-desc + .menu-grid {
    margin-top: 0;
}

.menu-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.menu-col .menu-category-title:first-child {
    margin-top: 0;
}

.menu-note {
    text-align: center;
    margin-top: 40px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
    background: var(--dark-green);
}

.gallery .container {
    max-width: 1400px;
    padding: 0 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gallery-item {
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(200, 162, 78, 0.15);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item:hover {
    border-color: var(--gold);
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(200, 162, 78, 0.15);
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   CONTACT / MAP
   ============================================ */

.contact {
    background: var(--green);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 24px;
    border: 1px solid rgba(200, 162, 78, 0.15);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-card a {
    color: var(--cream);
}

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

.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 64px 0 0;
    border-top: 1px solid rgba(200, 162, 78, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 48px;
}

.footer-col h4 {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-col a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(200, 162, 78, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-green);
}

.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-nav a {
    padding: 4px 0;
    color: var(--text-muted);
    font-size: 15px;
}

.footer-nav a:first-child {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(200, 162, 78, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--text-muted);
}

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

@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-info {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .halal-content {
        grid-template-columns: 1fr;
    }

    .halal-image img {
        min-height: 250px;
    }

    .hero-content {
        padding: 100px 32px 60px;
    }

    .hero-title {
        font-size: clamp(42px, 12vw, 72px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-rating {
        flex-direction: column;
        text-align: center;
    }

    .rating-details {
        text-align: center;
    }

    .section {
        padding: 64px 0;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .halal-card {
        padding: 32px 24px;
    }

    .menu-tabs {
        gap: 0;
    }

    .menu-tab {
        padding: 10px 14px;
        font-size: 11px;
    }

    .menu-two-col {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .logo-name {
        font-size: 22px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-tagline {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .btn-lg {
        padding: 14px 32px;
        font-size: 13px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
