:root {
    --bg-dark: #0c0c0e;
    --bg-card: #18181c;
    --accent: #ff9500;
    --accent-glow: rgba(255, 149, 0, 0.15);
    --text-light: #f5f5f7;
    --text-muted: #8e8e93;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --glass-border: rgba(255, 255, 255, 0.06);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 80px; /* Leave space for sticky header */
}

/* --- Header Navigation --- */
header.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 12, 14, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 24px;
    transition: all 0.3s ease;
}

header.site-nav.scrolled {
    padding: 12px 24px;
    background: rgba(12, 12, 14, 0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.logo-block {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-light);
}

.logo-block img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: var(--accent);
}

.btn-order-qr {
    background: var(--accent);
    color: var(--bg-dark) !important;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    opacity: 1 !important;
}

.btn-order-qr:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 149, 0, 0.4);
}

/* --- Hero Section --- */
section.hero {
    height: calc(100vh - 80px);
    min-height: 550px;
    position: relative;
    background: linear-gradient(to bottom, rgba(12,12,14,0.3) 0%, var(--bg-dark) 95%), url('../img/hero_bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: -80px; /* Offset the body padding for a full screen hero */
}

.hero-content {
    max-width: 800px;
    animation: hero-fade-in 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes hero-fade-in {
    to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
    background: rgba(255, 149, 0, 0.12);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 149, 0, 0.2);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-title span {
    color: var(--accent);
    background: linear-gradient(135deg, #ff9500 0%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-dark);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(255, 149, 0, 0.25);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 149, 0, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* --- Global Sections Styling --- */
section.info-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

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

.about-text h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--accent);
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: rgba(255, 149, 0, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
}

.feature-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    aspect-ratio: 4/3;
}

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

/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    aspect-ratio: 1;
    position: relative;
}

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

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

/* --- Menu Section --- */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 149, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #202024;
}

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

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(12,12,14,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    border: 1px solid var(--glass-border);
}

.product-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    flex-grow: 1;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-block {
    margin-bottom: 30px;
}

.contact-info-block:last-child {
    margin-bottom: 0;
}

.contact-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.contact-value {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid var(--glass-border);
}

.social-link:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.map-container {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: rgba(255, 149, 0, 0.3);
    box-shadow: 0 20px 45px rgba(255, 149, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* --- Footer --- */
footer {
    background: #060608;
    border-top: 1px solid var(--glass-border);
    padding: 40px 24px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
}

.footer-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Hamburger Toggle Button Style */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 13px 10px;
    z-index: 1001;
    box-sizing: border-box;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Transform Hamburger to X when open */
.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Responsive Queries --- */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: 48px;
    }

    /* Mobile menu & navigation switches at 992px for premium responsiveness */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: rgba(12, 12, 14, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        display: block;
        font-size: 18px;
        font-weight: 700;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .nav-links a:last-child {
        border-bottom: none;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
    .section-title {
        font-size: 30px;
    }
    .map-container {
        height: 400px;
    }
}
