:root {
    --primary: #e63946; /* Hibachi red */
    --secondary: #f1faee; /* Light cream */
    --accent: #457b9d; /* Accent blue */
    --dark: #1d3557; /* Dark navy */
    --highlight: #a8dadc; /* Light teal */
    --black: #0d1b2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--black);
    color: var(--secondary);
    overflow-x: hidden;
}

/* Video Background */
.video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background-color 0.3s;
}

nav.scrolled {
    background-color: var(--dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--secondary);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.cta-button:hover {
    background-color: #c1121f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

/* Order Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--dark);
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.4s;
}

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

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: var(--secondary);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
}

/* Package Selection */
.package-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.package-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.package-card.selected {
    border-color: var(--primary);
    background-color: rgba(230, 57, 70, 0.1);
}

.package-card.deluxe {
    position: relative;
    border: 2px solid gold;
}

.package-card.deluxe::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: gold;
    color: var(--black);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

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

.package-description {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.package-includes {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.package-subtitle {
    text-align: center;
    margin-bottom: 20px;
    color: var(--highlight);
    font-style: italic;
}

/* Customization Options */
.customization-section {
    display: none;
    margin-top: 30px;
}

.option-group {
    margin-bottom: 20px;
}

.option-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--highlight);
}

.option-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-choice {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.option-choice:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.option-choice.selected {
    background-color: var(--primary);
    color: white;
}

.option-choice.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Customer Info Form */
.customer-form {
    display: none;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, 
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* Calendar Styling */
.flatpickr-calendar {
    background: var(--dark);
    color: var(--secondary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.flatpickr-day {
    color: var(--secondary);
}

.flatpickr-day.selected, .flatpickr-day.selected:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.flatpickr-day.today {
    border-color: var(--highlight);
}

.flatpickr-day.disabled {
    color: rgba(255, 255, 255, 0.3);
}

/* Order Summary */
.order-summary {
    display: none;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.summary-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-total {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-info {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.availability-notice {
    color: var(--highlight);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.nav-button {
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.back-button {
    background-color: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

.back-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.next-button {
    background-color: var(--primary);
    border: none;
    color: white;
}

.next-button:hover {
    background-color: #c1121f;
}

.submit-button {
    background-color: #4CAF50;
    border: none;
    color: white;
    width: 100%;
}

.submit-button:hover {
    background-color: #3e8e41;
}

.next-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Confirmation Message */
.confirmation-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.confirmation-message i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.confirmation-message h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Contact Section */
.contact-section {
    padding: 80px 5%;
    background-color: var(--dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
}

.contact-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.contact-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--highlight);
}

.contact-card p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-card i {
    margin-right: 10px;
    color: var(--primary);
}

/* Map Section */
.map-section {
    padding: 60px 5%;
    background-color: var(--black);
    position: relative;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.social-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.instagram-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.instagram-btn i {
    font-size: 1.5rem;
    margin-right: 10px;
}

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

.footer-modal-content {
    background-color: var(--dark);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.4s;
}

.close-footer-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: var(--secondary);
    cursor: pointer;
    transition: color 0.3s;
}

.close-footer-modal:hover {
    color: var(--primary);
}

.footer-message {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Footer Trigger */
.footer-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.footer-trigger:hover {
    transform: scale(1.1);
}

.footer-trigger i {
    font-size: 1.5rem;
}

/* Scarcity Banner */
.scarcity-banner {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 90;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

/* Form Validation */
input:invalid, select:invalid, textarea:invalid {
    border-color: #ff6b6b;
}

input:focus:invalid, select:focus:invalid, textarea:focus:invalid {
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--dark);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .package-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .package-options {
        gap: 15px;
    }
    
    .package-card {
        padding: 20px;
    }
    
    .map-section {
        padding-bottom: 120px;
    }
    
    .social-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
    
    .instagram-btn {
        font-size: 1rem;
        padding: 12px 20px;
    }
}