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

/* --- Font Declaration --- */
/* Replace 'YourLocalFont' with the actual file name of the font shown in the image */
@font-face {
    font-family: 'EB Garamond';
    src: url('EBGaramond-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'EB Garamond', 'Times New Roman', Garamond, serif;
    color: #ffffff; /* White text */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Main Layout --- */
.landing-container {
    /* Full screen height */
    height: 100vh;
    width: 100%;

    /* Background Image Settings */
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Flexbox to organize text */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the main content */
    align-items: center;     /* Horizontally center everything */
    position: relative;
}

/* --- Typography & Positioning --- */

/* The centered text container */
.center-content h1 {
    font-size: 1.2rem; /* Adjusted to match the modest size in the image */
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center;
}

/* The bottom footer container */
.bottom-content {
    position: absolute;
    bottom: 40px; /* Spacing from the bottom edge */
    text-align: center;
}

.bottom-content p {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .center-content h1 {
        font-size: 1rem;
    }
    
    .bottom-content p {
        font-size: 0.9rem;
    }
}
