/*
 * Styles for the Order Now Page
 * Path: /css/order.css
 */

/* Import a graffiti/stencil style font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Orbitron:wght@700&display=swap');

.order-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    background-color: var(--black-background);
}

/* Reusing hero video styles for consistency */
.order-hero .hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.3;
}

.order-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.coming-soon-title {
    font-family: 'Orbitron', sans-serif; /* A futuristic, stencil-like font */
    font-size: 6rem;
    color: var(--gold-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
    letter-spacing: 5px;
}

.partner-text {
    font-family: var(--secondary-font);
    font-size: 1.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}

.logo-container {
    position: relative;
    width: 100%;
    height: 300px; /* A defined space for logos to float in */
    margin-bottom: 40px;
    perspective: 1000px; /* For 3D effect on animations */
}

.logo-item {
    position: absolute;
    width: 200px;
    height: 100px;
    will-change: transform; /* Performance optimization for animations */
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    background-color: rgba(0,0,0,0.5);
    padding: 10px;
}

.stay-tuned-text {
    font-family: 'Special Elite', cursive; /* A typewriter/stencil font */
    font-size: 1.3rem;
    color: var(--gold-color);
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 3.5rem;
    }

    .partner-text {
        font-size: 1.2rem;
    }

    .logo-container {
        height: 400px; /* More vertical space on mobile */
    }

    .logo-item {
        width: 150px;
        height: 75px;
    }
}
