/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; color: inherit; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-accent { color: #e67e22; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0;
    transition: all 0.4s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 24px;
}
.nav-logo-img {
    height: 52px; width: auto;
    border-radius: 6px;
    transition: transform 0.3s;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }
.nav-links {
    display: flex; align-items: center; gap: 8px;
    list-style: none;
}
.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem; font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: #e67e22;
}
.nav-link::after {
    content: ''; position: absolute;
    bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px;
    background: #e67e22; border-radius: 2px;
    transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 60%; }
.nav-qr-btn {
    background: linear-gradient(135deg, #e67e22, #d35400) !important;
    color: #fff !important;
    border-radius: 24px !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(230,126,34,0.3);
    transition: all 0.3s !important;
}
.nav-qr-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,126,34,0.5);
}
.nav-qr-btn::after { display: none !important; }
.nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    width: 24px; height: 2.5px;
    background: #fff; border-radius: 2px;
    transition: all 0.3s;
}
.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); }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,15,0.7) 0%,
        rgba(10,10,15,0.3) 40%,
        rgba(10,10,15,0.6) 70%,
        rgba(10,10,15,0.9) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 24px;
    padding: 0 24px;
    animation: heroFadeIn 1.2s ease;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(230,126,34,0.15);
    border: 1px solid rgba(230,126,34,0.4);
    border-radius: 24px;
    font-size: 0.8rem; font-weight: 600;
    color: #e67e22; letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-logo-img {
    width: 220px; height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}
.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; color: rgba(255,255,255,0.8);
    letter-spacing: 3px;
}
.hero-cta-group {
    display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}
.hero-cta {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #fff; font-weight: 600; font-size: 0.95rem;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(230,126,34,0.3);
}
.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230,126,34,0.5);
}
.hero-cta-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    box-shadow: none;
}
.hero-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #e67e22;
    box-shadow: 0 4px 20px rgba(230,126,34,0.2);
}
.hero-scroll-indicator {
    margin-top: 20px;
    animation: bounce 2s ease-in-out infinite;
    color: rgba(255,255,255,0.5);
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(230,126,34,0.12);
    color: #e67e22;
    border-radius: 20px;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem; font-weight: 700;
    color: #fff; line-height: 1.2;
}
.section-desc {
    color: rgba(255,255,255,0.6);
    font-size: 1rem; margin-top: 12px;
    max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #111118 100%);
}
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.about-image-wrapper {
    position: relative;
    border-radius: 20px; overflow: hidden;
}
.about-image {
    width: 100%; height: 440px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s;
}
.about-image-wrapper:hover .about-image { transform: scale(1.03); }
.about-image-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    padding: 10px 24px;
    border-radius: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 20px rgba(230,126,34,0.4);
}
.about-paragraph {
    color: rgba(255,255,255,0.7);
    font-size: 1rem; line-height: 1.8;
    margin-bottom: 16px;
}
.about-stats {
    display: flex; gap: 32px; margin-top: 32px;
}
.stat-item {
    display: flex; flex-direction: column;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 700;
    color: #e67e22; line-height: 1;
    display: inline;
}
.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700;
    color: #e67e22;
}
.stat-label {
    font-size: 0.8rem; color: rgba(255,255,255,0.5);
    margin-top: 4px; letter-spacing: 0.5px;
}

/* ===== MENU SECTION ===== */
.menu-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #111118 0%, #0f0f14 100%);
}
.menu-categories {
    display: flex; justify-content: center; gap: 8px;
    margin-bottom: 40px; flex-wrap: wrap;
}
.menu-tab {
    padding: 10px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    font-size: 0.85rem; font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}
