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

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

/* Header */
header {
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.5rem 0 0.1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: -1rem;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Poppins', 'Inter', sans-serif;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.nav-links a:hover,
.nav-links a.active {
    color: #4ecdc4;
    text-shadow: 0 2px 8px rgba(78, 205, 196, 0.6);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    border: 2px solid rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Pages */
.page {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.page.active {
    display: block;
    animation: pageSlideIn 0.6s ease-out forwards;
}

@keyframes pageSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Page Loading */
.page-loading::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(78, 205, 196, 0.3);
    border-top: 3px solid #4ecdc4;
    border-radius: 50%;
    z-index: 10000;
    animation: spin 1s linear infinite;
    pointer-events: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(22, 33, 62, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    z-index: 3;
    position: relative;
}

.welcome-message {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: 'Poppins', 'Inter', sans-serif;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-width: 180px;
    text-align: center;
    box-sizing: border-box;
}


.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.5s ease;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-secondary {
    display: inline-block !important;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4) !important;
    color: white !important;
    padding: 1.2rem 2.5rem !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4) !important;
    border: 2px solid transparent !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
    min-width: 180px !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

.cta-secondary::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.5s ease;
}

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

.cta-secondary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6) !important;
}

/* Section Styling */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Poppins', 'Inter', sans-serif;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 2px;
    opacity: 0;
    transition: all 1s ease 0.3s;
}

.section-title.fade-in::after {
    opacity: 1;
}

.section-title.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Default section content styling for About/Contact pages */
.section-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Home page "Our Story" section special styling */
#home .section-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(78, 205, 196, 0.1) 50%, rgba(255, 107, 107, 0.1) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 1.2s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.section-content.fade-in {
    opacity: 1;
    transform: translateY(0);
}

#home .section-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent, rgba(78, 205, 196, 0.1), transparent);
    animation: shimmer 8s infinite;
    pointer-events: none;
}

#home .section-content::after {
    content: '✨';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 1.5rem;
    animation: twinkle 3s infinite;
    opacity: 0.7;
}

#home .section-content:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

/* About page and Contact page regular text styling */
#about .section-content p,
#contact .section-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

/* Our Story section specific styling */
#home .section-content p {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    color: #000000 !important;
    margin-bottom: 1.5rem !important;
    font-weight: 300 !important;
    font-family: 'Poppins', sans-serif !important;
    text-align: center !important;
    letter-spacing: 0.5px !important;
    text-shadow: none !important;
    position: relative;
    z-index: 10 !important;
    transition: all 0.3s ease;
    opacity: 1 !important;
    display: block !important;
}

#home .section-content p:hover {
    transform: translateY(-2px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 
                 -2px -2px 4px rgba(0, 0, 0, 0.9),
                 2px -2px 4px rgba(0, 0, 0, 0.9),
                 -2px 2px 4px rgba(0, 0, 0, 0.9),
                 0 0 20px rgba(255, 107, 107, 0.3) !important;
}

.section-content strong {
    font-weight: 600;
    color: #ff6b6b;
}

/* Location Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s ease;
}

.location-grid.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.location-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.location-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-info p {
    color: #1a1a2e;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.location-info strong {
    font-weight: 600;
    color: #ff6b6b;
}

.map-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.map-container h4 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', 'Inter', sans-serif;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-container iframe {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    flex: 1;
    min-height: 250px;
}

.map-container iframe:hover {
    transform: scale(1.02);
}

/* Animation keyframes */
@keyframes sparkleUp {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0.5);
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.floating-item {
    position: fixed;
    font-size: 1.5rem;
    pointer-events: none;
    z-index: 1000;
    animation: floatUp 20s linear forwards;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* About Section Styling */
.about-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Poppins', 'Inter', sans-serif;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 0.5rem;
    letter-spacing: -1px;
}

.about-section-title:first-child {
    margin-top: 0;
}

.about-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

/* Contact Page Styling */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.contact-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', 'Inter', sans-serif;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card p {
    color: #1a1a2e;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.contact-card strong {
    color: #ff6b6b;
    font-weight: 600;
}

/* Social Section */
.social-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s ease;
    border-radius: 25px;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.social-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.social-title {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Poppins', 'Inter', sans-serif;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.instagram-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.instagram-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.5s ease;
}

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

.instagram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.3);
}

/* Menu Page */
.menu-page {
    padding-top: 6rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

/* Featured Direct Order Card */
.featured-direct-order {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%) !important;
    color: white !important;
    transform: scale(1.05) !important;
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.4) !important;
    border: 3px solid rgba(255, 215, 0, 0.8) !important;
    position: relative;
    animation: featuredPulse 3s ease-in-out infinite;
    min-height: 180px !important;
}


.featured-direct-order:hover {
    transform: translateY(-12px) scale(1.08) !important;
    box-shadow: 0 35px 70px rgba(255, 107, 107, 0.5) !important;
}

.featured-direct-order h3 {
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
    font-size: 1.6rem !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.featured-direct-order p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
}

.featured-direct-order .platform-icon {
    font-size: 3.5rem !important;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    animation: bounce 2s infinite, rotate 4s linear infinite;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: -8px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.4);
    animation: badgePulse 1.5s ease-in-out infinite;
    border: 2px solid #fff;
    z-index: 10;
}

