:root {
    /* Premium Blue Theme Palette */
    --bg-overlay-color: rgba(0, 0, 0, 0.75); /* Slightly darker for better contrast */
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --accent-color: #2976CA; /* User provided blue */
    --btn-primary-bg: #2976CA;
    --btn-primary-text: #ffffff;
    --btn-secondary-bg: transparent;
    --btn-secondary-border: #EF3F6F;
    --btn-secondary-text: #ffffff;
    
    --font-main: 'Inter', sans-serif;
}

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

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    color: var(--text-primary);
}

body {
    background-image: url('Google Gemini Image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax-like feel, keeps background stable */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
    position: relative;
}

.background-overlay {
    position: fixed; /* Covers the whole viewport even when scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-overlay-color);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    animation: fadeIn 1.5s ease-out;
    margin: auto; /* Centers content vertically if flex parent has space */
}

.logo-container .logo {
    max-width: 250px;
    width: 100%; /* Responsive width */
    height: auto;
    margin-bottom: 0.5rem;
}

.headline {
    font-size: clamp(1.8rem, 5vw, 3rem); /* Fluid typography */
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}


.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem); /* Fluid font size */
    color: var(--text-secondary);
}

.contact-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

.actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap; /* Prevent text wrapping inside button */
}

.btn-primary {
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    box-shadow: 0 4px 15px rgba(41, 118, 202, 0.4);
}

.btn-primary:hover {
    background-color: #fff;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background-color: var(--btn-secondary-border);
    color: var(--btn-secondary-text);
    box-shadow: 0 4px 15px rgba(239, 63, 111, 0.4);
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--btn-secondary-border);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .content-wrapper {
        padding: 1.5rem;
        gap: 2rem;
    }

    .logo-container .logo {
        max-width: 200px;
    }

    .actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

/* Height based media query for landscape phones */
@media (max-height: 700px) and (orientation: landscape) {
    .content-wrapper {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .headline {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .logo-container .logo {
        max-width: 150px;
        margin-bottom: 0;
    }
}
