@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');

.container-park {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

.header-park {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-top: 30px;
}

.header-park h1 {
    width: 550px;
    font-family: 'Cinzel', serif;
    font-size: 30px;
    color: #F9ECB4;
    font-weight: 400;
    line-height: 1.2;
}
h1 span{
    margin-left: 40%;
}

.header-park p {
    width: 40%;
    margin-left: 39%;
    text-align: left;
    font-family: 'Garamond', serif;
    font-weight: 400;
    font-size: 18px;
    color: #F9ECB4;
    line-height: 1.6;
    margin-top: 20px;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-gallery {
    display: flex;
    flex-wrap:nowrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.image-box {
    width: 300px;
    text-align: center;
}
.image-box-first{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.image-box-second{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-box-first img {
    width: 320px;

    text-align: center;
}
.image-box-second img{
    width: 251px;
    text-align: center;
}
.image-box img {
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-box p {
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    font-size: 16px;
    margin-top: 10px;
    color: #f9ecb4;
}

.description {
    text-align: left;
    font-family: 'Garamond', serif;
    font-weight: 400;
    width: 52%;
    margin: 0 auto;
    font-size: 18px;
    color: #c9c9c9;
    line-height: 1.6;
    margin-left: 30%;
}
.description span {
    margin-left: 30%;
}
.image-container-3d {   
    width: 100%; 
    height: 500px;
    background-size: cover;
    left: 0 ;
    background-position: center;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
    background-image: url('../assets/lanscaped.png');
}
.image-container-3d-p{
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -15px;
    font-size: 18px;
    font-family: 'Garamond', serif;
    font-weight: 400;
    color: #f9ecb4;
}

.learn-more-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin: 0;
}

.learn-more-button {
    color: #F9ECB4;
    border: 1px solid #F9ECB4;
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 1rem;
    margin: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.learn-more-button:hover {
    background-color: #F9ECB4;
    color: #2A3B4C;
}
@media (max-width: 768px) {
    .image-box-first,
    .image-box-second {
        display: none;
    }

    .image-gallery {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .image-box:nth-child(3){
        width: 90%;
        margin-left: 30%;
        font-size: 16px;
    }
    .header-park h1 {
        width: 99%;
        font-size: 24px;
        margin: 0 auto;
        text-align: center;
        text-align: left;
        line-height: 1.3;
    }
    h1 span {
    
    }

    .image-box-lake{
       width: 300px;
    }

    .header-park p {
        padding: 15px;
        width: 80%;
        margin-left: 31%;
        text-align: left;
        font-size: 16px;
    }

    .description {
        text-align: left;
         
       width: 100%;
         margin: 0 auto;
        font-size: 16px;
        line-height: 1.4;
    }
    
    .description span {
           margin-left: 18%;
    }

    .image-container-3d {
        height: 300px;
        background-position: center;
        background-size: cover;
    }

    .image-container-3d-p {
        font-size: 16px;
    }

    .learn-more-button {
        width: 40%;
        font-size: 0.9rem;
        padding: 10px 0px;
    }
    .image-box p {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-park h1 {
        width: 99%;
        margin: 0 auto;
        text-align: center;
        text-align: left;
        line-height: 1.3;
        font-size: 20px;
    }
    .image-box:nth-child(3){
        width: 90%;
        margin-left: 30%;
        font-size: 16px;
    }

    .header-park p {
        font-size: 14px;
    }

    .description {
       
        font-size: 14px;
    }
    .description p {
    }
    .image-container-3d {
        height: 200px;
    }

    .image-container-3d-p {
        font-size: 14px;
    }

    .learn-more-button {
        width: 60%;
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    .learn-more-section img {
        width: 30%;
    }
}


