/* Concept 3: Minimalist & Fast */
/* Colors: White + Red, Minimal Black */

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

:root {
    --primary-white: #ffffff;
    --primary-red: #e53e3e;
    --text-black: #1a1a1a;
    --light-gray: #f8f8f8;
    --border-gray: #e0e0e0;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-black);
    background-color: var(--primary-white);
}

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

/* Navigation */
.navbar {
    background-color: var(--primary-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand h1 {
    color: var(--text-black);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-red);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-black);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-red);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 0;
    transform: translateZ(0);
    will-change: transform;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    transform: translateY(var(--parallax-offset, 0));
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(229, 62, 62, 0.3) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    padding: 60px 0;
}

.hero-title {
    font-size: 82px;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-white);
    margin-bottom: 50px;
    letter-spacing: -2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 8px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--primary-white);
}

.btn-primary:hover {
    background-color: #c92a2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.3);
}

.btn-secondary {
    background-color: var(--primary-white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background-color: var(--primary-red);
    color: var(--primary-white);
}

/* Menu Categories Section */
.menu-categories {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.categories-simple {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 50px 0;
}

.category-tag {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f8f8f8;
    color: var(--text-black);
    font-weight: 600;
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

.category-tag:hover {
    background-color: #ffe5e5;
    color: var(--primary-red);
    transform: translateY(-2px);
}

.menu-link {
    text-align: center;
    margin-top: 40px;
}

.link-arrow {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(10px);
    display: inline-block;
}

/* Menu Highlights Section */
.menu-highlights {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 60px;
    letter-spacing: -1px;
    text-align: center;
}

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

.menu-item {
    background-color: var(--primary-white);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.menu-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--light-gray);
}

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

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

.menu-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 10px;
}

.price {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 15px;
}

.featured {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--primary-white);
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.testimonial-card {
    background-color: var(--primary-white);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    font-size: 60px;
    line-height: 1;
    color: var(--primary-red);
    font-family: Georgia, serif;
    margin-bottom: 15px;
    opacity: 0.3;
}

.testimonial-message-wrapper {
    min-height: 120px;
    margin-bottom: 20px;
}

.testimonial-message {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0;
    font-style: italic;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-red);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin: 0;
    text-align: left;
    transition: all 0.3s ease;
    font-style: italic;
    display: inline;
}

.read-more-btn:hover {
    color: #c92a2a;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating .star-rating {
    display: inline-flex;
    gap: 3px;
    font-size: 20px;
}

.testimonial-rating .star.filled {
    color: var(--primary-red);
}

.testimonial-rating .star.empty {
    color: #ddd;
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-black);
}

.testimonial-author strong {
    font-weight: 700;
}

/* Quick Stats Section */
.quick-stats {
    padding: 80px 0;
    background-color: var(--primary-white);
}

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

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: var(--text-black);
    line-height: 1.6;
}

/* Operating Hours Section */
.operating-hours {
    padding: 80px 0;
    background-color: var(--primary-red);
    text-align: center;
    color: var(--primary-white);
}

.hours-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hours-time {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hours-days {
    font-size: 20px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--primary-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 20px;
    color: var(--text-black);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background-color: var(--light-gray);
    padding: 60px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    transition: transform 0.3s ease;
}

.footer-col:hover {
    transform: translateY(-5px);
}

.footer-col h3 {
    color: var(--text-black);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

.footer-col p {
    color: #555;
    line-height: 1.9;
    font-size: 14px;
    font-weight: 500;
}

.footer-col p strong {
    color: var(--text-black);
    font-weight: 700;
}

.footer-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 16px;
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(229, 62, 62, 0.15);
    color: #666;
    font-size: 14px;
}

.footer-bottom p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-heart {
    color: var(--primary-red);
    animation: heartbeat 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

/* Halal Badge Styles */
.halal-badge img {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-white);
        flex-direction: column;
        gap: 0;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 20px 0;
        font-size: 18px;
        width: 100%;
    }

    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 36px;
    }

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

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

    .testimonial-message-wrapper {
        min-height: 100px;
    }

    .testimonial-message {
        font-size: 15px;
    }

    .cta-section h2 {
        font-size: 36px;
    }

    .categories-simple {
        gap: 10px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 42px;
    }

    .nav-brand h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .hours-content h2 {
        font-size: 36px;
    }

    .hours-time {
        font-size: 28px;
    }
}

