/* CSS Variables */
:root {
    --primary-color: #FF4E00;
    /* Energetic Orange */
    --primary-dark: #cc3e00;
    --secondary-color: #FFD700;
    /* Gold */
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --text-light: #F5F5F5;
    --text-muted: #B0B0B0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --border-radius: 16px;
    --font-main: 'Outfit', sans-serif;
    --font-accent: 'Permanent Marker', cursive;
    --transition: all 0.3s ease;
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

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



ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-color);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle {
    font-family: var(--font-accent);
    color: var(--primary-color);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.separator {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.separator-left {
    margin: 15px 0 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 78, 0, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 78, 0, 0.6);
}

.btn-outline {
    border-color: white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
}

.btn-sm:hover {
    background: var(--primary-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease-in-out;
    animation: slideDown 0.8s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    /* Ensure full height alignment */
}

/* Logo Fixes */
.logo {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
    color: white;
    text-decoration: none !important;
    /* Force remove decorative lines */
    border: none !important;
}

.logo:hover {
    transform: none;
}

.logo span {
    color: var(--primary-color);
}

.logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
    display: flex;
    /* Fix icon vertical alignment */
    align-items: center;
}

/* Nav Links Fixes */
.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Reduced gap slightly */
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 15px;
    color: #e0e0e0;
    text-decoration: none !important;
    /* Critical fix */
    border: none !important;
    /* Critical fix */
    display: inline-block;
    /* Better bounding box */
    line-height: 1;
}

.nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
    /* More subtle hover bg */
    border-radius: 6px;
}

.nav-links a::after {
    display: none !important;
    /* Ensure line is gone */
}

/* CTA Button Fix */
.nav-cta-btn {
    background: var(--primary-color);
    padding: 10px 20px !important;
    /* Force padding */
    border-radius: 8px;
    color: white !important;
    font-weight: 700;
    display: flex !important;
    align-items: center;
    gap: 8px;
    line-height: 1;
    border: none !important;
    margin-left: 10px;
}

.nav-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 78, 0, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-bg.png') no-repeat center center/cover;
    z-index: -2;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(18, 18, 18, 0.9));
    z-index: -1;
}

.hero-content {
    z-index: 1;
    padding-top: 60px;
}

.hero h1 {
    font-size: 2.5rem;
    /* Mobile First Base Size */
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 992px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

.highlight-text {
    color: white;
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback for some browsers if supported */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ddd;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Scroll Mouse Animation */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.8;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    display: block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

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

/* Menu Section */
.menu-section {
    padding: 100px 0;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 78, 0, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    /* Mobile friendly width */
    gap: 20px;
}

.menu-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 78, 0, 0.3);
}

.menu-item-img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

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

.menu-item-img i {
    display: none;
}



.menu-item-content {
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.menu-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

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

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.add-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #333;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-left: auto;
}

.add-btn:hover {
    background: var(--primary-color);
}

/* Specials Section */
.specials-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #121212, #0a0a0a);
}

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

.special-card {
    background: var(--bg-card);
    height: 300px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    /* Placeholder for actual food images for specials */
    background: url('https://source.unsplash.com/800x600/?pizza,food') no-repeat center/cover;
    /* Ideally we would generate these images too, using a fallback for now or gradient */
    display: flex;
    align-items: flex-end;
}

/* Fallback gradient if unsplash fails or for better text contrast */
.special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    z-index: 1;
}

.special-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
}

.special-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: white;
}

.special-content p {
    font-size: 0.95rem;
    color: #ddd;
    margin-bottom: 15px;
    max-width: 80%;
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    z-index: 2;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    flex: 1;
    min-width: 100%;
    /* Mobile First */
    padding: 40px 20px;
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.info-list li {
    display: flex;
    margin-bottom: 30px;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 78, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-list h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-list p {
    color: var(--text-muted);
}

.map-container {
    flex: 1;
    min-width: 100%;
    /* Mobile First */
    min-height: 350px;
}

@media (min-width: 768px) {
    .contact-info {
        min-width: 350px;
        padding: 60px;
    }

    .map-container {
        min-width: 350px;
        min-height: 400px;
    }
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 50px 0 30px;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    color: #555;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(15px);
    }

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

    .mobile-menu-btn {
        display: block;
        z-index: 2000;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .contact-info {
        padding: 40px;
    }
}

/* --- New Enhancements --- */

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(to top, #121212, #1a1a1a);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #1E1E1E;
    padding: 30px;
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(255, 78, 0, 0.1);
}

.stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: #ddd;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* Stats Section */
.stats-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 20px;
    gap: 20px;
    background: var(--primary-color);
    border-radius: 20px;
    margin: -50px auto 50px;
    position: relative;
    width: 90%;
    /* Prevent edge touching on mobile */
    max-width: 1000px;
    box-shadow: 0 15px 40px rgba(255, 78, 0, 0.3);
}

.stat-item {
    text-align: center;
    color: white;
    padding: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Status Indicator */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    box-shadow: 0 0 10px currentColor;
}

.status-text {
    font-weight: 600;
}

.status-open {
    color: #4CAF50;
}

.status-open .status-dot {
    background: #4CAF50;
}

.status-closed {
    color: #f44336;
}

.status-closed .status-dot {
    background: #f44336;
}

/* Enhanced Card Image Handling */


/* Specific background images for specials if they exist */
.special-bg-1 {
    background: url('specials-gratin.png') no-repeat center/cover;
}

.special-bg-2 {
    background: url('specials-calzone.png') no-repeat center/cover;
}

.special-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 1;
}

/* Developer Signature */
.dev-signature-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    font-size: 0.9rem;
    color: #888;
}

.dev-signature {
    font-family: monospace;
    /* mono */
    font-weight: 700;
    /* font-bold */
    font-size: 1.1rem;
    /* text-lg */
    letter-spacing: -0.05em;
    /* tracking-tighter */
    display: flex;
    /* flex */
    align-items: center;
    /* items-center */
    gap: 0.25rem;
    /* gap-1 */
    color: #e0e0e0;
}

.dev-indicator {
    position: relative;
    /* relative */
    margin-right: 0.5rem;
    /* mr-2 */
    width: 10px;
    /* w-2.5 */
    height: 10px;
    /* h-2.5 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.dev-dot {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* rounded-full */
    background-color: #00ff88;
    /* Bright glowing green */
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.dev-dot.pulse {
    animation: devPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    position: relative;
    z-index: 2;
}

.dev-dot.blur {
    position: absolute;
    /* absolute */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* inset-0 */
    filter: blur(4px);
    /* blur-sm */
    z-index: 1;
}

.dev-prefix {
    color: var(--primary-color);
    /* text-[var(--accent)] */
    opacity: 0.5;
}

.dev-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.dev-link:hover {
    opacity: 0.8;
}

@keyframes devPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}