/* style.css */
:root {
    --navy-blue: #0A192F;
    --navy-light: #112240;
    --yellow-accent: #FFC107;
    --white: #F8F9FA;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--navy-blue);
    background-image: radial-gradient(circle at top right, var(--navy-light), var(--navy-blue));
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
}

.glass-panel {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    background: var(--glass-bg);
    border: 2px solid var(--yellow-accent);
    border-radius: 50%;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--yellow-accent);
}

.btn {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: transparent;
    border: 1px solid var(--yellow-accent);
    color: var(--yellow-accent);
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* --- Add this to your style.css --- */

/* Professional Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0 15px 0;
    color: #ccc;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--glass-border);
}

.section-divider span {
    padding: 0 15px;
}

/* Location Button Grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 10px;
}

/* Specific styling for the smaller grid buttons */
.location-btn {
    margin-bottom: 0; /* Overrides the default .btn margin */
    padding: 10px;
    font-size: 13px;
    text-align: center;
    border-color: var(--glass-border);
    color: var(--white);
}

.location-btn:hover {
    border-color: var(--yellow-accent);
    color: var(--yellow-accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none; /* Keeps it subtle compared to primary buttons */
}

/* Mobile Responsiveness for the Grid */
@media (max-width: 600px) {
    .location-grid {
        grid-template-columns: 1fr; /* Stacks the buttons vertically on small phones */
    }
}

.btn:hover, .btn.primary {
    background: var(--yellow-accent);
    color: var(--navy-blue);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
}

.main-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* Add this to style.css */

/* Update your existing container to give it bottom breathing room */
.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 30px; 
}

/* The updated logos */
.main-logo {
    width: 80px; /* Slightly reduced so it doesn't overpower the text */
    height: auto;
    object-fit: contain;
}

/* The new centered text styling */
.header-title {
    letter-spacing: 2px;
    text-align: center;
    font-size: 20px;
    color: var(--white);
    margin: 0 15px; /* Keeps the logos from touching the text */
    flex: 1; /* Allows the text to take up the middle space and wrap gracefully on phones */
}

.main-logo {
    width: 90px; /* Reduced slightly to fit two logos cleanly */
    height: auto;
    object-fit: contain; /* Prevents the image from stretching */
    /* If your logos are dark, you might want to add a subtle glow: */
    /* filter: drop-shadow(0px 0px 5px rgba(255, 193, 7, 0.5)); */
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--white);
}

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    color: var(--white);
    outline: none;
}

.form-control:focus {
    border-color: var(--yellow-accent);
}

select.form-control option {
    background: var(--navy-light);
    color: var(--white);
}

/* ==========================
   TABLETS
========================== */

@media (max-width:992px){

    .glass-panel{
        max-width:650px;
        padding:30px;
    }

    .header-title{
        font-size:20px;
    }

}


/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

    body{
        justify-content:flex-start;
        padding:15px;
    }

    .glass-panel{
        padding:25px 20px;
        border-radius:12px;
    }

    .logo-container{
        flex-direction:column;
        text-align:center;
        gap:15px;
    }

    .main-logo{
        width:75px;
    }

    .header-title{
        font-size:18px;
        letter-spacing:1px;
    }

    .btn{
        padding:14px;
        font-size:15px;
    }

    .form-group{
        margin-bottom:18px;
    }

    .submenu-link{
        padding-left:30px;
        font-size:13px;
    }

}


/* ==========================
   SMALL PHONES
========================== */

@media (max-width:480px){

    body{
        padding:10px;
    }

    .glass-panel{
        padding:20px 15px;
    }

    .header-title{
        font-size:16px;
        line-height:1.5;
    }

    .main-logo{
        width:60px;
    }

    .logo-placeholder{
        width:90px;
        height:90px;
        margin-bottom:20px;
    }

    .btn{
        font-size:14px;
        padding:12px;
    }

    .location-grid{
        grid-template-columns:1fr;
        gap:10px;
    }

}