@import url('https://fonts.googleapis.com/css2?family=Fredoka+One:wght@400&family=Poppins:wght@300;400;500;600;700&display=swap&subset=latin');

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

html {
    overflow-x: hidden;
}

/* Ensure animations work properly */
@supports (animation: none) {
    * {
        animation-fill-mode: both;
    }
}

/* Fallback for reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #25313F;
    background: #fff3c4;
    background: linear-gradient(45deg, #fff8e1, #fff3c4, #ffe082);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Waffle pattern background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, #F9B93E 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, #F9B93E 2px, transparent 2px);
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

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

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

/* Header & Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    background: white;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(249, 185, 62, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #F9B93E;
    left: 0;
    right: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.logo {
    cursor: pointer;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(249, 185, 62, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1) rotate(5deg);
    animation: wiggle 0.5s ease-in-out;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg) scale(1.1); }
    25% { transform: rotate(5deg) scale(1.1); }
    75% { transform: rotate(-5deg) scale(1.1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: relative;
    z-index: 1002;
}

.nav-menu a {
    text-decoration: none;
    color: #25313F;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    display: block;
    z-index: 1;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 185, 62, 0.3), transparent);
    transition: left 0.5s;
    pointer-events: none;
    z-index: -1;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #F9B93E;
    background: linear-gradient(135deg, rgba(249, 185, 62, 0.2), rgba(255, 215, 0, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 185, 62, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1003;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #25313F;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: #F9B93E;
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: #F9B93E;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F9B93E 0%, #FFD700 50%, #FFA726 100%);
    padding: 150px 0 100px;
    text-align: center;
    color: #25313F;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🧇';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    top: 20%;
    left: 10%;
    animation: floatWaffle 6s ease-in-out infinite;
}

.hero::after {
    content: '🍓';
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    top: 60%;
    right: 15%;
    animation: floatWaffle 8s ease-in-out infinite reverse;
}

@keyframes floatWaffle {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.floating-waffle, .floating-strawberry, .floating-chocolate, .floating-honey {
    position: absolute;
    font-size: 3rem;
    opacity: 0.8;
    z-index: 1;
}

.floating-waffle {
    top: 20%;
    left: 15%;
    animation: floatElement 6s ease-in-out infinite;
}

.floating-strawberry {
    top: 60%;
    right: 20%;
    animation: floatElement 8s ease-in-out infinite;
    animation-direction: reverse;
}

.floating-chocolate {
    bottom: 30%;
    left: 10%;
    animation: floatElement 7s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-honey {
    top: 40%;
    right: 10%;
    animation: floatElement 9s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes floatElement {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-15px) rotate(5deg) scale(1.1); 
    }
    50% { 
        transform: translateY(-30px) rotate(-5deg) scale(1); 
    }
    75% { 
        transform: translateY(-10px) rotate(3deg) scale(1.05); 
    }
}

.hero-content h1 {
    font-family: 'Fredoka One', 'Comic Sans MS', cursive, sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 3px 3px 0px rgba(37, 49, 63, 0.3);
    animation: bounceIn 1s ease-out;
    color: #25313F;
}

@keyframes bounceIn {
    0% { transform: scale(0.3) rotate(-10deg); opacity: 0; }
    50% { transform: scale(1.05) rotate(2deg); }
    70% { transform: scale(0.9) rotate(-1deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    animation: slideInUp 1s ease-out 0.3s both;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(45deg, #25313F, #4a5568);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #1a2330, #2d3748);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 49, 63, 0.4);
    animation: buttonPulse 0.6s ease;
}

@keyframes buttonPulse {
    0% { transform: translateY(-4px) scale(1.05); }
    50% { transform: translateY(-6px) scale(1.08); }
    100% { transform: translateY(-4px) scale(1.05); }
}

.btn-secondary {
    background: transparent;
    color: #25313F;
    border: 3px solid #25313F;
}

.btn-secondary:hover {
    background: #25313F;
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 49, 63, 0.3);
    border-color: #F9B93E;
}

.btn-primary.large {
    font-size: 1.5rem;
    padding: 20px 40px;
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: linear-gradient(45deg, #f8f9fa, #ffffff, #fff8e1);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(249, 185, 62, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.menu-section h2 {
    text-align: center;
    font-family: 'Fredoka One', 'Comic Sans MS', cursive, sans-serif;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: #25313F;
    text-shadow: 2px 2px 4px rgba(249, 185, 62, 0.3);
    position: relative;
    z-index: 1;
}

.menu-section h2::after {
    content: '🧇✨';
    display: block;
    font-size: 2rem;
    margin-top: 0.5rem;
    animation: sparkle 2s ease-in-out infinite alternate;
}

@keyframes sparkle {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(5deg); }
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    font-family: 'Fredoka One', 'Comic Sans MS', cursive, sans-serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #25313F, #4a5568, #25313F);
    padding: 1.5rem;
    border-radius: 25px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(37, 49, 63, 0.3);
    border: 3px solid #F9B93E;
}

.menu-category h3::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(249, 185, 62, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

.menu-item {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(249, 185, 62, 0.2), 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 185, 62, 0.1), rgba(255, 215, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(249, 185, 62, 0.4), 0 5px 20px rgba(0,0,0,0.2);
    border-color: #F9B93E;
}

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

.menu-item:hover .menu-item-content h4 {
    color: #F9B93E;
    transform: scale(1.05);
}

.menu-item:hover .price {
    animation: priceGlow 0.5s ease;
}

@keyframes priceGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(249, 185, 62, 0.5); }
    50% { text-shadow: 0 0 20px rgba(249, 185, 62, 0.8), 0 0 30px rgba(249, 185, 62, 0.6); }
}

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

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

.menu-item-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #25313F;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item-content p {
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.price {
    font-family: 'Fredoka One', 'Comic Sans MS', cursive, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #F9B93E;
    display: block;
    text-shadow: 1px 1px 2px rgba(249, 185, 62, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.price::before {
    content: '💰';
    margin-right: 0.5rem;
    font-size: 1.2rem;
    animation: coinSpin 2s linear infinite;
}

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

/* Order Section */
.order-section {
    text-align: center;
    margin-top: 3rem;
    padding: 4rem;
    background: linear-gradient(135deg, #F9B93E, #FFD700, #FFA726);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(249, 185, 62, 0.4);
    position: relative;
    overflow: hidden;
    animation: orderGlow 3s ease-in-out infinite alternate;
}

.order-section::before {
    content: '📞✨';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(10deg) scale(1.1); }
    75% { transform: rotate(-10deg) scale(1.1); }
}

