@font-face {
    font-family: 'Ketchup Manis';
    src: url('./font/Ketchup Manis.woff2') format('woff2'),
         url('./font/Ketchup Manis.woff') format('woff'),
         url('./font/Ketchup Manis.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link:hover {
    color: #f86000;
    background: rgba(248, 96, 0, 0.1);
}

.order-btn {
    background: linear-gradient(135deg, #f86000, #f8b300);
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(248, 96, 0, 0.3);
    transition: all 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 96, 0, 0.4);
    background: linear-gradient(135deg, #e55a00, #e5a200) !important;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(248, 179, 0, 0.05) 0%, rgba(248, 96, 0, 0.05) 100%);
    padding-top: 100px;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Ketchup Manis', cursive;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #333;
}

.accent-text {
    color: #f86000;
    display: block;
    margin-top: 10px;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.primary-btn {
    background: linear-gradient(135deg, #f86000, #f8b300);
    color: white;
    box-shadow: 0 4px 15px rgba(248, 96, 0, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(248, 96, 0, 0.4);
}

.secondary-btn {
    background: transparent;
    color: #f86000;
    border: 2px solid #f86000;
}

.secondary-btn:hover {
    background: #f86000;
    color: white;
    transform: translateY(-3px);
}

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

.hero-image img {
    width: auto;
    height: 420px;
    transition: transform 0.3s ease;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        border-radius: 0 0 15px 15px;
        gap: 20px;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.1rem;
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav-container {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .nav-container {
        margin: 0 10px;
        padding: 10px 15px;
    }
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(248, 179, 0, 0.02) 0%, rgba(248, 96, 0, 0.02) 100%);
}

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

.menu-header {
    text-align: center;
    margin-bottom: 60px;
}

.menu-header h2 {
    font-family: 'Ketchup Manis', cursive;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #333;
}

.menu-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

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

.category-btn {
    padding: 12px 24px;
    border: 2px solid #f86000;
    background: transparent;
    color: #f86000;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, #f86000, #f8b300);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(248, 96, 0, 0.3);
}

.menu-category {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-category.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

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

.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.menu-item.featured {
    border: 2px solid #f8b300;
    background: linear-gradient(135deg, rgba(248, 179, 0, 0.05), rgba(248, 96, 0, 0.05));
}

.item-image {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    padding: 20px;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    mix-blend-mode: multiply;
    filter: contrast(1.1) saturate(1.2);
}

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

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff4444, #ff6666);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.item-info {
    padding: 30px;
}

.item-info h3 {
    font-family: 'Ketchup Manis', cursive;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.item-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.item-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: 'Ketchup Manis', cursive;
    font-size: 1.6rem;
    color: #f86000;
    font-weight: 700;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.add-btn {
    background: linear-gradient(135deg, #f86000, #f8b300);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(248, 96, 0, 0.4);
}

.menu-footer {
    text-align: center;
    margin-top: 60px;
}

.order-online-btn {
    font-size: 18px;
    padding: 18px 40px;
    margin-bottom: 20px;
}

.delivery-info {
    color: #666;
    font-size: 16px;
    font-style: italic;
}

/* Menu Responsive */
@media (max-width: 768px) {
    .menu-header h2 {
        font-size: 2.5rem;
    }

    .menu-categories {
        gap: 10px;
    }

    .category-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .menu-category.active {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .item-image {
        height: 220px;
        padding: 15px;
    }

    .item-info {
        padding: 25px;
    }

    .item-info h3 {
        font-size: 1.5rem;
    }

    .item-price {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .add-btn {
        width: 100%;
        padding: 12px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #333 0%, #444 100%);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Ketchup Manis', cursive;
    color: #f8b300;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #ccc;
    line-height: 1.6;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #f8b300;
}

.social-link {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    color: #f8b300;
}

.social-link span {
    margin-right: 8px;
}

.delivery-hours,
.location {
    color: #ccc;
    font-size: 14px;
    margin: 5px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
    font-size: 14px;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1.2rem;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Ketchup Manis', cursive;
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #333;
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    gap: 30px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    margin-top: 5px;
}

.feature h3 {
    font-family: 'Ketchup Manis', cursive;
    font-size: 1.4rem;
    color: #f86000;
    margin-bottom: 10px;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Special Offers Section */
.offers {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(248, 179, 0, 0.03) 0%, rgba(248, 96, 0, 0.03) 100%);
}

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

.offers-container h2 {
    font-family: 'Ketchup Manis', cursive;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #333;
}

.offers-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

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

.offer-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card.featured {
    border: 2px solid #f8b300;
    background: linear-gradient(135deg, rgba(248, 179, 0, 0.05), rgba(248, 96, 0, 0.05));
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff4444, #ff6666);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.offer-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.offer-card h3 {
    font-family: 'Ketchup Manis', cursive;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 15px;
}

.offer-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.offer-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.offer-price,
.offer-condition {
    font-family: 'Ketchup Manis', cursive;
    font-size: 1.2rem;
    color: #f86000;
    font-weight: 700;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

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

.testimonials-container h2 {
    font-family: 'Ketchup Manis', cursive;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #333;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background: linear-gradient(135deg, rgba(248, 179, 0, 0.05), rgba(248, 96, 0, 0.05));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    border: 1px solid rgba(248, 96, 0, 0.1);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    color: #f86000;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

/* Location Section */
.location {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(248, 179, 0, 0.03) 0%, rgba(248, 96, 0, 0.03) 100%);
}

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

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h2 {
    font-family: 'Ketchup Manis', cursive;
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #333;
}

.location-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h4 {
    font-family: 'Ketchup Manis', cursive;
    color: #f86000;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: #f86000;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.order-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.location-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text h2,
    .offers-container h2,
    .testimonials-container h2,
    .location-info h2 {
        font-size: 2.5rem;
    }

    .feature {
        text-align: left;
    }

    .offers-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .offer-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .order-buttons {
        justify-content: center;
    }
}