﻿/* Global styles */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background: #fff;
}

/* Coming Soon Hero */
.coming-soon-hero {
    background: linear-gradient(135deg, #0d3c75, #4b2b88);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 0 0 60px 60px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* NEW: centers logo container */
}

    .coming-soon-hero .logo {
        /*margin-bottom: 20px;*/
    }
        .coming-soon-hero .logo img {           
            width: auto;
            display: block;
            border-radius: 0px;
            filter: brightness(220); /* Temporary force highlight */
            /*box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
            /*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
        }

            .coming-soon-hero .logo img:hover {
              /*  transform: scale(1.05);*/
                /*box-shadow: 0 8px 20px rgba(0,0,0,0.15);*/
            }

    .coming-soon-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .coming-soon-hero h2 {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .coming-soon-hero p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 30px auto;
        line-height: 1.5;
    }

/* Button Container */
.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.btn-final {
    background: #ffffff;
    color: #0d3c75;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

    .btn-final:hover {
        background: #eaeaea;
        color: #0d3c75;
        transform: translateY(-2px);
    }

/* Footer */
.coming-soon-footer {
    background-color: #2d2d5c;
    color: #ddd;
    text-align: center;
    padding: 20px;
    border-top: 2px solid #444;
    font-size: 0.9rem;
}
/*.logo-container img {
    width: auto;
    height: 60px;*/ /* adjust as needed */
/*}*/

.site-header {
    background: #fff; /* or transparent if you want */
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .site-header .container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .site-header .logo img {
        height: 50px;
        width: auto;
    }
