/* ============================================
   PAK DARBAR RESTAURANTS — Clone Stylesheet
   Colors: #2A2423, #C8693A, #008C37, #FAF3ED
   Fonts: Roboto, Roboto Slab, Spectral
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #2B2824;
    background: #FAF3ED;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.container {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: #2A2423;
    padding: 12px 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1430px;
    margin: 0 auto;
}

.nav-left, .nav-right {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #008C37;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #008C37;
}

.logo {
    text-align: center;
    flex-shrink: 0;
}

.logo img {
    height: 70px;
    width: auto;
    transition: height 0.3s ease;
}

.header.scrolled .logo img {
    height: 55px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #2A2423;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    font-family: 'Roboto Slab', serif;
    font-size: 24px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mobile-nav a:hover {
    color: #008C37;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 86vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42,36,35,0.85) 0%, rgba(42,36,35,0.5) 50%, rgba(42,36,35,0.7) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 700px;
}

.hero-subtitle {
    font-family: 'Spectral', sans-serif;
    font-style: italic;
    font-size: 18px;
    color: #008C37;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-tagline {
    font-family: 'Spectral', sans-serif;
    font-size: 17px;
    color: #E5DCDB;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    font-family: 'Roboto Slab', serif;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    font-weight: 600;
}

.dot.active {
    opacity: 1;
    color: #008C37;
}

.dot:hover {
    opacity: 1;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-label {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #C8693A;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-label.white {
    color: #008C37;
}

.section-label.center {
    text-align: center;
}

.section-title {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #2A2423;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42,36,35,0.92);
}

.about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-img-main {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.about-img-small {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border: 5px solid #C8693A;
}

.about-img-accent {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    color: #E5DCDB;
}

.about-text .section-label {
    color: #008C37;
}

.about-text .section-title {
    color: #fff;
    font-family: 'Roboto Slab', serif;
}

.about-desc {
    font-family: 'Spectral', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #C3B1AB;
    margin-bottom: 35px;
    max-width: 520px;
}

.btn-primary {
    display: inline-block;
    font-family: 'Spectral', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 60px;
    padding: 0 35px;
    background: #008C37;
    color: #fff;
    border: 2px solid #008C37;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: transparent;
    color: #008C37;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
    padding: 100px 0;
    background: #FAF3ED;
}

.menu-header {
    margin-bottom: 50px;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    flex-wrap: wrap;
    border-bottom: 2px solid #E5DCDB;
}

.menu-tab {
    font-family: 'Roboto Slab', serif;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: #C3B1AB;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.menu-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #008C37;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-tab.active {
    color: #2A2423;
}

.menu-tab.active::after {
    transform: scaleX(1);
}

.menu-tab:hover {
    color: #2A2423;
}

.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 1fr;
    gap: 0;
}

.menu-item {
    display: flex;
    align-items: baseline;
    padding: 18px 20px;
    border-bottom: 1px solid #E5DCDB;
    transition: background 0.3s ease;
}

.menu-item:hover {
    background: rgba(0,140,55,0.05);
}

.menu-num {
    font-family: 'Roboto Slab', serif;
    font-size: 14px;
    font-weight: 600;
    color: #C8693A;
    margin-right: 12px;
    min-width: 30px;
}

.menu-name {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2A2423;
    letter-spacing: 0.5px;
}

/* ============================================
   SPECIALS SECTION
   ============================================ */
.specials {
    padding: 80px 0;
    background: #FAF3ED;
}

.specials-header {
    margin-bottom: 50px;
    text-align: center;
}

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

.special-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.special-img {
    height: 250px;
    overflow: hidden;
}

.special-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.special-card:hover .special-img img {
    transform: scale(1.05);
}

.special-card h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 16px;
    font-weight: 600;
    color: #2A2423;
    margin: 20px 15px 8px;
    line-height: 1.3;
}

.special-card p {
    font-family: 'Spectral', sans-serif;
    font-size: 14px;
    color: #C3B1AB;
    padding: 0 15px;
    line-height: 1.5;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 100px 0;
    background: #FAF3ED;
}

.gallery-header {
    margin-bottom: 50px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42,36,35,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: 'Roboto Slab', serif;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.gi-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
.gi-4 { grid-column: 3 / 4; grid-row: 1 / 3; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42,36,35,0.9);
}

.testimonials-header {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
    text-align: center;
}

.testimonials-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #008C37;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-family: 'Spectral', sans-serif;
    font-size: 15px;
    color: #E5DCDB;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-name {
    font-family: 'Roboto Slab', serif;
    font-size: 16px;
    font-weight: 600;
    color: #008C37;
    letter-spacing: 1px;
}

/* ============================================
   HOURS & ORDER
   ============================================ */
.hours-order {
    padding: 100px 0;
    background: #FAF3ED;
}

.hours-order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.hours-section .section-label {
    margin-bottom: 30px;
}

.hours-list {
    display: flex;
    flex-direction: column;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #E5DCDB;
    font-family: 'Roboto', sans-serif;
}

.hours-row span:first-child {
    font-weight: 500;
    color: #2A2423;
    font-size: 15px;
}

.hours-row span:last-child {
    color: #C8693A;
    font-weight: 500;
    font-size: 15px;
}

.order-section .section-title {
    font-size: 32px;
}

.order-desc {
    font-family: 'Spectral', sans-serif;
    font-size: 16px;
    color: #C3B1AB;
    line-height: 1.7;
    margin-bottom: 30px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    border: 1px solid #E5DCDB;
    background: #fff;
    color: #2A2423;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #008C37;
}

.form-group input::placeholder {
    color: #C3B1AB;
}

.reservation-form .btn-primary {
    align-self: flex-start;
    margin-top: 5px;
}

/* ============================================
   LOCATION
   ============================================ */
.location-section {
    padding: 80px 0;
    background: #fff;
}

.location-header {
    margin-bottom: 40px;
}

.location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.location-map iframe {
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1F1917;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-about p {
    font-family: 'Spectral', sans-serif;
    font-size: 15px;
    color: #C3B1AB;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #C3B1AB;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #008C37;
}

.footer-payments h4 {
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.footer-payments p {
    font-family: 'Spectral', sans-serif;
    font-size: 15px;
    color: #C3B1AB;
    line-height: 1.7;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.pay-icon {
    font-size: 28px;
}

.footer-bottom {
    border-top: 1px solid rgba(195,177,171,0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #C3B1AB;
    font-family: 'Roboto', sans-serif;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-target {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-target.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-left, .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .logo img {
        height: 50px;
    }

    .hero {
        height: 70vh;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-small {
        bottom: -15px;
        right: -15px;
        width: 150px;
        height: 150px;
    }

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

    .menu-tabs {
        flex-wrap: wrap;
        gap: 5px;
    }

    .menu-tab {
        font-size: 12px;
        padding: 10px 15px;
    }

    .specials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }

    .gi-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
    .gi-4 { grid-column: 1 / 3; grid-row: auto; }

    .hours-order-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .testimonials-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }

    .hero-subtitle {
        font-size: 14px;
    }

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

    .section-title {
        font-size: 24px;
    }

    .about {
        padding: 60px 0;
    }

    .menu-section,
    .gallery-section,
    .testimonials,
    .hours-order {
        padding: 60px 0;
    }
}
