/* SMASHD - Clean Design */

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

body {
    font-family: 'Lato', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background: #000;
    color: white;
}

/* Powered by footer */
.powered-by {
    position: relative;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
}

.powered-by-logo {
    height: 20px;
    width: auto;
    opacity: 0.9;
}

.powered-by a,
.powered-by-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
}

/* Ensure no blue/underline for any link states */
.powered-by a:link,
.powered-by a:visited,
.powered-by a:hover,
.powered-by a:active,
.powered-by-link:link,
.powered-by-link:visited,
.powered-by-link:hover,
.powered-by-link:active {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 480px) {
    .powered-by {
        margin: 1.5rem 0 1rem;
        font-size: 0.85rem;
    }
    .powered-by-logo {
        height: 18px;
    }
}

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: flex-end;
}

.find-truck-btn {
    font-family: 'Rubik Mono One', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.find-truck-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Animated logo at the top */
.top-logo {
    position: relative;
    margin: 140px auto 0;
    width: 400px;
    height: 400px;
    background-image: url('SMASHD LOGO 800.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1000;
    animation: logoZoom 8s ease-in-out infinite;
}

@keyframes logoZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Tagline under the logo */
.tagline {
    position: relative;
    margin: 20px auto 0;
    width: 90%;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 3px 3px 0px #000;
    letter-spacing: -0.02em;
    z-index: 1000;
    animation: taglineZoom 8s ease-in-out infinite;
    font-family: 'Rubik Mono One', monospace;
}

@keyframes taglineZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}

/* Countdown Container */
.countdown-container {
    position: relative;
    margin: 40px auto 0;
    width: 80%;
    max-width: 800px;
    text-align: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    padding-bottom: 0.25rem; /* tighter space below the title */
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.countdown-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin-top: 1.25rem; /* closer to numbers */
    margin-bottom: 0; /* tighten space below */
    line-height: 1; /* reduce internal spacing */
    text-shadow: 2px 2px 0px #000;
    letter-spacing: 0.05em;
    font-family: 'Rubik Mono One', monospace;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.countdown-number {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    font-family: 'Rubik Mono One', monospace;
    text-shadow: 3px 3px 0px #000;
    line-height: 1;
    min-width: 0;
    width: 100%;
    text-align: center;
}

.countdown-label {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin-top: 1rem;
    text-shadow: 2px 2px 0px #000;
    letter-spacing: 0.05em;
    font-family: 'Lato', sans-serif;
}

.countdown-separator {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    font-family: 'Rubik Mono One', monospace;
    text-shadow: 3px 3px 0px #000;
    align-self: baseline;
    margin-top: 0;
    flex-shrink: 0;
    line-height: 1;
}

/* Menu Section */
.menu-container {
    position: relative;
    margin: 2rem auto;
    width: 90%;
    max-width: 600px;
    text-align: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.menu-title {
    font-family: 'Rubik Mono One', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 0px #000;
    letter-spacing: 0.05em;
}

.menu-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.menu-item:last-child {
    margin-bottom: 0;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.menu-item-name {
    font-family: 'Rubik Mono One', monospace;
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #000;
    letter-spacing: 0.05em;
}

.menu-item-price {
    font-family: 'Rubik Mono One', monospace;
    font-size: 1.2rem;
    font-weight: 900;
    color: #FF2C01;
    text-shadow: 2px 2px 0px #000;
    letter-spacing: 0.05em;
}

.menu-item-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    text-align: left;
}

/* Navigation */
.navigation {
    position: relative;
    margin: 2rem auto;
    text-align: center;
    z-index: 1000;
    margin-top: 2rem;
}

.nav-link {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 700;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Main Container */
.main-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    z-index: 0;
    pointer-events: none;
}

/* Left Panel - Red */
.left-panel {
    flex: 1;
    background-color: #FF2C01;
}

/* Right Panel - Blue */
.right-panel {
    flex: 1;
    background-color: #003DFF;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-nav {
        padding: 0.75rem 1rem;
    }
    
    .find-truck-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .top-logo {
        width: 90%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-left: auto;
        margin-right: auto;
        margin-top: 140px !important;
    }
    
    .tagline {
        margin: 20px auto 0;
        font-size: 2rem;
        width: 95%;
    }
    
    .countdown-container {
        margin: 40px auto 0;
        padding: 1.5rem;
        border-radius: 15px;
        width: 95%;
        max-width: 500px;
    }
    
    .countdown-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-number {
        font-size: 2.5rem;
        min-width: 0;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .countdown-separator {
        font-size: 2.5rem;
        align-self: baseline;
        margin-top: 0;
        line-height: 1;
    }
    
    .menu-container {
        margin: 2rem auto;
        padding: 1.5rem;
        border-radius: 15px;
        width: 95%;
        max-width: 500px;
    }
    
    .menu-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-item-name {
        font-size: 1rem;
    }
    
    .menu-item-price {
        font-size: 1rem;
    }
    
    .menu-item-description {
        font-size: 0.9rem;
    }
    
    .navigation {
        margin-top: 2rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .top-nav {
        padding: 0.5rem 1rem;
    }
    
    .find-truck-btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .top-logo {
        width: 90% !important;
        height: auto !important;
        aspect-ratio: 1 / 1;
        margin-top: 140px !important; /* Slightly more spacing below navbar on small phones */
        margin-left: auto;
        margin-right: auto;
    }
    
    .tagline {
        margin: 20px auto 0;
        font-size: 1.5rem;
        width: 95%;
    }
    
    .countdown-container {
        margin: 40px auto 0;
        padding: 1rem;
        border-radius: 12px;
        width: 95%;
        max-width: 400px;
    }
    
    .countdown-title {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .countdown-timer {
        gap: 0.25rem;
    }
    
    .countdown-number {
        font-size: 2rem;
        min-width: 0;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .countdown-separator {
        font-size: 2rem;
        align-self: baseline;
        margin-top: 0;
        line-height: 1;
    }
    
    .menu-container {
        margin: 2rem auto;
        padding: 1rem;
        border-radius: 12px;
        width: 95%;
        max-width: 400px;
    }
    
    .menu-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .menu-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .menu-item-name {
        font-size: 0.9rem;
    }
    
    .menu-item-price {
        font-size: 0.9rem;
    }
    
    .menu-item-description {
        font-size: 0.8rem;
    }
    
    .navigation {
        margin-top: 2rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    /* Enhanced mobile navbar styling for very small screens */
    .nav-bar {
        padding: 0.75rem 1rem;
    }
    
    .nav-content {
        gap: 0.75rem;
        align-items: center;
    }
    
    .location-display, .truck-status {
        gap: 0.25rem;
        width: 100%;
        justify-content: flex-start;
    }
    
    .location-label, .status-label {
        font-size: 0.8rem;
    }
    
    .current-location, .status-text {
        font-size: 0.85rem;
    }
    
    /* Ensure mobile layout consistency */
    .location-display {
        flex-direction: column !important;
        gap: 0.5rem !important;
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    .truck-status {
        flex-direction: column !important;
        gap: 0.5rem !important;
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    .status-indicator {
        flex-direction: row !important;
        gap: 0.25rem !important;
        align-items: center !important;
    }
} 

/* Navigation Bar */
.nav-bar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
}

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



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

.location-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

.current-location {
    color: #ff8c5a;
    font-weight: bold;
    font-size: 1rem;
}

.truck-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.status-dot.active {
    background: #4CAF50;
    box-shadow: 0 0 10px #4CAF50;
}

.status-dot.inactive {
    background: #9e9e9e;
    box-shadow: 0 0 10px #9e9e9e;
}

.status-text {
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.status-text.active {
    color: #4CAF50;
}

.status-text.inactive {
    color: #9e9e9e;
}

/* Responsive design for nav bar */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }
    

    
    .location-display, .truck-status {
        justify-content: flex-start;
        width: 100%;
    }
    
    /* Push logo down below nav bar on mobile */
    .top-logo {
        margin-top: 160px !important;
    }
    
    /* Stack location and status vertically on mobile */
    .location-display {
        flex-direction: column !important;
        gap: 0.5rem !important;
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    .truck-status {
        flex-direction: column !important;
        gap: 0.5rem !important;
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    .status-indicator {
        flex-direction: row !important;
        gap: 0.25rem !important;
        align-items: center !important;
    }
} 

/* Customer Signup Form Styles */
.signup-container {
    max-width: 600px;
    margin: 4rem auto 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.signup-title {
    font-family: 'Rubik Mono One', monospace;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #ff8c5a;
}

.signup-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff8c5a;
    background: rgba(255, 255, 255, 0.15);
}

.checkbox-label {
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: #ff8c5a;
    border-color: #ff8c5a;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.signup-button {
    background: #ff8c5a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Rubik Mono One', monospace;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.signup-button:hover {
    background: #e67e4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 90, 0.3);
}

.signup-button:active {
    transform: translateY(0);
}

.signup-message {
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: bold;
    min-height: 20px;
}

.signup-message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.signup-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Franchise CTA Bar */
.franchise-cta-bar {
    background: linear-gradient(135deg, #FF2C01 0%, #ff8c5a 100%);
    margin: 4rem 0 2rem;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255, 44, 1, 0.3);
}

.franchise-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.franchise-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.franchise-cta-title {
    font-family: 'Rubik Mono One', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.franchise-cta-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.franchise-cta-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-family: 'Rubik Mono One', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    min-width: 280px;
}

.franchise-cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive design for signup form */
@media (max-width: 768px) {
    .signup-container {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .signup-title {
        font-size: 1.25rem;
    }
    
    .signup-subtitle {
        font-size: 0.9rem;
    }
    
    /* Franchise CTA Bar Mobile */
    .franchise-cta-bar {
        margin: 3rem 1rem 2rem;
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .franchise-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .franchise-cta-title {
        font-size: 1.4rem;
    }
    
    .franchise-cta-subtitle {
        font-size: 1rem;
    }
    
    .franchise-cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
} 