/* Homepage Specific Styles */

/* Wrapper for home page content with gradient background */
.home-wrapper {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: calc(100vh - 4rem);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07), 0 10px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.logo {
    max-width: 200px;
    margin: 0 auto 20px;
}

.hero h1 {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: 700;
}

.tagline {
    font-size: 1.3em;
    color: #2c5282;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1em;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.hero-description strong {
    color: #1a202c;
}

.value-prop {
    display: inline-block;
    background: #e6f3ff;
    color: #003366;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    margin-top: 15px;
}

/* Queue Status Box */
.queue-status {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 10px 20px rgba(0,0,0,0.1);
}

.queue-status h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.queue-number {
    font-size: 3em;
    font-weight: 700;
    margin: 15px 0;
}

.queue-text {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Apology Box */
.apology {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.apology h3 {
    color: #856404;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.apology p {
    color: #856404;
    line-height: 1.6;
}

/* Launch Offer Box */
.launch-offer {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2), 0 10px 20px rgba(16, 185, 129, 0.15);
    border: 3px solid #34d399;
}

.launch-offer h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 700;
}

.launch-offer p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 0;
}

.launch-offer strong {
    font-weight: 700;
}

/* Join Queue Form */
.join-queue {
    background: white;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.join-queue h2 {
    color: #003366;
    margin-bottom: 20px;
    font-size: 1.8em;
}

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

.join-queue input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.join-queue input[type="email"]:focus {
    outline: none;
    border-color: #667eea;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 100%;
    font-size: 1.1em;
    padding: 16px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
}

/* Flash Messages (homepage specific) */
.flash-messages {
    margin-bottom: 20px;
}

.flash-messages .flash {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 500;
}

.flash-messages .flash.success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.flash-messages .flash.error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Navigation Buttons */
.nav-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.nav-buttons .btn {
    width: 100%;
    padding: 12px 20px;
}

/* Info Sections */
.info-section {
    background: white;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.info-section h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.info-section p {
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.info-section ul, .info-section ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.info-section li {
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.6;
}

.info-section a {
    color: #667eea;
    font-weight: 600;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature {
    background: #f7fafc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.feature h4 {
    color: #003366;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.feature p {
    color: #4a5568;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    color: #718096;
    font-size: 0.9em;
}

.footer p {
    margin-bottom: 8px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .hero {
        padding: 25px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .tagline {
        font-size: 1.1em;
    }

    .queue-number {
        font-size: 2.5em;
    }

    .nav-buttons {
        grid-template-columns: 1fr;
    }
}
