html,
body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    scroll-padding-top: 100px;
}



/*For light mode and Dark Mode*/
.light-mode {
    background: linear-gradient(45deg, #FFFFFF, #E0E0E0, #c4c4c4, #ababab);
    background-size: 800% 800%;
    color: #000000;
}

.dark-mode {
    background: linear-gradient(45deg, #000000, #2E2E2E, #5C5C5C, #8A8A8A);
    background-size: 800% 800%;
    color: #ffffff;
}



/*For removing the default link style*/
a,
.accordion-body a {
    text-decoration: none;
    color: inherit
}

a:focus,
a:active {
    outline: none
}



/*Navigation part*/
#nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
}

#nav-bar h3 {
    margin: 0;
    font-weight: 700;
    font-family: Poppins;
    color: #9b58ff
}



/*Footer part*/
#footer {
    text-align: center;
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 20px 0px 10px 0px;
}



/*Link Page*/
#more-site {
    display: flex;
    flex-direction: column;
}

.visit {
    font-family: Poppins;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 20px;
}

.visit-page {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 20px;
}

.visit-page .card {
    box-shadow: 0 4px 10px #3b3b3b;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.visit-page .card:hover {
    transform: scale(1.10);
    z-index: 10px;    
}

.visit-page .card-title {
    text-align: center;
}

.visit-page .card-text {
    height: 150px;
    font-family: Roboto;
    font-weight: bold;
    text-align: justify;
    hyphens: auto;
    opacity: 90%;
}

.visit-page img {
    height: 200px;
}

.visit-page a:hover {
    transform: translateY(-3px);
    box-shadow: 2px 2px 2px #DAA520;
}



/*Banner*/
#banner {
    margin-top: 150px;
}

.header h1 {
    margin-bottom: 50px;
    text-align: center;
}

.header p {
    text-align: justify;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    opacity: 70%;
}

.title-head {
    margin: 0;
    font-weight: 700;
    font-family: Poppins;
    text-shadow: rgb(161, 123, 27, 07) 2px 2px 2px;
}

.capture {
    display: flex;
    margin: 0px auto 0px auto;
    justify-content: center;
    align-items: center;
}

.capture img {
    width: 400px;
    height: 300px;
    margin: 20px 0px 20px 0px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.3s ease forwards;
    animation-delay: 0.5s;
}

.break-line {
    border: none;
    height: 3px;
    background-color: #999999;
    box-shadow: rgb(161, 123, 27, 0.7) 2px 2px 2px;
    margin: 20px 0;
}



/*Images Collection*/
.section-line {
    border: none;
    border-top: 2px solid #B0B0B0;
    align-self: center;
}

#landscape-head {
    margin-top: 200px;
    position: relative;
    overflow: hidden;
}

#flower-head,
#sky-head {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

#landscape,
#flower,
#sky {
    margin-top: 40px;
}

#landscape-container,
#flower-container,
#sky-container {
    text-align: center;
    margin: 0px auto;
    display: flex;
}

#landscape-image,
#sky-image {
    width: 500px;
    height: 300px;
    margin: 20px 0px 20px 0px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.1);
}

#flower-image {
    width: 350px;
    height: 400px;
    margin: 20px 0px 20px 0px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.1);
}

.slide-image {
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

/*Description*/
#landscape-title,
#flower-title,
#sky-title {
    font-family: Poppins;
    font-weight: 700;
    text-align: center;
}

#landscape-description,
#flower-description,
#sky-description {
    font-size: 18px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    text-align: justify;
    hyphens: auto;
    opacity: 60%;
}

.accordion-button {
    text-decoration: underline;
    font-family: Poppins;
    font-weight: 700;
}

.accordion-button:hover {
    color: #DAA520;
    transition: all ease 0.3s;
}

.container {
    margin-bottom: 100px;
}

/*Collection Button*/
.change-image {
    text-align: center;
}

.slide {
    background-color: #DAA520;
    border: transparent;
    border-radius: 5px;
    font-size: 20px;
    padding: 5px 10px 5px 10px;
    transition: all ease 0.3s;
}

.accordion-body a:hover {
    color: #9b58ff;
}



/*Animation Behavior*/
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/*Mobile version*/
@media (max-width: 550px) {
    .capture {
        display: none;
    }

    #landscape-image,
    #sky-image {
        width: 350px;
        height: 200px;
    }

    .header p {
        font-size: 16px;

    }
}