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

body {
    font-family: Georgia, serif;
    line-height: 1.6;
    color: #2c2c2c;
}

/* Header */
header {
    background: linear-gradient(to right, #581c87, #6b21a8);
    color: white;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container img {
    height: 70px;
    width: auto;
    display: block;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 1.1rem;
}

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

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cart-btn, .login-btn {
    background: #fbbf24;
    color: #581c87;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    transition: all 0.3s;
    font-size: 1rem;
}

.cart-btn:hover, .login-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Fresh Banner */
.fresh-banner {
    background: #fbbf24;
    color: #581c87;
    text-align: center;
    padding: 0.6rem;
    font-weight: bold;
    margin-top: 90px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    color: #581c87;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.5rem !important;
    color: #fbbf24 !important;
    font-weight: bold;
}

.cta-btn {
    background: linear-gradient(to right, #581c87, #6b21a8);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(88, 28, 135, 0.3);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.baron-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

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

/* Guest of Honor Section */
.guest-of-honor {
    background: linear-gradient(135deg, #581c87 0%, #6b21a8 100%);
    color: white;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

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

.goh-container h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

.countdown-container h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 100px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.goh-order-btn {
    background: #fbbf24;
    color: #581c87;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 2rem;
}

.goh-order-btn:hover:not(:disabled) {
    background: #f59e0b;
    transform: translateY(-3px);
}

.goh-order-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.expired-message {
    background: rgba(220, 38, 38, 0.2);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

/* Our Goal Section */
.our-goal {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 20px;
}

.our-goal h2 {
    font-size: 2.5rem;
    color: #581c87;
    text-align: center;
    margin-bottom: 1.5rem;
}

.our-goal p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* How It Works */
.how-it-works {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
}

.how-it-works h2 {
    font-size: 2.5rem;
    color: #581c87;
    text-align: center;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.step-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    color: #581c87;
    margin-bottom: 1rem;
}

.step p {
    color: #666;
    font-size: 1.1rem;
}

/* Menu Cards - Goldenrod Gradient */
.menu-page {
    max-width: 1400px;
    margin: 120px auto 2rem;
    padding: 2rem;
}

.menu-page h1 {
    font-size: 3rem;
    color: #581c87;
    text-align: center;
    margin-bottom: 1rem;
}

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

.menu-category h2 {
    font-size: 2rem;
    color: #6b21a8;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #fbbf24;
}

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

.menu-card {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.special-card {
    background: linear-gradient(135deg, #6b21a8 0%, #581c87 100%);
    color: white;
}

.card-header {
    margin-bottom: 1rem;
}

.item-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #581c87;
    margin-bottom: 0.5rem;
}

.special-card .item-name {
    color: white;
}

.item-price {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

.item-description {
    font-size: 0.95rem;
    color: rgba(88, 28, 135, 0.8);
    margin-top: 0.5rem;
    font-style: italic;
}

.special-card .item-description {
    color: rgba(255, 255, 255, 0.9);
}

.customize-btn {
    width: 100%;
    background: #581c87;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.special-card .customize-btn {
    background: white;
    color: #581c87;
}

.customize-btn:hover {
    opacity: 0.9;
}

.options-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin-top: 1rem;
}

.options-panel.active {
    max-height: 1000px;
}

.option-group {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 8px;
}

.option-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #581c87;
}

.option-group select,
.option-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
}

.addon-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-to-cart-btn {
    width: 100%;
    background: #fbbf24;
    color: #581c87;
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: #f59e0b;
}

/* Flushes */
.flushes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.flush-card {
    background: linear-gradient(135deg, #6b21a8 0%, #581c87 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.flush-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.flush-price {
    font-size: 2rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.flush-description {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.flush-btn {
    width: 100%;
    background: #fbbf24;
    color: #581c87;
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

.flush-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.flush-options.active {
    max-height: 500px;
    margin-top: 1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.modal-header h2 {
    color: #581c87;
    font-size: 1.8rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.close-btn:hover {
    color: #dc2626;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #581c87;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #581c87;
}

.submit-btn {
    width: 100%;
    background: #581c87;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #6b21a8;
}

.form-switch {
    text-align: center;
    margin-top: 1rem;
    color: #666;
}

.form-switch a {
    color: #581c87;
    text-decoration: none;
    font-weight: bold;
}

.cart-item {
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

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

.cart-item-name {
    font-weight: bold;
    color: #581c87;
    font-size: 1.1rem;
}

.cart-item-price {
    font-weight: bold;
    color: #fbbf24;
    font-size: 1.2rem;
}

.cart-item-details {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.remove-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.cart-footer {
    border-top: 2px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 1rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #581c87;
}

.checkout-btn {
    width: 100%;
    background: #581c87;
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #581c87;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #581c87;
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .flushes-grid {
        grid-template-columns: 1fr;
    }
}
