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

:root {
    --color-orange: #d47000;
    --color-dark-blue: #22304e;
    --color-beige: #fbf8f4;
    --font-heading: Georgia, 'Times New Roman', Times, serif;
    --font-body: Helvetica, Arial, sans-serif;
}

body,
html {
    height: 100%;
    font-family: var(--font-body);
    color: var(--color-dark-blue);
    background-color: var(--color-beige);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
    /* Prevent scrolling if possible */
}

/* Background Image */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Main Card */
.card {
    background-color: rgba(251, 248, 244, 0.95);
    /* Beige with slight transparency */
    padding: 3rem 4rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

/* Logo */
.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.logo {
    max-width: 100%;
    height: auto;
    /* Adjust max-height based on the actual logo aspect ratio to keep it balanced */
    max-height: 120px;
}

/* Typography */
.title {
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.highlight {
    color: var(--color-orange);
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.subtitle {
    color: var(--color-dark-blue);
    font-size: 1.4rem;
    font-weight: 400;
}

.info-block,
.contact-block {
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-block {
    margin-bottom: 1.5rem;
}

.contact-block {
    font-weight: 700;
}

.note {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
}

/* Links */
a {
    color: var(--color-dark-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-orange);
}

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

    .highlight {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}