/*
========================================
    Navera - Coming Soon Page Style
    Using Navera Brand Guidelines
========================================
*/

:root {
    /* Colors from Brand Guide */
    --color-primary: #12717D;      
    --color-secondary-dark: #0D1A3E;    
    --color-accent: #F89E23;       
    --color-text-light: #F1F2F4;

    /* Fonts from Brand Guide */
    --font-headline: 'Urbanist', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* ================ BASE RESET & SETUP ================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: #12707c;
    color: var(--color-text-light);
    
    /* Applying the geometric pattern subtly */
    background-image: url('../images/navera-pattern.svg'); /* ** تأكد من وجود هذا الملف ** */
    background-size: 500px;
    background-blend-mode: overlay;
    background-color: rgba(13, 26, 62, 0.98);

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
}

/* ================ MAIN CONTENT STYLING ================ */
.main-container {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; /* Spacing between elements */
}

.logo {
    width: 114px;
}

/* Glowing animation for the logo */
@keyframes glow {
    0% { filter: drop-shadow(0 0 5px rgba(248, 158, 23, 0.2)); }
    50% { filter: drop-shadow(0 0 20px rgba(248, 158, 23, 0.5)); }
    100% { filter: drop-shadow(0 0 5px rgba(248, 158, 23, 0.2)); }
}


.headline {
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 4vw, 4rem); /* Responsive font size */
    font-weight: 800;
    line-height: 1.2;
}

.subheadline {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    opacity: 0.85;
}

/* ================ CALL TO ACTION SECTION ================ */
.cta-section {
    width: 100%;
    margin-top: 1rem;
}

.cta-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.subscribe-form input {
    font-family: var(--font-body);
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid rgba(241, 242, 244, 0.3);
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--color-text-light);
    font-size: 1rem;
}

.subscribe-form input::placeholder {
    color: rgba(241, 242, 244, 0.5);
}

.subscribe-form button {
    font-family: var(--font-headline);
    background-color: var(--color-accent);
    color: var(--color-secondary-dark);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.subscribe-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ================ CONTACT INFO ================ */
.contact-info {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
}

.contact-info a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a:hover {
    color: var(--color-accent);
}

/* ================ RESPONSIVE DESIGN FOR FORM ================ */
@media (min-width: 576px) {
    .subscribe-form {
        flex-direction: row;
    }
    .subscribe-form input {
        flex-grow: 1;
    }
    .contact-info {
        flex-direction: row;
        gap: 1.5rem;
    }
    .contact-info span {
        display: none; /* Hide "Connect with us" on wider screens for cleaner look */
    }
}