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

/* Base Styles */
html, body {
    height: 100%;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 200;
    font-size: 16px;
    color: #ffffff;
    overflow: hidden;
}

body {
    background-image: url('bg1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Blue overlay over background */
body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 79, 136, 0.55);
    z-index: 0;
}

.logo-container,
.contact-info,
.button-row {
    position: relative;
    z-index: 1;
}

/* Selection styling */
::selection { background: #183D61; }
::-moz-selection { background: #183D61; }

/* Centered logo */
.logo-container {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.logo {
    width: 330px;
    height: auto;
    max-width: 90vw;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

/* Button Row (Contact + Investor Login) */
.button-row {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(45% + 120px);
    display: flex;
    gap: 24px;
    z-index: 1;
}

/* Shared button style */
.button-row a {
    display: inline-block;
    min-width: 160px;
    text-align: center;
    padding: 10px 16px;
    border: 1px solid #ffffff;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 200;
    font-size: 0.95rem;
    color: #ffffff;
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
    transition: transform .08s ease, background .2s ease, color .2s ease;
}

.button-row a:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-1px);
}

.button-row a:active {
    transform: translateY(0);
}

/* Footer contact info */
.contact-info {
    position: absolute;
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 330px;
    max-width: 90vw;
    font-size: 0.875em;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.8);
}

.contact-info p {
    margin-bottom: 0.5em;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media screen and (max-width: 600px) {
    html, body { font-size: 15px; }
    .logo { width: 280px; }
    .button-row { top: calc(45% + 100px); gap: 16px; }
    .button-row a { min-width: 140px; }
}

@media screen and (max-width: 400px) {
    html, body { font-size: 14px; }
    .logo { width: 240px; }
    .button-row a {
        padding: 8px 12px;
        font-size: 0.9rem;
        min-width: 130px;
    }
}




