/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif; /* Matches the concept's clean, modern text */
}

body {
    min-height: 100vh;
    width: 100vw;
    background-color: #f4f6f8;
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* --- Shared Colors --- */
.highlight-green {
    color: #00a859; /* Meshwar Brand Green */
}

/* --- Logo Placement --- */
.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 4rem; /* Sits cleanly near the top */
}

.main-logo {
    width: 150px; 
    height: auto;
}

/* --- Text Content Block --- */
.text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 1rem; /* Tight spacing below the app icon */
}

.brand-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -1px;
    margin-bottom: 0.2rem;
}

.brand-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333333;
    letter-spacing: 2.5px;
    margin-bottom: 3rem; /* Pushes the 'Coming Soon' section down */
}

.coming-soon-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.coming-soon-block h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 8px; /* Wide tracking from the concept */
    margin-bottom: 1rem;
    margin-right: -8px; /* Offsets the visual imbalance caused by the last letter's spacing */
}

.divider {
    width: 40px;
    height: 2px;
    background-color: #00a859;
}

.description {
    font-size: 1.05rem;
    line-height: 1.6;
    
    /* 1 & 2: Darker color and slightly thicker font */
    color: #111111;
    font-weight: 500;
    
    /* 3: A subtle white glow to separate text from the background */
    text-shadow: 0px 1px 4px rgba(255, 255, 255, 0.9), 
                 0px 2px 10px rgba(255, 255, 255, 0.8);
}

/* --- Locations Row --- */
.locations-row {
    display: flex;
    justify-content: center;
    gap: 0; /* Removed the gap so the invisible boxes touch */
    width: 100%;
    margin-top: 2rem;
    padding: 0 2%;
}

.location-icon {
    width: 400px; /* Scaled down slightly so all 4 fit on the screen */
    
    /* THE MAGIC FIX: The negative margin pulls them together, overlapping the invisible padding */
    margin: 0 -80px; 
    
    height: auto;
    transition: transform 0.2s ease;
}

.location-icon:hover {
    transform: translateY(-5px); 
}

/* --- Form Section --- */
.form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 5rem;
    padding-bottom: 4rem; /* Space before the footer */
}

.form-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 1.5rem;
}

.signup-form {
    display: flex;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.8); /* Slight transparent white background behind inputs */
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    justify-content: center;
}

.signup-form input {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.95rem;
    outline: none;
    min-width: 200px;
    font-family: 'Montserrat', sans-serif;
}

.signup-form input:focus {
    border-color: #00a859;
}

.submit-btn {
    padding: 12px 25px;
    background-color: #00a859;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    background-color: #008f4c;
}

.form-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 5px;
}


/* --- Driver CTA --- */
.driver-cta {
    margin-top: 1.2rem;
    font-size: 0.9rem;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wheel-icon {
    color: #666666;
}

.driver-cta a {
    color: #00a859;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.driver-cta a:hover {
    color: #008f4c;
}

/* --- Footer Section --- */
.site-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2rem;
    margin-top: -1rem; /* Pulls the footer slightly closer to the form block */
}

.footer-divider {
    width: 60%;
    max-width: 500px;
    border: none;
    border-top: 1px solid #e0e0e0;
    margin-bottom: 1.5rem;
}

.copyright {
    font-size: 0.8rem;
    color: #888888;
    font-family: 'Montserrat', sans-serif;
}
/* --- Driver CTA --- */
.driver-cta {
    margin-top: 1.2rem;
    font-size: 0.9rem;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wheel-icon {
    color: #666666;
}

.driver-cta a {
    color: #00a859;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.driver-cta a:hover {
    color: #008f4c;
}

/* --- Footer Section --- */
.site-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2rem;
    margin-top: -1rem; /* Pulls the footer slightly closer to the form block */
}

.footer-divider {
    width: 60%;
    max-width: 500px;
    border: none;
    border-top: 1px solid #e0e0e0;
    margin-bottom: 1.5rem;
}

.copyright {
    font-size: 0.8rem;
    color: #888888;
    font-family: 'Montserrat', sans-serif;
}
