/* Variables & Base styling */
:root {
    --bg-color-dark: #0f1011;
    --bg-color-light: #1c1d1f;
    --text-primary: #e6e1d6;
    --text-secondary: #a39c8c;
    --accent-gold: #cfaa6b;
    --accent-red: #8b2323;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--bg-color-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

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

.section {
    padding: 8rem 0;
}

.section,
.hero,
.footer,
.navbar {
    width: 100%;
}

.section-subtitle {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-lead {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.dark-bg {
    background-color: var(--bg-color-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-color-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #e0be7f;
    box-shadow: 0 0 20px rgba(207, 170, 107, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--bg-color-dark);
}

.full-width {
    width: 100%;
}

.center-btn {
    text-align: center;
    margin-top: 3rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(15, 16, 17, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    letter-spacing: 4px;
    color: var(--accent-gold);
}

.logo-text {
    display: none;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.logo-image {
    display: block;
    width: 52px;
    height: 52px;
    max-width: 180px;
    object-fit: cover;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

/* Mobile Menu Icon */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
    transition: 0.3s;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('assets/images/hero_bg.png') no-repeat center center/cover;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 16, 17, 0.4) 0%, rgba(15, 16, 17, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.about-image {
    position: relative;
}

.image-frame {
    width: 100%;
    height: 500px;
    background: linear-gradient(45deg, var(--bg-color-light), #2a2c2f);
    border: 1px solid rgba(207, 170, 107, 0.2);
    position: relative;
    box-shadow: 20px 20px 0px rgba(139, 35, 35, 0.1); /* Subtle dark red accent */
}

/* Menu Highlights */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.menu-card {
    background: rgba(42, 44, 47, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: rgba(207, 170, 107, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-image-wrap {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .card-image {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-color-dark);
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-family: var(--font-heading);
}

.card-content {
    padding: 2rem;
}

.card-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Location Section */
.location-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: stretch;
    text-align: left;
}

.location-info,
.location-map {
    min-width: 0;
}

.location-map {
    position: relative;
    min-height: 380px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, rgba(207, 170, 107, 0.14), rgba(15, 16, 17, 0.98));
    border: 1px solid rgba(207, 170, 107, 0.18);
}

.map-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.25) contrast(1.05) saturate(0.92);
}

.location-info p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
    background: rgba(42, 44, 47, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 4px;
}

.detail-item h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.detail-item p {
    color: var(--text-primary);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-link {
    color: var(--text-primary);
    text-decoration: none;
}

.contact-link:hover {
    color: var(--accent-gold);
}

/* Full Menu Layout */
.full-menu-container {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.menu-category h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(207, 170, 107, 0.3);
    padding-bottom: 0.5rem;
}

.menu-list li {
    margin-bottom: 1.5rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent-gold);
    gap: 1rem;
}

.menu-item-header .price {
    font-weight: 600;
}

.menu-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Order Section */
.order-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.platform-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    min-width: 200px;
    border: 1px solid rgba(207, 170, 107, 0.18);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.platform-btn span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.pickme-btn {
    background: linear-gradient(135deg, rgba(247, 180, 69, 0.14), rgba(15, 16, 17, 0.96));
    border-color: rgba(247, 180, 69, 0.38);
}

.pickme-btn:hover {
    background: linear-gradient(135deg, rgba(247, 180, 69, 0.22), rgba(15, 16, 17, 0.98));
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(247, 180, 69, 0.16);
    border-color: rgba(247, 180, 69, 0.65);
}

.uber-btn {
    background: linear-gradient(135deg, rgba(6, 193, 103, 0.12), rgba(15, 16, 17, 0.96));
    border-color: rgba(6, 193, 103, 0.34);
}

.uber-btn:hover {
    background: linear-gradient(135deg, rgba(6, 193, 103, 0.2), rgba(15, 16, 17, 0.98));
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(6, 193, 103, 0.14);
    border-color: rgba(6, 193, 103, 0.6);
}



/* Footer */
.footer {
    background-color: #080809;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h2 {
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
}

.social-links a:hover {
    color: var(--accent-gold);
}


/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }


/* Responsive Design */
@media (max-width: 900px) {
    .section {
        padding: 6rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .full-menu-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }

    .location-container {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 320px;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .logo-text {
        display: none;
    }

    .logo-image {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
    }

    .mobile-menu-btn {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(15, 16, 17, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.1rem;
    }

    .section {
        padding: 4.5rem 0;
    }

    .hero {
        min-height: 100svh;
        padding: 6.5rem 0 4rem;
        background-position: center top;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h2 {
        font-size: clamp(2.2rem, 10vw, 2.8rem);
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: clamp(1.9rem, 7vw, 2.4rem);
    }

    .section-subtitle {
        letter-spacing: 2px;
    }

    .full-menu-container {
        margin-top: 3rem;
        gap: 2.5rem;
    }

    .menu-category h3 {
        font-size: 1.6rem;
    }

    .menu-item-header {
        font-size: 1rem;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .order-buttons {
        gap: 1rem;
    }

    .platform-btn {
        width: 100%;
        max-width: 340px;
        min-width: 0;
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        padding: 2rem 1.25rem;
        gap: 1.25rem;
    }

    .location-map {
        min-height: 260px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}
