@font-face {
    font-family: 'Rabie';
    src: url('fonts/Rabie-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Rabie';
    src: url('fonts/Rabie-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Rabie';
    src: url('fonts/Rabie-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

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

body {
    font-family: 'Rabie', sans-serif;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #E94E2A;
    padding: 20px 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #E94E2A;
    padding: 15px 40px;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

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

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: opacity 0.3s;
}

.nav-menu li a:hover {
    opacity: 0.8;
}

.order-btn {
    background-color: transparent;
    border: none;
}

/* Hero Section */
.hero {
    background-color: #E94E2A;
    min-height: 100vh;
    padding-top: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0;
}

.hero-left {
    flex: 1;
    max-width: 700px;
}

.cta-button {
    background-color: white;
    color: #E94E2A;
    border: none;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Rabie', sans-serif;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: 90px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    text-transform: uppercase;
}

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

.mascot {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Section Styling */
.section-title {
    font-size: 60px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #E94E2A;
    text-transform: uppercase;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF9F5 0%, #FFE8E0 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.about-text-content {
    flex: 1;
}

.about-subtitle {
    font-size: 42px;
    font-weight: 800;
    color: #E94E2A;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-image {
    flex: 0 0 350px;
}

.about-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(233, 78, 42, 0.2));
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 78, 42, 0.15);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #E94E2A;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.about-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background: linear-gradient(135deg, #E94E2A 0%, #FF6B47 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(233, 78, 42, 0.3);
    transition: transform 0.3s;
}

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

.info-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.info-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-subtext {
    font-size: 14px;
    opacity: 0.9;
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background-color: white;
}

.menu-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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

.menu-nav-btn {
    background-color: white;
    color: #E94E2A;
    border: 2px solid #E94E2A;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Rabie', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-nav-btn:hover {
    background-color: #E94E2A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 78, 42, 0.3);
}

.menu-nav-btn.active {
    background-color: #E94E2A;
    color: white;
    box-shadow: 0 5px 15px rgba(233, 78, 42, 0.3);
}

.menu-category {
    font-size: 40px;
    font-weight: 800;
    color: #E94E2A;
    margin: 60px 0 30px 0;
    text-transform: uppercase;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.menu-item {
    background-color: #FFF9F5;
    border-radius: 20px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.menu-item-featured {
    border: 3px solid #E94E2A;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #E94E2A 0%, #FF6B47 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(233, 78, 42, 0.2);
}

.menu-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-name {
    font-size: 22px;
    font-weight: 700;
    color: #E94E2A;
    margin-bottom: 10px;
}

.menu-item-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.menu-item-price {
    font-size: 24px;
    font-weight: 800;
    color: #333;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: -40px auto 60px;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background-color: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    text-align: center;
    padding: 40px 25px;
    background: linear-gradient(135deg, #FFF9F5 0%, #FFE8E0 100%);
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(233, 78, 42, 0.15);
}

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

.why-title {
    font-size: 24px;
    font-weight: 700;
    color: #E94E2A;
    margin-bottom: 15px;
}

.why-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF9F5 0%, #FFE8E0 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.review-card {
    background-color: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 78, 42, 0.15);
}

.review-stars {
    font-size: 22px;
    margin-bottom: 20px;
    color: #FFB800;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    font-size: 15px;
    font-weight: 700;
    color: #E94E2A;
    text-align: right;
}

/* Instagram Section */
.instagram-section {
    padding: 100px 0;
    background-color: white;
    text-align: center;
}

.instagram-handle {
    color: #E94E2A;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.instagram-handle:hover {
    color: #FF6B47;
}

.instagram-cta {
    margin-top: 50px;
}

.instagram-btn {
    display: inline-block;
    background: linear-gradient(135deg, #E94E2A 0%, #FF6B47 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(233, 78, 42, 0.3);
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 78, 42, 0.4);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #FFF9F5;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.faq-item {
    background-color: white;
    padding: 35px;
    border-radius: 20px;
    border-left: 5px solid #E94E2A;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(233, 78, 42, 0.1);
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: #E94E2A;
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Location Section */
.location {
    padding: 100px 0;
    background-color: #FFF9F5;
}

.location-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-map {
    width: 100%;
}

.location-map iframe {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-info {
    text-align: left;
}

.location-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: #E94E2A;
    margin-bottom: 30px;
}

.location-info address {
    font-style: normal;
}

.location-info p {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.8;
}

.location-info a {
    color: #E94E2A;
    text-decoration: none;
    font-weight: 600;
}

.location-info a:hover {
    text-decoration: underline;
}

.location-cta {
    margin-top: 35px;
}

.location-btn {
    display: inline-block;
    background: linear-gradient(135deg, #E94E2A 0%, #FF6B47 100%);
    color: white !important;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(233, 78, 42, 0.3);
}

.location-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 78, 42, 0.4);
    color: white !important;
}

/* Order Section */
.order {
    padding: 100px 0;
    background-color: #E94E2A;
    text-align: center;
}

.order .section-title {
    color: white;
}

.order-subtitle {
    font-size: 20px;
    color: white;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.order-note {
    margin-top: 40px;
    font-size: 16px;
    color: white;
}

.delivery-platforms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.platform-link {
    transition: transform 0.3s;
}

.platform-link:hover {
    transform: scale(1.1);
}

.platform-link img {
    width: 150px;
    height: auto;
    padding: 20px;
    border-radius: 20px;
    filter: brightness(0) invert(1);
}

/* Footer */
.footer {
    padding: 60px 0 30px 0;
    background-color: #1a1a1a;
    color: white;
}

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

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #E94E2A;
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.social-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu li a {
        font-size: 16px;
    }

    .logo img {
        height: 40px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

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

    .mascot {
        max-width: 350px;
    }

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

    .about-hero {
        flex-direction: column;
        gap: 40px;
    }

    .about-image {
        flex: 0 0 auto;
    }

    .about-subtitle {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-info-grid {
        grid-template-columns: 1fr;
    }

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

    .delivery-platforms {
        gap: 30px;
    }

    .platform-link img {
        width: 120px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

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

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

    .why-card, .review-card, .faq-item {
        margin-bottom: 20px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-info {
        text-align: center;
    }

    .location-map iframe {
        height: 300px;
    }
}