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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #ffffff;
    background: #000000;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: #1B4D3E;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #8B2E2E;
    color: white;
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(139, 46, 46, 0.8);
    transition: width 0.3s ease;
    border-radius: 50px;
    z-index: -1;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(139, 46, 46, 0.9);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(139, 46, 46, 0.4);
}

.nav-link.active::before {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #FFFFFF;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(0, 146, 70, 0.8) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(206, 43, 55, 0.8) 100%),
        url('https://images.unsplash.com/photo-1513104890138-7c749659a591?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000000;
    margin-top: 90px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #009246, #ffffff);
    color: #ce2b37;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 146, 70, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ce2b37, #009246);
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(206, 43, 55, 0.6);
}

/* Menu Section */
.menu-section {
    padding: 6rem 0;
    background: #000000;
    position: relative;
    border-top: 3px solid #ce2b37;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(206, 43, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 146, 70, 0.1) 0%, transparent 50%);
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(206, 43, 55, 0.5);
}

/* Kategori Navigation */
.category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(0, 146, 70, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 146, 70, 0.5);
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 146, 70, 0.3);
}

.category-nav-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 146, 70, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.category-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.category-nav-link:hover::before {
    left: 100%;
}

.category-nav-link:hover {
    background: linear-gradient(135deg, #009246, #ce2b37);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 146, 70, 0.4);
    border-color: rgba(206, 43, 55, 0.5);
}

.category-nav-link.active {
    background: linear-gradient(135deg, #ce2b37, #009246);
    color: white;
    border-color: rgba(206, 43, 55, 0.8);
    box-shadow: 0 4px 15px rgba(206, 43, 55, 0.3);
}

.menu-category {
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.pizza-subcategory {
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 146, 70, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    width: 100%;
    display: block;
}

.pizza-subcategory-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
}

.pizza-subcategory-grid .menu-item {
    flex: 0 1 calc(50% - 0.75rem);
    min-width: 300px;
}

.hidden-item {
    display: none;
}

.subcategory-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #009246;
    text-align: center;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.category-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #009246, #ce2b37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-weight: 900;
    text-shadow: none;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #009246, #ce2b37);
    border-radius: 2px;
}

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

.menu-item {
    background: linear-gradient(135deg, rgba(0, 146, 70, 0.2), rgba(0, 0, 0, 0.8));
    border: 2px solid rgba(0, 146, 70, 0.5);
    border-radius: 18px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 146, 70, 0.2);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 146, 70, 0.05), rgba(206, 43, 55, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 146, 70, 0.4);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    gap: 1rem;
}

.menu-item-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ce2b37;
    background: linear-gradient(45deg, #ce2b37, #009246);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item-description {
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.menu-item-description {
    margin-top: 1rem;
    position: relative;
    z-index: 2;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.menu-item-description.show {
    max-height: 100px;
    padding-top: 0.5rem;
}

.menu-item-description p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
    font-style: italic;
}

.show-more-btn {
    background: linear-gradient(135deg, #009246, #ce2b37);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 146, 70, 0.3);
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 146, 70, 0.4);
    background: linear-gradient(135deg, #ce2b37, #009246);
}

.show-more-container {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 146, 70, 0.2);
}

.show-all-btn {
    background: linear-gradient(135deg, #009246, #ffffff);
    color: #ce2b37;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 146, 70, 0.3);
    position: relative;
    overflow: hidden;
}

.show-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.show-all-btn:hover::before {
    left: 100%;
}

.show-all-btn:hover {
    background: linear-gradient(135deg, #ce2b37, #009246);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(206, 43, 55, 0.4);
}

/* Expandable items */
.expandable-item .menu-item-header {
    cursor: pointer;
    transition: all 0.3s ease;
}

.expandable-item .menu-item-header:hover {
    background: rgba(0, 146, 70, 0.05);
    border-radius: 12px;
    padding: 0.5rem;
    margin: -0.5rem;
}

.expand-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: #009246;
    margin-left: 8px;
    font-weight: bold;
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1rem;
}

.expandable-content.expanded {
    max-height: 250px;
    padding: 1.5rem;
    border-top: 2px solid rgba(0, 146, 70, 0.1);
    margin-top: 1rem;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 12px;
}

.sub-item {
    color: #555;
    font-size: 1rem;
    margin: 0.8rem 0;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 500;
}

.sub-item:hover {
    color: #009246;
    background: rgba(0, 146, 70, 0.05);
    transform: translateX(5px);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #000000;
    position: relative;
}

.about-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.8;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #000000;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.contact-info,
.opening-hours {
    background: linear-gradient(135deg, rgba(0, 146, 70, 0.2), rgba(206, 43, 55, 0.1));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 146, 70, 0.5);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 146, 70, 0.3);
}

.contact-info:hover,
.opening-hours:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 146, 70, 0.2);
    border-color: rgba(0, 146, 70, 0.4);
}

.contact-info h3,
.opening-hours h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #009246;
    font-weight: 700;
}

.contact-info p,
.opening-hours p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info a {
    color: #ce2b37;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #009246;
}

.map-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.map-link {
    display: inline-block;
    background: linear-gradient(135deg, #009246, #ce2b37);
    color: white !important;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 146, 70, 0.3);
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 146, 70, 0.4);
    background: linear-gradient(135deg, #ce2b37, #009246);
    color: white !important;
}

.map-container {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.map-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #009246;
    text-align: center;
    font-weight: 700;
}

.map-wrapper {
    background: linear-gradient(135deg, rgba(0, 146, 70, 0.1), rgba(206, 43, 55, 0.1));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 146, 70, 0.5);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 146, 70, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 146, 70, 0.3);
    border-color: rgba(0, 146, 70, 0.5);
}

.map-wrapper iframe {
    border-radius: 15px;
    width: 100%;
    height: 400px;
    filter: contrast(1.1) saturate(1.2);
}

.hours {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 146, 70, 0.3);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hour-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 146, 70, 0.2);
    color: #ffffff;
    font-weight: 500;
}

.hour-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #333;
    color: #666;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid #555;
}

.footer p {
    font-size: 1rem;
    font-weight: 400;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        height: 90vh;
        margin-top: 80px;
        background-size: cover;
        background-position: center;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .menu-item {
        padding: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .map-buttons {
        gap: 0.6rem;
    }
    
    .map-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .map-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .category-nav {
        gap: 0.5rem;
        padding: 1.5rem;
    }
    
    .category-nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.8rem 0;
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .hero {
        height: 85vh;
        margin-top: 70px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-info,
    .opening-hours {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 16px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Add margin to sections for fixed header */
section {
    scroll-margin-top: 120px;
}

/* Additional animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item {
    animation: fadeInUp 0.6s ease forwards;
}

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

::-webkit-scrollbar-track {
    background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #009246, #ce2b37);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ce2b37, #009246);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #009246, #ce2b37);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 146, 70, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 146, 70, 0.6);
    background: linear-gradient(135deg, #ce2b37, #009246);
    opacity: 1;
}

.scroll-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

/* Mobile responsiveness for scroll button */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
}
