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

:root {
    --primary-color: #FF6B35;
    --secondary-color: #1A1A1A;
    --accent-color: #FFD23F;
    --text-light: #FFFFFF;
    --text-dark: #1A1A1A;
    --bg-light: #F8F9FA;
    --bg-dark: #0D0D0D;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* Header & Navigation */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: none;
    backdrop-filter: none;
    z-index: 1000;
    transition: none;
    box-shadow: none;
    border: none;
}

.navbar {
    padding: 1rem 0;
    background: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    max-width: 1600px;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 1;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-image {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
    filter: brightness(1.1);
    cursor: pointer;
}

.logo:hover .logo-image {
    transform: scale(1.05) rotate(-3deg);
}

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

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 3px;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin-left: auto;
    padding-right: 2rem;
}

.nav-link {
    color: #FFFFFF !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    background: #FF6B35 !important;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.nav-link:hover {
    color: #FFFFFF !important;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.8);
    background: #FF6B35 !important;
    filter: brightness(1.15);
}

.nav-link:active {
    color: #FFFFFF !important;
    transform: scale(0.98) translateY(0);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.5);
    background: #FF6B35 !important;
    filter: brightness(0.9);
}

.nav-link.active {
    color: #FFFFFF !important;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.6);
    font-weight: 700;
    background: #FF6B35 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1599487488170-d11ec9c172f0?q=80&w=2000&auto=format&fit=crop'),
                linear-gradient(135deg, #1a1a1a 0%, #2d1810 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text-light);
    text-align: center;
    padding: 120px 20px 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1), transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-small {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--accent-color);
}

.title-big {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin: 2rem 0;
    color: var(--text-light);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid var(--text-light);
    margin-top: 5px;
}

/* Section Styling */
section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
}

/* Popular Products */
.popular-section {
    background: var(--bg-light);
    margin-top: 0;
    padding-top: 7rem;
}

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 50px;
}

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

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

.btn-add {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Menu Section */
.menu-section {
    background: white;
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.menu-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

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

.menu-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.menu-item:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.menu-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.menu-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.combo-notice {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.combo-notice p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.combo-notice strong {
    font-size: 1.3rem;
}

.tax-notice {
    font-size: 0.9rem !important;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    border: 5px solid var(--primary-color);
}

.map-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 3px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px 15px 0 0;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 210, 63, 0.08) 100%);
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.contact-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.25);
    border-left-width: 6px;
}

.detail-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 210, 63, 0.1));
    border-radius: 50%;
    filter: drop-shadow(0 2px 5px rgba(255, 107, 53, 0.3));
}

.detail-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.detail-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.detail-content a:hover {
    color: var(--secondary-color);
    transform: scale(1.05);
    display: inline-block;
}

.contact-cta {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.address-text {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.address-text i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.footer-logo-link:hover {
    transform: scale(1.05) rotate(-3deg);
}

.footer-logo-image {
    height: 100px;
    width: auto;
    filter: brightness(1.2);
    display: block;
}

.footer-logo p {
    color: var(--accent-color);
    margin-top: 1rem;
    font-weight: 300;
}

.footer-info p {
    color: #999;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .logo-image {
        height: 60px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .navbar .container {
        gap: 0;
        padding: 0 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding: 5rem 0 2rem;
        gap: 1.5rem;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        width: 80%;
        margin: 0 auto;
        display: block;
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }

    .title-big {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .title-small {
        font-size: 1rem;
    }

    .hero {
        padding: 120px 15px 60px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid,
    .menu-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .menu-filters {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .filter-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .product-card {
        max-width: 100%;
    }

    .footer-logo-image {
        height: 80px;
    }

    section {
        padding: 4rem 0;
    }

    .popular-section {
        padding-top: 5rem;
    }

    .scroll-down {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 50px;
    }

    .navbar {
        padding: 0.6rem 0;
    }

    .navbar .container {
        padding: 0 0.8rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-subtitle {
        font-size: 0.55rem;
    }

    .title-big {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .title-small {
        font-size: 0.9rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-price {
        font-size: 1.4rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        max-width: 280px;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .footer-logo-image {
        height: 70px;
    }

    .menu-item h4 {
        font-size: 1rem;
    }

    .price {
        font-size: 1.1rem;
    }

    .hero {
        padding: 100px 10px 50px;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }

    .products-grid,
    .menu-grid {
        padding: 0 0.8rem;
    }
}

/* Loading animation for images */
.product-image img,
.hero {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
