/* T03 Coming Soon Page Styles */

:root {
    --primary-blue: #1e3a5f;
    --accent-gold: #d4af37;
    --background-white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-light: #e0e0e0;
    --max-width: 800px;
}

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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
    min-height: 100vh;
    position: relative;
}

/* Background Image */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('assets/images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

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

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1rem 5rem 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.content-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 100%;
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
}

.main-logo {
    max-width: 275px;
    width: 100%;
    height: auto;
    display: block;
}

/* Content Section */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 2rem;
}

.main-headline {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sub-headline {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    position: relative;
}

.sub-headline::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 1rem auto 0;
}

.location-tag {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.features {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--accent-gold);
    position: relative;
}

.feature:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--accent-gold);
    border-radius: 50%;
}

/* Signup Section */
.signup-section {
    margin-bottom: 2rem;
}

.signup-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.signup-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#email {
    flex: 1;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid var(--border-light);
    border-right: none;
    border-radius: 6px 0 0 6px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Open Sans', Arial, sans-serif;
}

#email:focus {
    border-color: var(--primary-blue);
}

#email::placeholder {
    color: var(--text-light);
}

.notify-btn {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 0 6px 6px 0;
    min-width: 120px;
}

.notify-btn:hover {
    background-color: #2a4d73;
    transform: translateY(-1px);
}

.notify-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 58, 95, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    color: white;
    font-size: 0.85rem;
    z-index: 10;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.hrsd-logo {
    height: 16px;
    width: auto;
    opacity: 0.8;
    filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem 0.5rem 5rem 0.5rem;
    }
    
    .content-box {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .main-headline {
        font-size: 2rem;
    }
    
    .sub-headline {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .features {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .feature:not(:last-child)::after {
        display: none;
    }
    
    .form-group {
        flex-direction: column;
        border-radius: 6px;
    }
    
    #email {
        border-radius: 6px 6px 0 0;
        border-right: 2px solid var(--border-light);
    }
    
    #email:focus {
        border-color: var(--primary-blue);
    }
    
    .notify-btn {
        border-radius: 0 0 6px 6px;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-placeholder {
        font-size: 1.5rem;
        padding: 0.75rem 1.5rem;
    }
    
    .main-headline {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 1rem 1rem;
    }
}