/* Global styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    background-color: #07111b;
    /* deep blue-black */
    color: #f5e0a8;
    /* soft gold */
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #07111b;
    color: #f7e4b4;
    padding: 24px 48px;
}

/* Top bar */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #f7e4b4;
    font-size: 14px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #f7e4b480;
    font-size: 14px;
}

.contact-text {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.contact-separator {
    width: 1px;
    height: 18px;
    background-color: #f7e4b450;
}

/* Hero / center content */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    text-align: center;
}

.logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* Center logo image */
.logo-image {
    max-width: 320px;
    width: 50vw;
    height: auto;
    display: block;
    margin: 0 auto;
    animation: logoFadeIn 1.4s ease-out forwards;
    opacity: 0;
}

/* Footer */
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
    padding-bottom: 8px;
}

.footer-link {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-decoration: none;
    color: #f7e4b4;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-link:hover {
    color: #f0c26a;
    transform: translateY(-1px);
}

/* Small hover / interaction detail */
.logo-block:hover .logo-image {
    transform: scale(1.02);
}

/* Keyframe animations */
@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    60% {
        opacity: 1;
        transform: translateY(0) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animated background glow */
@keyframes pageGlow {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 50% 100%;
    }

    100% {
        background-position: 100% 0%;
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .page {
        padding: 16px 20px;
    }

    .top-bar {
        justify-content: center;
    }

    .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}