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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

/* Header & Navigation */
header {
    background: 
        linear-gradient(135deg, rgba(255, 107, 53, 0.6), rgba(247, 147, 30, 0.6)),
        url('hawaii-g73aaa12uq8aguo6.jpg') center/cover no-repeat;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    color: white;
    text-align: left;
}

.logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.tagline {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

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

.order-btn {
    background: white;
    color: #ff6b35 !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
}

.order-btn:hover {
    background: #f0f0f0;
    opacity: 1 !important;
}

/* Main Content */
main {
    margin-top: 0;
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        url('food3.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 9px;
    background: linear-gradient(90deg, transparent, #4a9b9b, #4a9b9b, transparent);
    opacity: 1;
    box-shadow: 0 3px 9px rgba(74, 155, 155, 0.4);
}

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

.hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn.primary {
    background: #ff6b35;
    color: white;
    filter: drop-shadow(0 8px 25px rgba(255, 107, 53, 0.4));
}

.btn.secondary {
    background: white;
    color: #4a90e2;
    filter: drop-shadow(0 8px 25px rgba(74, 144, 226, 0.3));
}

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

.logo-img {
    max-width: 1575px;
    max-height: 1575px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,0.4));
    margin-bottom: 1rem;
}

/* Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #4a9b9b, #4a9b9b, transparent);
    margin: 2rem 0;
    opacity: 0.6;
}

/* About Section - Bon Me Inspired Layout */
.about {
    padding: 0;
    background: white;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 9px;
    background: linear-gradient(90deg, transparent, #4a9b9b, #4a9b9b, transparent);
    opacity: 1;
    box-shadow: 0 3px 9px rgba(74, 155, 155, 0.4);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.about-content-section {
    background: linear-gradient(135deg, #fff5e6, #fff8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

.about-content-section-alt {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color: white;
}

.about-image-section {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 50vh;
}

.about-image-section-alt {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 50vh;
}

.about-text-overlay h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #4a9b9b;
    text-shadow: 3px 3px 6px rgba(255, 107, 53, 0.3);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-text-overlay p, .about-text-overlay-alt p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-text-overlay p {
    color: #666;
}

.about-text-overlay-alt p {
    color: white;
}

.image-overlay, .image-overlay-alt {
    background: rgba(255, 107, 53, 0.85);
    padding: 2rem 3rem;
    border-radius: 15px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-overlay.visible, .image-overlay-alt.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.image-overlay h3, .image-overlay-alt h3 {
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 
        4px 4px 8px rgba(0,0,0,0.7),
        2px 2px 4px rgba(0,0,0,0.9);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content-section, .about-content-section-alt {
        padding: 2rem;
    }
    
    .about-text-overlay h2 {
        font-size: 2.5rem;
    }
    
    .about-image-section, .about-image-section-alt {
        min-height: 40vh;
    }
}

/* Menu Section */
.menu {
    padding: 4rem 0;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        url('Rainy_Blue_Ridge-27527.jpg') center/cover no-repeat;
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 9px;
    background: linear-gradient(90deg, transparent, #4a9b9b, #4a9b9b, transparent);
    opacity: 1;
    box-shadow: 0 3px 9px rgba(74, 155, 155, 0.4);
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
}

.menu h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #4a9b9b;
    text-shadow: 3px 3px 6px rgba(255, 107, 53, 0.3);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.menu-categories {
    display: grid;
    gap: 3rem;
}

.menu-category h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #4a9b9b;
    border-bottom: 3px solid #ff6b35;
    padding-bottom: 0.5rem;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.menu-category.featured {
    background: 
        linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.9)),
        url('food1.jpg') center/cover no-repeat;
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid #ff6b35;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
    position: relative;
}

.menu-category.featured h3 {
    font-family: 'Oswald', sans-serif;
    color: white;
    font-size: 2.8rem;
    text-align: center;
    border-bottom: 3px solid white;
    font-weight: 700;
    text-shadow: 
        4px 4px 8px rgba(0,0,0,0.7),
        2px 2px 4px rgba(0,0,0,0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.menu-category.featured .menu-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

.menu-category.featured .menu-item:hover {
    background: rgba(255, 255, 255, 1);
}

.menu-items {
    display: grid;
    gap: 1.5rem;
}

.menu-category:not(.featured) {
    background: linear-gradient(135deg, #ffffff, #fefefe);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.08);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    margin-bottom: 2rem;
}

.menu-category:not(.featured) .menu-item {
    border-left: 4px solid transparent;
    transition: all 0.4s ease;
}

.menu-category:not(.featured) .menu-item:hover {
    border-left-color: #ff6b35;
    margin-left: 8px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff, #fefefe);
    border-radius: 20px;
    border: 2px solid transparent;
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.08),
        0 1px 3px rgba(0,0,0,0.02),
        inset 0 1px 0 rgba(255,255,255,0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.menu-item .item-details {
    opacity: 0.7;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 0;
}

.menu-item:hover .item-details {
    opacity: 1;
    max-height: 100px;
    margin-top: 1rem;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }

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

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateX(-100%);
}

.menu-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), rgba(247, 147, 30, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.15),
        0 8px 25px rgba(0,0,0,0.08),
        0 3px 10px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,1);
    border-color: rgba(255, 107, 53, 0.2);
}

.menu-item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

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

.menu-item:active {
    transform: translateY(-6px) scale(1.01);
    transition: all 0.1s ease;
}

.included-note {
    font-size: 0.9rem;
    color: #4a9b9b;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Responsive descriptions */
.description-mobile {
    display: none;
}

.description-full {
    display: block;
}

.item-info h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.item-info p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    letter-spacing: 0.3px;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a9b9b;
    min-width: 100px;
    text-align: center;
    background: 
        linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15)),
        linear-gradient(to bottom, #ffffff, #fefefe);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    box-shadow: 
        0 4px 12px rgba(255, 107, 53, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative;
    transition: all 0.3s ease;
    transform: translateZ(10px);
}

.price:hover {
    transform: translateZ(10px) scale(1.05);
    box-shadow: 
        0 6px 20px rgba(255, 107, 53, 0.25),
        inset 0 1px 0 rgba(255,255,255,1);
    border-color: rgba(255, 107, 53, 0.4);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(247, 147, 30, 0.8)),
        url('photo-1505852679233-d9fd70aff56d.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 9px;
    background: linear-gradient(90deg, transparent, #4a9b9b, #4a9b9b, transparent);
    opacity: 1;
    box-shadow: 0 3px 9px rgba(74, 155, 155, 0.4);
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.contact h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

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

.contact-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.contact-item p {
    opacity: 0.9;
    line-height: 1.6;
    color: white;
}

/* Floating Order Button */
.floating-order-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

/* Top Right Navigation */
.top-nav {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    gap: 1rem;
}

/* Base nav button styles */
.nav-btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 6px 20px rgba(0,0,0,0.15),
        0 2px 8px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(15px);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    border: 2px solid;
}

/* About Us - Warm Orange */
.nav-btn:nth-child(1) {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)),
        linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 0, 0.1));
    color: #4a9b9b;
    border-color: #4a9b9b;
    box-shadow: 
        0 8px 30px rgba(255, 107, 53, 0.4),
        0 4px 15px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.8);
    filter: drop-shadow(0 6px 20px rgba(255, 107, 53, 0.3));
}

/* View Menu - Tropical Green */
.nav-btn:nth-child(2) {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)),
        linear-gradient(135deg, rgba(34, 139, 34, 0.1), rgba(50, 205, 50, 0.1));
    color: #4a9b9b;
    border-color: #4a9b9b;
    box-shadow: 
        0 8px 30px rgba(34, 139, 34, 0.4),
        0 4px 15px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.8);
    filter: drop-shadow(0 6px 20px rgba(34, 139, 34, 0.3));
}

