/* Include the Salty Feathers font */
@font-face {
    font-family: 'NOIRetBLANC-Regular';
    src: url('/fonts/NOIRetBLANC-Regular.woff2') format('woff2'),
         url('/fonts/NOIRetBLANC-Regular.woff') format('woff'),
         url('/fonts/NOIRetBLANC-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NOIRetBLANCMediumBold';
    src: url('/fonts/NOIRetBLANCMediumBold.woff2') format('woff2'),
         url('/fonts/NOIRetBLANCMediumBold.woff') format('woff'),
         url('/fonts/NOIRetBLANCMediumBold.ttf') format('truetype');
    font-weight: bold;
    font-style: bold;
}

/* Ensure the body and html take up the full height */
html, body {
    height: 100%;
    margin: 0;
    font-family: 'NOIRetBLANC-Regular', serif; 
}

/* Fullscreen image container */
.fullscreen-image {
    background-image: url('/images/wedding/weddingcover.jpeg'); /* Replace with your image URL */
    background-size: cover; /* Make sure the image covers the whole screen */
    background-position: center; /* Center the image */
    height: 100vh; /* Fullscreen height */
    position: relative; /* So the text can be positioned relative to this div */
}

/* Top left corner links */
.top-links {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'NOIRetBLANCMediumBold', serif; 
}

.top-links a {
    color: white;
    text-decoration: none;
    font-size: 1.4em;
    margin-right: 30px; /* Space between links */
}

.top-links a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Centered text */
.centered-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the text */
    color: white; /* Set the text color */
    text-align: center; /* Center the text alignment */
}

.centered-text h1 {
    font-size: 4em; /* Large classy font */
    margin: 0;
    padding: 0;
}

.centered-text p {
    font-size: 2em; /* Smaller font for the date */
    margin: 10px 0 0 0; /* Space between text and date */
}

/* Responsive Adjustments (Optional) */
@media (max-width: 768px) {
    .centered-text {
        top: 65%;
    }

    .centered-text h1 {
        font-size: 3em;
    }

    .centered-text p {
        font-size: 2em;
    }

    .top-links {
        left: auto;  /* Reset left position */
        right: 20px; /* Move links to the right side */
        text-align: right; /* Align text to the right */
    }

    .top-links a {
        font-size: 1.2em;
        margin-bottom: 5px;
        color: black;
        margin-right: 0px; /* Space between links */
        margin-left: 30px; /* Space between links */
    }
}