/* Fonts */
@font-face {
    font-family: 'Playfair Display';
    src: url('playfair-display-latin-500-normal.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('playfair-display-latin-500-italic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
}

/* Body */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.fullscreen-image {
    background: url('/assets/fullscreen-image.jpg') center/cover no-repeat;
    height: 80vh;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 200px 0;
    text-align: center;
}

.header h1 {
    color: white;
    margin: 50px 0 0 0;
    font-style: italic;
    font-size: 30px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header p {
    color: #ffffff;
}

.header img {
    max-width: 400px;
    margin-bottom: 10px;
}

/* Additional Links */
.additional-links {
    text-align: center;
    margin: 0 0 20px 0;
}

.additional-links a {
    margin: 0 15px;
    font-size: 0.8em;
    color: #e80a7e;
    text-decoration: none;
    transition: color 1s, border-width 0.5s;
}

.additional-links a:hover {
    color: orange;
}

/* Footer */
.footer {
    background-color: white;
    color: black;
    padding: 10px;
    text-align: center;
    flex-shrink: 0;
}

.footer .contact-info {
    margin-bottom: 15px;
}

.footer .contact-info p {
    margin: 5px 0;
}

.footer a {
    color: #e80a7e;
    margin: 5px 0;
    text-decoration: none;
    transition: color 1s, border-width 0.5s;
}

.legal-links span {
    margin: 0 15px;
    color: #999;
}

.footer .contact-info a {
    font-size: 1em;
}

.footer .links a:hover,
.footer .contact-info a:hover {
    color: orange;
}

/* Media Query for Desktop */
@media (min-width: 600px) {
    .footer {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer > * {
        flex: 1;
    }

    .footer > *:last-child {
        margin-right: 0;
    }

    .footer .contact-info,
    .footer .links {
        display: flex;
        flex-direction: column;
        align-self: flex-start;
    }
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}
