:root {
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --primary: #ffc107;
    --primary-hover: #ffca2c;
    --accent: #ff8f00;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-header: 'Montserrat', sans-serif;
    --font-script: 'Yellowtail', cursive;
    --font-body: 'Inter', sans-serif;
}

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

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

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

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-header);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo-accent {
    font-family: var(--font-header);
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-card {
    background: var(--primary);
    color: var(--bg-dark) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: transform 0.3s, background 0.3s !important;
}

.btn-card:hover {
    transform: translateY(-2px);
    background: var(--primary-hover);
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-video-bg {
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.4) 40%, rgba(10, 10, 10, 0.5) 70%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.hero-container-centered {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.hero-container-centered .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

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

.hero-container-centered .hero-content > * {
    animation: fadeInUpHero 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
}

.hero-title { animation-delay: 0.1s; }
.offer-badge { animation-delay: 0.3s; }
.hero-description { animation-delay: 0.5s; }
.hero-cta { animation-delay: 0.7s; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.title-top {
    font-family: var(--font-header);
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 0.8;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.title-script {
    font-family: var(--font-script);
    color: var(--primary);
    font-size: 4rem;
    margin-top: -1.2rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transform: rotate(-3deg);
}

.offer-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-dark);
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offer-badge:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-accent {
    font-size: 1.8rem;
    border-bottom: 3px solid var(--bg-dark);
}

.hero-description {
    font-size: 1.05rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    z-index: 5;
    animation: bounce 2s infinite, fadeInScroll 1s forwards;
    animation-delay: 2s; /* Waits for other elements to load */
    opacity: 0;
}

.scroll-indicator:hover {
    color: var(--primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-15px) translateX(-50%); }
    60% { transform: translateY(-7px) translateX(-50%); }
}

@keyframes fadeInScroll {
    to { opacity: 0.7; }
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 193, 7, 0.1);
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container::before,
.hero-image-container::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    z-index: 1;
}

.hero-image-container:hover::before {
    opacity: 0.3;
    transform: translateY(-80px) scale(1.05);
}

.hero-image-container:hover::after {
    opacity: 0.3;
    transform: translateY(80px) scale(0.95);
}

.floating-burger {
    width: 100%;
    max-width: 600px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.hero-image-container:hover .floating-burger {
    transform: scale(1.1);
}

.hero-blur-bg {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
    100% { transform: translateY(0px); }
}

/* Menu Preview */
.menu-preview {
    padding: 8rem 0;
    background: #0f0f0f;
}

.section-title {
    font-family: var(--font-header);
    font-weight: 900;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.burger-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.burger-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
}

.burger-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.burger-card:hover .burger-card-img {
    transform: scale(1.2) translateY(-20px);
    filter: brightness(1.2) contrast(1.1);
}

.burger-card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s ease;
}

.burger-card-info {
    padding: 2rem;
}

.burger-card-info h3 {
    font-family: var(--font-header);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.burger-card-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image-container {
        order: 1;
    }
    
    .title-top {
        font-size: 3.5rem;
    }
    
    .title-script {
        font-size: 3.5rem;
        margin-left: 0;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-description {
        margin: 0 auto 3rem;
    }
}

@media (max-width: 600px) {
    .nav-links li:not(:last-child) {
        display: none;
    }
    
    .navbar .container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-accent {
        font-size: 0.6rem;
    }
    
    .btn-card {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* BRANDING: POWERED BY SINAPSIX */
.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    opacity: 1;
    transition: transform 0.3s ease;
}

.powered-by:hover {
    transform: translateY(-2px);
}

.powered-by span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-main);
    font-weight: 700;
}

.powered-by img {
    height: 22px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.2));
}
