/* Font Faces */
@font-face {
    font-family: 'Rabie';
    src: url('fonts/Rabie-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

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

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rabie', sans-serif;
    background-color: #00dfdd;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    max-width: 1600px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 10px;
    width: 95%;
}

.nav-container {
    background-color: rgba(0, 223, 221, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    min-width: 60px;
}

.logo-icon {
    height: 55px;
    width: auto;
}

.logo-icon-center {
    display: none;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.logo-typography {
    height: 45px;
    width: auto;
}

.nav-right {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 45px;
    min-width: 400px;
}

.nav-right a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-right a:hover {
    opacity: 0.7;
}

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

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 223, 221, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-top: 10px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    max-height: 300px;
    padding: 20px;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    transition: opacity 0.3s ease;
}

.mobile-menu a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: #00dfdd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 40px 40px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1400px;
    width: 100%;
}

.hero-text {
    flex: 0 1 auto;
    color: white;
}

.hero-title {
    font-size: clamp(70px, 11vw, 160px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(20px, 2vw, 32px);
    font-weight: 600;
    background-color: white;
    color: #00dfdd;
    display: inline-block;
    padding: 8px 22px;
    border-radius: 12px;
    width: fit-content;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.cta-button {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background-color: white;
    color: #00dfdd;
}

.cta-button.primary:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: #00dfdd;
    transform: translateY(-2px);
}

.hero-mascot {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot {
    width: clamp(350px, 35vw, 550px);
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 20px;
    font-weight: 600;
    animation: bounce 2s infinite;
    cursor: pointer;
}

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

/* About Section */
.about-section {
    background-color: white;
    padding: 100px 40px;
}

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

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

.about-text {
    flex: 1;
}

.about-title {
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 700;
    color: #00dfdd;
    margin-bottom: 25px;
}

.about-description {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
    color: #333;
    line-height: 1.6;
}

.about-image {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 25px;
}

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

.stat-number {
    font-size: clamp(45px, 6vw, 70px);
    font-weight: 700;
    color: #00dfdd;
    margin-bottom: 5px;
}

.stat-label {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 600;
    color: #666;
}

/* Menu Section */
.menu-section {
    background-color: #f8f8f8;
    padding: 100px 40px;
}

.menu-container {
    max-width: 1600px;
    margin: 0 auto;
}

.menu-title {
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 700;
    color: #00dfdd;
    text-align: center;
    margin-bottom: 40px;
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 30px;
    border: none;
    background-color: white;
    color: #666;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rabie', sans-serif;
}

.menu-tab:hover {
    background-color: #00dfdd;
    color: white;
    transform: translateY(-2px);
}

.menu-tab.active {
    background-color: #00dfdd;
    color: white;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    justify-items: center;
}

.menu-card {
    background-color: white;
    border-radius: 25px;
    padding: 20px;
    transition: all 0.3s ease;
    max-width: 380px;
    width: 100%;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.12);
}

.menu-card.hidden {
    display: none;
}

.menu-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f8f8f8;
    border-radius: 25px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.menu-card-content {
    text-align: center;
    position: relative;
}

.promo-badge, .spicy-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: #ff4444;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

.spicy-badge {
    background-color: #ff6b00;
}

.menu-card-name {
    font-size: 24px;
    font-weight: 700;
    color: #00dfdd;
    margin-bottom: 10px;
    margin-top: 10px;
}

.menu-card-description {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.menu-card-price {
    font-size: 26px;
    font-weight: 700;
    color: #00dfdd;
}

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

/* Order Online Section */
.order-section {
    background-color: #00dfdd;
    padding: 100px 40px;
}

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

.order-title {
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.order-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    color: white;
    margin-bottom: 50px;
}

.delivery-apps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.app-link {
    text-decoration: none;
}

.app-card {
    background-color: white;
    padding: 40px 60px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.08);
    min-width: 200px;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.15);
}

.app-name {
    font-size: 28px;
    font-weight: 700;
    color: #00dfdd;
}

/* Locations Section */
.locations-section {
    background-color: white;
    padding: 100px 40px;
}

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

.locations-title {
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 700;
    color: #00dfdd;
    text-align: center;
    margin-bottom: 15px;
}

.locations-subtitle {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

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

.location-card {
    background-color: #f8f8f8;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.1);
}

.location-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.location-name {
    font-size: 28px;
    font-weight: 700;
    color: #00dfdd;
    margin-bottom: 15px;
}

.location-phone {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    margin-bottom: 15px;
}

.location-phone:hover {
    color: #00dfdd;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #00dfdd;
    padding: 80px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    color: white;
}

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

.footer-tagline {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.footer-column h4 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
    font-size: 30px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: white;
    color: #00dfdd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #00dfdd;
    color: white;
    transform: translateY(-5px);
}

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 60px;
    }

    .about-content {
        gap: 50px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

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

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

    .about-content {
        flex-direction: column;
    }

    .about-image {
        flex: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 96%;
    }

    .nav-container {
        padding: 15px 30px;
        border-radius: 10px;
    }

    .logo-icon {
        height: 45px;
    }

    .logo-typography {
        height: 38px;
    }

    .nav-right {
        gap: 25px;
        min-width: auto;
    }

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

    .hero {
        padding: 100px 30px 30px;
    }

    .scroll-indicator {
        font-size: 14px;
    }

    .about-section, .menu-section, .order-section, .locations-section {
        padding: 70px 30px;
    }

    .about-stats {
        gap: 40px;
    }

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

    .delivery-apps {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-logo {
        margin: 0 auto 15px;
        display: block;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 12px 20px;
        justify-content: space-between;
    }

    .nav-left {
        display: none;
    }

    .logo-icon-left {
        display: none;
    }

    .logo-icon-center {
        display: block;
        height: 45px;
    }

    .nav-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-typography {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 140px 20px 30px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .about-section, .menu-section, .order-section, .locations-section {
        padding: 60px 20px;
    }

    .footer {
        padding: 60px 20px 20px;
    }

    .whatsapp-float, .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
    }
}

/* Print Styles */
@media print {
    .navbar, .hamburger, .mobile-menu, .whatsapp-float, .back-to-top, .scroll-indicator {
        display: none !important;
    }
}