/* Color Palette */
:root {
    --navy: #1a1a2e;
    --gold: #d4af37;
    --creme: #f8f6f0;
    --white: #ffffff;
    --gold-dark: #b8941f;
    --navy-light: #1c1c50;
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--creme);
    color: var(--navy);
    overflow-x: hidden;
}

/* Canopy Section */
.canopy-section {
    position: relative;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 60px 20px 40px;
    text-align: center;
    overflow: hidden;
    border-bottom: 5px solid var(--gold);
}

.canopy-stripes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: repeating-linear-gradient(
        90deg,
        #082a59 0px,
        #082a59 40px,
        var(--creme) 40px,
        var(--creme) 80px
    );
}

.brand-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.brand-name h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 8px;
}

.ornament-left, .ornament-right {
    font-size: 3rem;
    color: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

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

.tagline {
    font-size: 1.3rem;
    color: var(--creme);
    margin-top: 10px;
    letter-spacing: 3px;
    font-weight: 300;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Section Headers */
.menu-section {
    margin-bottom: 80px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--navy);
    font-weight: 700;
}

.decorative-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    max-width: 200px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Menu Cards with Boiserie Frame */
.menu-card {
    background: var(--white);
    border: 4px solid var(--gold);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    position: relative;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid var(--gold);
    pointer-events: none;
    opacity: 0.3;
    border-radius: 4px;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    border-color: var(--gold-dark);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.3) 100%);
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.card-desc {
    color: var(--navy-light);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.card-price {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
}

.badge-veg {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Special Offer Banner */
.special-offer {
    margin: 80px 0;
}

.special-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border: 6px solid var(--gold);
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.special-banner::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--gold);
    pointer-events: none;
    border-radius: 8px;
}

.special-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.fire-emoji {
    font-size: 3rem;
    display: inline-block;
    animation: fire 1s ease-in-out infinite;
}

@keyframes fire {
    0%, 100% { transform: scale(1) rotate(-5deg); }
    50% { transform: scale(1.2) rotate(5deg); }
}

.special-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.special-subtitle {
    font-size: 1.3rem;
    color: var(--creme);
    margin-bottom: 15px;
}

.special-desc {
    font-size: 1.2rem;
    color: var(--creme);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.special-price {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    margin-top: 20px;
}

/* Floating Basket */
.floating-basket {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: var(--navy);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    z-index: 999;
    border: 3px solid var(--navy);
}

.floating-basket:hover {
    transform: scale(1.1);
    background: var(--gold-dark);
}

.basket-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #c41e3a;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid white;
}

/* Basket Panel */
.basket-panel {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-left: 5px solid var(--gold);
}

.basket-panel.active {
    right: 0;
}

.basket-header {
    background: var(--navy);
    color: var(--gold);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--gold);
}

.basket-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

.close-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.basket-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-basket {
    text-align: center;
    color: #999;
    margin-top: 100px;
    font-size: 1.2rem;
}

.basket-item {
    background: var(--creme);
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.basket-item h4 {
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.basket-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    background: var(--gold);
    border: none;
    color: var(--navy);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: var(--gold-dark);
}

.remove-btn {
    background: #c41e3a;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
}

.remove-btn:hover {
    background: #a01828;
}

.basket-footer {
    background: var(--creme);
    padding: 20px;
    border-top: 3px solid var(--gold);
}

.basket-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.basket-total span:last-child {
    color: var(--gold);
}

.btn-gold {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    border: 3px solid var(--navy);
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.pay-notice {
    text-align: center;
    margin-top: 10px;
    color: var(--navy-light);
    font-size: 0.95rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.9);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border: 5px solid var(--gold);
    border-radius: 15px;
    max-width: 700px;
    width: 100%;
    position: relative;
    padding: 40px;
    animation: slideDown 0.3s ease;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    border: none;
    color: var(--navy);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.close-modal:hover {
    background: var(--gold-dark);
    transform: rotate(90deg);
}

.modal-header {
    border-bottom: 3px solid var(--gold);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--navy);
}

.modal-price {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    margin: 10px 0;
}

.modal-section {
    margin: 20px 0;
}

.modal-section h3 {
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.modal-section p, .modal-section ul {
    color: var(--navy-light);
    line-height: 1.6;
}

.modal-section ul {
    list-style-position: inside;
    padding-left: 10px;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 10px;
    margin-bottom: 10px;
}

.badge-protein {
    background: var(--gold);
    color: var(--navy);
}

.badge-allergen {
    background: #ff9800;
    color: white;
}

.customization-input {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--gold);
    border-radius: 5px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    margin-top: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.quantity-selector label {
    font-size: 1.2rem;
    color: var(--navy);
    font-weight: 600;
}

.quantity-selector input {
    width: 80px;
    padding: 10px;
    border: 2px solid var(--gold);
    border-radius: 5px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.upsell-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 3px solid var(--gold);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.upsell-box h3 {
    color: var(--navy);
    margin-bottom: 10px;
}

.upsell-box p {
    color: var(--navy-light);
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    background: var(--white);
    border: 4px solid var(--gold);
    border-radius: 15px;
    padding: 60px 40px;
    margin: 80px 0;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    transition: border-color 0.3s;
}

#contactForm input:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: var(--gold-dark);
}

/* Reviews Section */
.reviews-section {
    margin: 80px 0;
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    gap: 30px;
    animation: slide 20s linear infinite;
    padding: 20px 0;
}

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

.review-card {
    min-width: 350px;
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--navy-light);
    margin-bottom: 15px;
}

.reviewer-name {
    color: var(--navy);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-name h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .ornament-left, .ornament-right {
        font-size: 2rem;
    }

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

    .basket-panel {
        width: 100%;
        right: -100%;
    }

    .floating-basket {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .modal-content {
        padding: 30px 20px;
    }
}