/* Contact Us - Ocean Blue with Pulse */
.nav-btn:nth-child(3) {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)),
        linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(0, 191, 255, 0.1));
    color: #4a9b9b;
    border-color: #4a9b9b;
    box-shadow: 
        0 8px 30px rgba(30, 144, 255, 0.4),
        0 4px 15px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.8);
    filter: drop-shadow(0 6px 20px rgba(30, 144, 255, 0.3));
    animation: pulse-glow 3s ease-in-out infinite;
}

/* FAQ - Turquoise with Pulse (main page 4th position) */
.nav-btn:nth-child(4):not([href*="contact"]) {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)),
        linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(0, 191, 255, 0.1));
    color: #4a9b9b;
    border-color: #4a9b9b;
    box-shadow: 
        0 8px 30px rgba(30, 144, 255, 0.4),
        0 4px 15px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.8);
    filter: drop-shadow(0 6px 20px rgba(30, 144, 255, 0.3));
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Contact Us - Always turquoise regardless of position */
.nav-btn[href*="contact"] {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)),
        linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(0, 191, 255, 0.1));
    color: #4a9b9b;
    border-color: #4a9b9b;
    box-shadow: 
        0 8px 30px rgba(30, 144, 255, 0.4),
        0 4px 15px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.8);
    filter: drop-shadow(0 6px 20px rgba(30, 144, 255, 0.3));
    animation: pulse-glow 3s ease-in-out infinite;
}

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

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