@keyframes orderGlow {
    0% { box-shadow: 0 15px 40px rgba(249, 185, 62, 0.4); }
    100% { box-shadow: 0 15px 40px rgba(249, 185, 62, 0.7), 0 0 30px rgba(255, 215, 0, 0.3); }
}

.order-section h3 {
    font-family: 'Fredoka One', 'Comic Sans MS', cursive, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #25313F;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    animation: textBounce 2s ease-in-out infinite;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #F9B93E 0%, #FFD700 50%, #FFA726 100%);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    animation: diagonalMove 20s linear infinite;
}

@keyframes diagonalMove {
    0% { transform: translateX(-50%) translateY(-50%); }
    100% { transform: translateX(-40%) translateY(-40%); }
}

.page-header h1 {
    font-family: 'Fredoka One', 'Comic Sans MS', cursive, sans-serif;
    font-size: 3.5rem;
    color: #25313F;
    font-weight: 400;
    text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
    animation: headerSlide 1s ease-out;
}

@keyframes headerSlide {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-text h2 {
    font-family: 'Fredoka One', 'Comic Sans MS', cursive, sans-serif;
    font-size: 3rem;
    color: #F9B93E;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(249, 185, 62, 0.3);
    position: relative;
}

.about-text h2::after {
    content: '🧇🍯';
    position: absolute;
    right: -40px;
    top: 0;
    font-size: 2rem;
    animation: ingredientFloat 3s ease-in-out infinite alternate;
}

@keyframes ingredientFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(10deg); }
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features {
    margin-bottom: 4rem;
}

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

.feature-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(249, 185, 62, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 185, 62, 0.1), rgba(255, 215, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(249, 185, 62, 0.3);
    border-color: #F9B93E;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:nth-child(1)::after { content: '🧇'; }
.feature-item:nth-child(2)::after { content: '🍓'; }
.feature-item:nth-child(3)::after { content: '🍫'; }
.feature-item:nth-child(4)::after { content: '✨'; }

.feature-item::after {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    opacity: 0.7;
    animation: featureIcon 2s ease-in-out infinite alternate;
}

@keyframes featureIcon {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.2) rotate(5deg); }
}

.feature-item h3 {
    color: #F9B93E;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.cta-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #25313F;
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: #F9B93E;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(249, 185, 62, 0.15);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(249, 185, 62, 0.25);
    border-color: #F9B93E;
}

.contact-item:nth-child(1)::before { content: '📍'; }
.contact-item:nth-child(2)::before { content: '📞'; }
.contact-item:nth-child(3)::before { content: '📱'; }

.contact-item::before {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.6;
}

.contact-item h3 {
    color: #25313F;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    font-size: 1rem;
}

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

.contact-item a:hover {
    color: #25313F;
}

.order-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.order-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.map-container h3 {
    color: #25313F;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.map-placeholder {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-note {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
    text-align: center;
}

.working-hours {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.working-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #25313F;
}

/* Footer */
footer {
    background: #25313F;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info {
    flex: 1;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-info a {
    color: #F9B93E;
    text-decoration: none;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #F9B93E;
}

/* WhatsApp Popup */
.whatsapp-popup {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-popup a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite, whatsappFloat 3s ease-in-out infinite alternate;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-popup a:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-popup a::before {
    content: '💬';
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 1.2rem;
    animation: messageBounce 1.5s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes whatsappFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

@keyframes messageBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.2); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 82px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.98));
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(249, 185, 62, 0.2);
        padding: 2rem 0;
        z-index: 999;
        border-top: 2px solid #F9B93E;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 25px;
        margin: 0 2rem;
    }
    
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links ul {
        justify-content: center;
    }
    
    .order-buttons {
        flex-direction: column;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .menu-section {
        padding: 60px 0;
    }
    
    .about-content,
    .contact-content {
        padding: 60px 0;
    }
    
    .whatsapp-popup a {
        width: 50px;
        height: 50px;
    }
    
    .btn-primary.large {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .about-text h2::after {
        display: none;
    }
    
    .about-text h2 {
        overflow: hidden;
    }
    
    .feature-item::after {
        display: none;
    }
    
    .about-content {
        overflow-x: hidden;
    }
    
    .about-text {
        overflow-x: hidden;
    }
}