@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #273D55;
    scroll-behavior: smooth;
}

.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.orient-component {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #F9ECB4;

    padding: 20px;
    text-align: center;
}

.logo-hero {
    width: 18%;
    height: auto;
}

.content h2 {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-weight: 400;
    letter-spacing: 2px;
    color: #FFF8DA;
}

.content p {
    font-family: 'Garamond', serif;
    font-weight: 400;
    letter-spacing: 2px;
    color: #FFF8DA;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.content h2 {
    width: 40%;
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2; 
}



.logo {
    margin: 50px 0;
    width: 150px;
    height: auto;
}

button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #FFF8DA;
    color: #FFF8DA;
    font-size: 1.2em;
    font-family: 'EB Garamond', serif;
    cursor: pointer;
    font-weight: 400;
    transition: background-color 0.3s ease;
    border-radius: 35px;
    text-align: center;
    width: 300px;
}

button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

button span {
    margin-left: 10px;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .hero-section {
        background-position: center;
        background-size: cover;
    }

    .content h2 {
        font-size: 2.5em;
    }

    .orient-component {
        width: 90%;
        height: auto;
        margin: auto;
        margin-top: 30%;
    }

    button {
        width: 60%;
        font-size: 1em;
    }
}

@media only screen and (max-width: 480px) {
    .content h2 {
        width: 100%;
        font-size: 1.9em;
    }

    .orient-component {
        width: 84%;
        margin: auto;
        margin-top: 24%;
    }
    .orient-component p{
        width: 100%;
        font-size: 20px;
    }

    button {
        width: 80%;
        font-size: 0.9em;
    }
    .logo-hero{
        width: 65%;
        height: auto;
    }

    button {
        width: 97%;
        font-size: 1em;
    }
}