/* Hover states for each button */
.nav-btn:nth-child(1):hover {
    background: linear-gradient(135deg, #ff6b35, #ff8c00);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(255, 107, 53, 0.4),
        0 4px 15px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: #4a9b9b;
}

.nav-btn:nth-child(2):hover {
    background: linear-gradient(135deg, #228b22, #32cd32);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(34, 139, 34, 0.4),
        0 4px 15px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: #4a9b9b;
}

.nav-btn:nth-child(3):hover {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(30, 144, 255, 0.4),
        0 4px 15px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: #4a9b9b;
    animation: none; /* Stop pulsing on hover */
}

.nav-btn:nth-child(4):not([href*="contact"]):hover {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(30, 144, 255, 0.4),
        0 4px 15px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: #4a9b9b;
    animation: none; /* Stop pulsing on hover */
}

.nav-btn[href*="contact"]:hover {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(30, 144, 255, 0.4),
        0 4px 15px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: #4a9b9b;
    animation: none; /* Stop pulsing on hover */
}

/* Pulse animation for Contact Us */
@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 
            0 6px 20px rgba(30, 144, 255, 0.2),
            0 2px 8px rgba(0,0,0,0.1),
            inset 0 1px 0 rgba(255,255,255,0.8);
    }
    50% { 
        box-shadow: 
            0 6px 25px rgba(30, 144, 255, 0.4),
            0 2px 10px rgba(0,0,0,0.1),
            inset 0 1px 0 rgba(255,255,255,0.9);
    }
}

.nav-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

@media (max-width: 768px) {
    .top-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

.order-floating {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: 3px solid #4a9b9b;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    box-shadow: 
        0 10px 30px rgba(255, 107, 53, 0.5),
        0 6px 20px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}


.order-floating::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;
}

.order-floating:hover::before {
    left: 100%;
}

.order-floating:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.6),
        0 8px 25px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.4);
    background: linear-gradient(135deg, #f7931e, #ff4500);
    border-color: rgba(255, 255, 255, 0.5);
}

.order-floating:active {
    transform: translateY(-1px) scale(1.02);
}

.order-floating.coming-soon {
    background: linear-gradient(135deg, #999, #666);
    cursor: not-allowed;
    opacity: 0.8;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.2rem 2.5rem;
}

.order-floating.coming-soon:hover {
    transform: none;
    box-shadow: 
        0 10px 30px rgba(153, 153, 153, 0.3),
        0 6px 20px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.coming-soon-text {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    font-style: italic;
}

/* Coming Soon price styling */
.price.coming-soon-price {
    color: #999;
    font-style: italic;
    font-weight: 400;
    font-size: 0.9rem;
}

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

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

/* Order Popup */
.order-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.order-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.order-popup-content {
    background: linear-gradient(135deg, #ffffff, #fefefe);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-section h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a9b9b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-section input,
.form-section textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-section input:focus,
.form-section textarea:focus {
    outline: none;
    border-color: #4a9b9b;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.form-section textarea {
    min-height: 100px;
    resize: vertical;
}

.menu-item-order {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.menu-item-order:hover {
    border-color: #4a9b9b;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.item-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #4a9b9b;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.quantity-control button {
    background: #ff6b35;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-control button:hover {
    background: #f7931e;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.quantity-control input {
    width: 60px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.5rem;
    background: white;
}

.order-total {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin: 1rem 0;
}

.total-line {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-order {
    background: linear-gradient(135deg, #228b22, #32cd32);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
    width: 100%;
    margin-top: 1rem;
}

.submit-order:hover {
    background: linear-gradient(135deg, #32cd32, #228b22);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(34, 139, 34, 0.4);
}

.submit-order:active {
    transform: translateY(-1px);
    transition: all 0.1s ease;
}

.spoiler-alert {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 4rem;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.3);
    display: block;
    text-align: center;
    margin: 2rem 0;
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #4a9b9b;
}

.order-popup-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #4a9b9b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.order-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.order-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    border-color: #4a9b9b;
}

.option-icon {
    font-size: 2.5rem;
    width: 60px;
    text-align: center;
}

.option-text h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.option-text p {
    margin: 0;
    color: #666;
    font-weight: 500;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@media (max-width: 768px) {
    .order-popup-content {
        padding: 1.5rem;
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .quantity-control {
        justify-content: flex-start;
    }
    }
    
    .option-icon {
        font-size: 2rem;
        width: 50px;
    }
}

/* Scroll Triggered Animations */
.fade-in-left, .fade-in-right, .fade-in-up {
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.fade-in-left {
    transform: translateX(-80px);
}

.fade-in-right {
    transform: translateX(80px);
}

.fade-in-up {
    transform: translateY(50px);
}

.fade-in-left.visible, .fade-in-right.visible, .fade-in-up.visible {
    opacity: 1;
    transform: translate(0);
}

/* Parallax Effect */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Switch to mobile descriptions */
    .description-full {
        display: none;
    }
    
    .description-mobile {
        display: block;
    }

    .nav-menu {
        display: none;
    }
    
    .nav-logo {
        height: 320px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        background-attachment: scroll;
    }
    
    .contact {
        background-attachment: scroll;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .logo-img {
        max-width: 700px;
        max-height: 700px;
        margin-top: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .menu-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .price {
        text-align: left;
        font-size: 1.3rem;
    }
    
    /* Smaller tagline on mobile */
    .tagline span {
        font-size: 0.9rem !important;
        padding: 8px 16px !important;
        letter-spacing: 1px !important;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.25rem 1rem;
    }
    
    .nav-logo {
        height: 280px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .menu h2, .about h2, .contact h2 {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Button Link Styling */
.btn {
    text-decoration: none;
    display: inline-block;
}