@keyframes featuredPulse {
    0%, 100% {
        box-shadow: 0 25px 50px rgba(255, 107, 107, 0.4);
    }
    50% {
        box-shadow: 0 25px 50px rgba(255, 107, 107, 0.6), 0 0 30px rgba(255, 215, 0, 0.3);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1) rotate(-2deg);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.15) rotate(2deg);
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Order Ahead Section */
.order-ahead-section {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s ease;
}

.order-ahead-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.order-ahead-header {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.order-title {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Poppins', 'Inter', sans-serif;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.order-subtitle {
    font-size: 1.2rem;
    color: #1a1a2e;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.delivery-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Ensure all platform cards have the same dimensions */
.delivery-platforms .platform-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.platform-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    position: relative;
    overflow: hidden;
}

.platform-card.fade-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

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

.platform-card:hover::before {
    left: 100%;
}

.platform-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    border-color: rgba(78, 205, 196, 0.4);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.platform-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Poppins', 'Inter', sans-serif;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-card p {
    color: #1a1a2e;
    font-size: 0.95rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    opacity: 0.8;
}

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

/* About and Contact Pages */
.content-page {
    padding-top: 6rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.menu-header {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    margin-bottom: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.menu-header.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.menu-title {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Poppins', 'Inter', sans-serif;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.menu-subtitle {
    font-size: 1.3rem;
    color: #1a1a2e;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-style: italic;
}

.menu-categories {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.category {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s ease;
}

.category.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.category-title {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Poppins', 'Inter', sans-serif;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: -1px;
}

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

.menu-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.menu-item.fade-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.menu-item.fade-in:hover {
    transform: translateY(-8px) scale(1.02);
}

.menu-item-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    cursor: pointer;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
    border-radius: 15px 15px 0 0;
}

.menu-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
    border-radius: 15px 15px 0 0;
}

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

.menu-item:hover .menu-item-image img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.05);
}

.menu-item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.menu-item:hover .menu-item-image::after {
    left: 100%;
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Poppins', 'Inter', sans-serif;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item:hover h3 {
    transform: translateX(5px);
    text-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.menu-item p {
    color: #1a1a2e;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item:hover .menu-item-price {
    font-size: 1.3rem;
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% {
        text-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
    }
    50% {
        text-shadow: 0 2px 20px rgba(78, 205, 196, 0.5);
    }
}

/* About & Contact Pages - using same dark background as menu */

.page-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Poppins', 'Inter', sans-serif;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Floating Elements */
.floating-item {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    font-size: 1.5rem;
    animation: floatUp linear forwards;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes sparkleUp {
    0% {
        opacity: 1;
        transform: translateY(0) scale(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0) rotate(360deg);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Particle Effects */
.mouse-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.8), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    animation: trailFade 1s ease-out forwards;
}

@keyframes trailFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

.background-particle {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    animation: particleFloat linear forwards;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg) scale(0.5);
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) rotate(360deg) scale(1.2);
    }
}

.ripple-effect {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3), rgba(78, 205, 196, 0.2), transparent);
    pointer-events: none;
    z-index: 9999;
    animation: ripple 0.6s ease-out forwards;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Interactive Elements and Micro-animations */
::selection {
    background: rgba(255, 255, 255, 0.2);
}

::-moz-selection {
    background: rgba(255, 255, 255, 0.2);
}

/* Animated underlines for links */
a:not(.cta-button):not(.instagram-link):not(.nav-link) {
    position: relative;
    transition: all 0.3s ease;
}

a:not(.cta-button):not(.instagram-link):not(.nav-link):hover {
    color: #4ecdc4;
}

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

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff5252, #26c6da);
}

/* Pulsing effect for important elements */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}


/* Bouncing animation for floating elements */
.floating-item:hover {
    animation-play-state: paused;
    transform: scale(1.2) rotate(15deg);
    filter: brightness(1.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header and Navigation */
    .logo {
        margin-left: 0.5rem;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, rgba(15, 15, 35, 0.98) 0%, rgba(26, 26, 46, 0.98) 50%, rgba(22, 33, 62, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        padding: 3rem 0;
        transform: translateX(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-top: 1px solid rgba(255,255,255,0.15);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links li {
        width: 80%;
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        animation: slideInUp 0.6s ease forwards;
    }
    
    .nav-links li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links li:nth-child(4) { animation-delay: 0.4s; }
    
    .nav-links a {
        font-size: 1.4rem;
        padding: 1.5rem 2rem;
        width: 100%;
        display: block;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        margin: 0.5rem 0;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        font-weight: 600;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-links a:hover::before,
    .nav-links a.active::before {
        left: 100%;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
        border-color: rgba(78, 205, 196, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
    }
    
    /* Hero Section */
    .welcome-message {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Layout Adjustments */
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section {
        padding: 3rem 1rem;
        margin: 1rem;
    }
    
    .section-content {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .about-section-title {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }
    
    /* Menu Page Mobile */
    .menu-header {
        padding: 3rem 1rem;
        margin: 1rem;
    }
    
    .menu-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    
    .menu-subtitle {
        font-size: 1.1rem;
    }
    
    .category-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-item-content {
        padding: 1.2rem;
    }
    
    /* Contact Grid Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    /* Page Headers Mobile */
    .page-header {
        padding: 3rem 1rem;
        margin: 1rem;
    }
    
    .page-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    
    /* Social Section Mobile */
    .social-section {
        padding: 3rem 1rem;
        margin: 1rem;
    }
    
    .social-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }
    
    .instagram-link {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