.menu-tab:hover {
    background: rgba(230,126,34,0.1);
    border-color: rgba(230,126,34,0.3);
    color: #e67e22;
}
.menu-tab.active {
    background: linear-gradient(135deg, #e67e22, #d35400);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(230,126,34,0.3);
}
.menu-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.menu-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    opacity: 0;
    animation: menuCardIn 0.5s ease forwards;
}
.menu-card:nth-child(1) { animation-delay: 0.05s; }
.menu-card:nth-child(2) { animation-delay: 0.1s; }
.menu-card:nth-child(3) { animation-delay: 0.15s; }
.menu-card:nth-child(4) { animation-delay: 0.2s; }
.menu-card:nth-child(5) { animation-delay: 0.25s; }
.menu-card:nth-child(6) { animation-delay: 0.3s; }
@keyframes menuCardIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.menu-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230,126,34,0.2);
    box-shadow: 0 8px 40px rgba(230,126,34,0.1);
}
.menu-card-img {
    width: 100%; height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}
.menu-card:hover .menu-card-img { transform: scale(1.05); }
.menu-card-body { padding: 20px; }
.menu-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 600;
    margin-bottom: 6px;
}
.menu-card-desc {
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
    line-height: 1.5; margin-bottom: 12px;
}
.menu-card-price {
    font-size: 1.2rem; font-weight: 700;
    color: #e67e22;
}
.menu-cta-wrapper {
    text-align: center; margin-top: 48px;
}
.menu-full-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #fff; font-weight: 600; font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(230,126,34,0.3);
}
.menu-full-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230,126,34,0.5);
}
.menu-full-btn-icon { font-size: 1.3rem; }

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0f14 0%, #0a0a0f 100%);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}
.gallery-item {
    border-radius: 16px; overflow: hidden;
    position: relative; cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
    opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 50%, #c0392b 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content {
    position: relative; text-align: center;
}
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem; font-weight: 700; margin-bottom: 12px;
}
.cta-text {
    font-size: 1.1rem; color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
}
.cta-btn {
    display: inline-block;
    padding: 16px 44px;
    background: #fff;
    color: #d35400; font-weight: 700; font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #111118 100%);
}
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    transition: all 0.3s;
}
.contact-card:hover {
    border-color: rgba(230,126,34,0.2);
    transform: translateX(4px);
}
.contact-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(230,126,34,0.12);
    color: #e67e22;
    display: flex; align-items: center; justify-content: center;
}
.contact-card h4 {
    font-size: 0.95rem; font-weight: 600; margin-bottom: 4px;
}
.contact-card p {
    font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.5;
}
.contact-map {
    height: 400px; border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 0;
    background: #06060a;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo {
    width: 120px; border-radius: 8px;
    margin-bottom: 16px;
}
.footer-desc {
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
    line-height: 1.6;
}
.footer-links h4, .footer-social-col h4 {
    font-size: 0.9rem; font-weight: 600;
    margin-bottom: 16px; color: #fff;
}
.footer-links ul { list-style: none; }
.footer-links li {
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
    padding: 4px 0;
}
.footer-links a {
    transition: color 0.3s;
}
.footer-links a:hover { color: #e67e22; }
.footer-social {
    display: flex; gap: 12px;
}
.footer-social-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
}
.footer-social-icon:hover {
    background: rgba(230,126,34,0.15);
    color: #e67e22;
    transform: translateY(-2px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-url { color: #e67e22; font-weight: 500; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .section-title { font-size: 2.2rem; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { height: 320px; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { height: 300px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: rgba(10,10,15,0.98); backdrop-filter: blur(20px);
        flex-direction: column; align-items: flex-start;
        padding: 80px 32px 32px; gap: 4px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }
    .nav-links.open { right: 0; }
    .nav-link { width: 100%; padding: 14px 0; font-size: 1rem; }
    .nav-link::after { bottom: 0; left: 0; transform: none; }
    .nav-link:hover::after, .nav-link.active::after { width: 40px; }
    .nav-qr-btn { text-align: center; margin-top: 12px; }
    .nav-toggle { display: flex; }

    .hero-logo-img { width: 160px; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .hero-cta { width: 100%; max-width: 280px; text-align: center; }

    .section-title { font-size: 1.8rem; }
    .about-stats { gap: 20px; }
    .stat-number { font-size: 1.8rem; }
    .menu-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .menu-card-img { height: 160px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .gallery-item.tall { grid-row: span 1; }
    .gallery-item.wide { grid-column: span 1; }

    .cta-title { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .menu-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #e67e22; }

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1; transform: translateY(0);
}
