@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@400;700&display=swap');

:root {
    --primary-color: #002d5c;
    --accent-color: #00a8e8;
    --text-color: #ffffff;
    --bg-overlay: rgba(0, 45, 92, 0.85);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    min-height: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-rows: 1fr auto 1fr; /* Top space, content, bottom space */
    position: relative;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('bg.png') no-repeat center center/cover;
    filter: brightness(0.7);
    animation: zoomBackground 20s infinite alternate ease-in-out;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}

@keyframes zoomBackground {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

main {
    grid-row: 2;
    display: block;
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 600px;
    padding: 3rem;
    margin: 2rem auto; /* Horizontal centering, vertical spacing if grid collapses */
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: fadeIn 1.2s ease-out;
}

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

.logo-section {
    margin-bottom: 2.5rem;
}

.logo-img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    margin-bottom: 0.5rem;
}

.content-section h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
    font-weight: 300;
}

.content-section .highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 1;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.contact-item span {
    font-size: 0.95rem;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--accent-color);
}

footer {
    grid-row: 3;
    align-self: end;
    display: block;
    margin: 0 auto 2rem auto;
    font-size: 0.85rem;
    opacity: 0.8;
    letter-spacing: 1px;
    position: relative;
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 600px;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .desktop-br { display: none; }
    main {
        padding: 1.5rem 1rem;
        width: 92%;
    }
    .logo-img {
        max-height: 80px;
        margin-bottom: 1rem;
    }
    .content-section h1 {
        font-size: 1.5rem;
    }
    .content-section p {
        font-size: 1rem;
    }
    .content-section .highlight-text {
        font-size: 1.1rem;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    .contact-info {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .contact-item {
        padding: 0.6rem 0.8rem;
    }
}
