:root {
    --dark: #1C1C1C;
    --brown: #4E342E;
    --brown-light: #7C5E4B;
    --gray: #B0AFAF;
    --light: #F5F5F5;
    --fs-52: 52px;
    --fs-45: 45px;
    --fs-35: 27px;
    --fs-28: 20px;
    --fs-22: 16px;
}

* {
    font-family: "Outfit", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    padding: 0 5rem;
}

#app {
    min-height: 100vh;
    /* overflow: hidden; */
}

.btn {
    width: 100%;
    background-color: var(--brown-light);
    outline: 0;
    border: unset;
    color: var(--light);
    font-size: var(--fs-28);
    padding: 10px;
    cursor: pointer;
}

.btn:hover {
    background-color: #4E342E;
}

.alert {
    width: 100%;
    background-color: rgb(0, 182, 0);
    font-size: var(--fs-22);
    color: var(--light);
    text-align: center;
    padding: 15px;
    border-radius: 3px;
    margin-bottom: 30px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    padding: 20px 35px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

nav.navbar-light,
nav.navbar-light .icons path {
    color: var(--light);
    fill: var(--light);
}

.nav-logo {
    font-size: var(--fs-35);
    font-weight: bold;
    text-transform: uppercase;
}

.nav-logo .logo {
    width: 25%;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-size: var(--fs-28);
    text-transform: capitalize;
    padding: 0;
    margin: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: unset;
    font-weight: normal;
    text-decoration: none;
}

nav .icons {
    width: 35px;
}

nav .icons path {
    fill: var(--dark);
}

#nav-toggle {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

#sidebar {
    background-color: var(--light);
    padding: 20px 35px;
    width: 25%;
    height: 100vh;
    position: fixed;
    top: 0;
    transition: all .8s ease-in-out;
    z-index: 20;
    overflow-y: auto;
}

#sidebar .logo {
    width: 50%;
}

.sidebar-overlay {
    position: absolute;
    top: 0;
    left: -150rem;
    width: 100%;
    height: 100vh;
    background-color: #1c1c1c34;
    z-index: 5;
    transition: all .5s ease-in-out;
}

#sidebar .icons {
    width: 35px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 35px;
    font-weight: bold;
}

#sidebar #close-sidebar {
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.sidebar-menu .mobile {
    display: none;
}

.sidebar-menu,
.dropdown-menu {
    padding: 0;
    margin: 0;
    gap: 30px;
}

.sidebar-item,
.dropdown-item {
    display: flex;
    justify-content: start;
    align-items: center;
    list-style: none;
    font-size: var(--fs-28);
    margin-bottom: 25px;
    width: 100%;
    position: relative;
}

.sidebar-item .has-dropdown {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
}

.sidebar-item.dropdown {
    flex-direction: column;
    align-items: start;
}

.sidebar-link,
.dropdown-link {
    width: 100%;
    text-decoration: none;
    color: unset;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}

.sidebar-item .dropdown-button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.dropdown-menu {
    padding-left: 50px;
    padding-top: 10px;
    display: none;
}

.dropdown-item {
    margin-bottom: 15px;
}

.sidebar-item:not(.dropdown)::after,
.sidebar-item.dropdown .has-dropdown::after,
.dropdown-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--dark);
    transition: width 0.3s ease;
}

.sidebar-item:not(.dropdown):hover::after,
.sidebar-item.dropdown .has-dropdown:hover::after,
.dropdown-item:hover::after {
    width: 100%;
}

.sidebar-item.dropdown .has-dropdown::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--dark);
    transition: width 0.3s ease;
}

.has-dropdown {
    position: relative;
}








#hero {
    z-index: -1;
}

.swiper-container {
    display: block;
    position: relative;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.swiper-item {
    flex: 0 0 100%;
    text-transform: capitalize;
    position: relative;
    letter-spacing: 2px;
}

.swiper-item .swiper-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.swiper-body {
    font-size: var(--fs-45);
    color: var(--light);
    position: absolute;
    top: 35%;
    left: 20%;
    transform: translate(-35%, -20%);
}

.swiper-category {
    color: var(--brown-light);
    font-family: 'Josefin Sans', sans-serif;
}

.swiper-title {
    font-weight: bold;
    max-width: 50vw;
}

.swiper-date {
    font-size: var(--fs-22);
    color: var(--gray);
    font-family: 'Josefin Sans', sans-serif;
}

.swiper-link {
    position: absolute;
    bottom: 15%;
    left: 10%;
    transform: translateX(-10%);
    font-size: var(--fs-28);
    color: var(--light);
    text-decoration: none;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
    font-family: 'Josefin Sans', sans-serif;
    z-index: 5;
}

.swiper-item img {
    width: 30%;
}

.click-area {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
}

.click-left {
    left: 0;
    cursor: url('../icons/arrow-left.svg'), auto;
}

.click-right {
    right: 0;
    cursor: url('../icons/arrow-right.svg'), auto;
}

.click-area:hover {
    background: rgba(255, 255, 255, 0.05);
    /* cursor: pointer; */
}







#cta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: relative;
    gap: 5px;
    margin-bottom: 30px;
}

#cta .item {
    width: 100%;
    height: 250px;
    margin: 0;
    padding: 0;
    position: relative;
}

#cta .item a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-decoration: none;
    font-size: 35px;
    z-index: 10;
    font-weight: bold;
    transition: ease-in-out .5s;
}

#cta .item:hover a {
    top: 40%;
    transition: ease-in-out .5s;
}

#cta .item img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

#cta .item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.229);
    z-index: 1;
}











#schedule {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    padding: 0rem;
    border-bottom: 3px solid var(--brown-light);
    margin-bottom: 3.5rem;
}

#schedule h1 {
    font-size: var(--fs-45);
    text-transform: capitalize;
}

.schedule .item {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
    font-size: var(--fs-28);
    margin-bottom: 10px;
}

.schedule img {
    width: 25px;
}










#guide {
    margin-bottom: 5rem;
}

#guide h1 {
    font-size: var(--fs-45);
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 50px;
}

#guide .section-body {
    text-transform: capitalize;
    display: grid;
    grid-template-columns: 50% 50%;
    justify-items: center;
    align-items: start;
    font-size: var(--fs-28);
    gap: 30px;
}

#guide img {
    width: 25px;
}

#guide ul {
    margin-top: 30px;
}

#guide li {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}

#guide .numbering {
    color: var(--gray);
    letter-spacing: 5px;
    font-size: larger;
    width: 52px;
}


#publication h1,
#collection h1 {
    font-size: var(--fs-45);
}

#publication .section-header,
#collection .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#publication .section-link,
#collection .section-link {
    font-size: var(--fs-28);
    color: var(--brown-light);
    display: flex;
    justify-content: start;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.section-link img {
    width: 20%;
}

















.article .section-header {
    text-align: center;
    padding: 10rem 0;
    background-image: url('../images/header-categories.png');
    background-size: cover;
    background-position: center;
    color: var(--light);
    position: relative;
}

.article .section-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1c1c1c67;
}

.article .section-header * {
    z-index: 2;
    position: relative;
}

.article .section-title {
    font-size: var(--fs-52);
}

.article .section-description {
    font-size: var(--fs-28);
}









.publication-categories-container {
    padding: 3rem 0;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 15px;
}

.publication-categories .item {
    position: relative;
    overflow: hidden;
    width: 420px;
    height: 420px;
    margin-bottom: 15px;
}

.publication-categories .item:hover img,
.publication-categories .item:hover::after {
    transform: scale(1.1);
}

.publication-categories .item img {
    width: 420px;
    height: 420px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.publication-categories .item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 420px;
    height: 420px;
    z-index: 1;
    background: linear-gradient(#1c1c1c00, #1C1C1C);
    transition: transform 0.3s ease;
}

.publication-categories .item-body {
    position: absolute;
    bottom: -15px;
    left: 10px;
    width: 250px;
    max-height: 30%;
    padding: 10px;
    color: var(--light);
    z-index: 2;
    transition: all 0.5s ease-in-out;
}

.publication-categories .item:hover .item-body {
    bottom: 0;
    left: 10px;
    width: 100%;
    max-height: 100%;
    opacity: 1;
    pointer-events: auto;
}

.publication-categories .item .category {
    background-color: var(--brown-light);
    padding: 10px;
    text-transform: capitalize;
    width: fit-content;
    font-size: var(--fs-28);
    font-family: 'Josefin Sans', sans-serif;
    margin-bottom: 15px;
}

.publication-categories .item-body .title,
.publication-categories .item-body .description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.publication-categories .item .description {
    -webkit-line-clamp: 3;
}

.publication-categories .item .title {
    font-size: var(--fs-28);
    font-family: 'Josefin Sans', sans-serif;
    -webkit-line-clamp: 1;
    margin-bottom: 5px;
}

.publication-categories .item-body .description {
    max-width: 350px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease 0.5s, transform 0.3s ease 0.5s;
}

.publication-categories .item:hover .item-body .description {
    opacity: 1;
    transform: translateY(0);
}








.collection-categories:not(#collection) .section-header {
    background-image: url('../images/header-collections.jpg');
}

.collection-categories select {
    margin-top: 10px;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--light);
    border: 3px solid var(--light);
    display: inline;
    outline: 0;
    font-size: var(--fs-22);
}

.collection-categories select option {
    color: var(--dark);
}

.collection-categories-container {
    padding: 3rem 0;
}

.collection-categories-container .category-body {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px;
    padding: 1.5rem 0;
}

.category-header {
    width: 100%;
}

.category-name {
    font-size: var(--fs-45);
    color: var(--dark);
    position: relative;
    text-transform: capitalize;
}

.category-name span {
    padding-right: 50px;
    background-color: white;
    z-index: 2;
    letter-spacing: 5px;
}

.category-name::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--brown);
    z-index: -1;
}

.collection-categories a {
    color: unset;
    text-decoration: none;
}

.collection-categories .item {
    position: relative;
    overflow: hidden;
    width: 400px;
    height: fit-content;
    margin-bottom: 30px;
}

.collection-categories .item img {
    width: 400px;
    height: 250px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.collection-categories .identity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.collection-categories .date {
    font-size: var(--fs-22);
    color: var(--brown-light);
}

.collection-categories .item .category {
    background-color: var(--brown-light);
    padding: 5px 10px;
    text-transform: capitalize;
    width: fit-content;
    font-size: var(--fs-22);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 5px;
    color: var(--light);
}

.collection-categories .item-body .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: var(--fs-35);
    font-family: 'Outfit', sans-serif;
    -webkit-line-clamp: 1;
    margin-bottom: 5px;
    color: var(--dark);
}






.search-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 3px solid var(--brown);
    gap: 5px;
}

.search {
    padding: 20px 0;
    width: 100%;
    outline: none;
    border: unset;
    color: var(--brown);
    font-size: large;
}

.detail-page {
    padding-top: 10rem;
}

.detail-page .row {
    display: grid;
    grid-template-columns: 60% auto;
    gap: 150px;
}

.detail-page .main-thumbnail {
    width: 100%;
    position: relative;
}

.detail-page .breadcrumbs {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 3px;
    padding: 0;
    margin-bottom: 20px;
}

.detail-page .breadcrumb-item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-page .breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin: 0 8px;
    color: var(--brown-light);
    font-weight: bold;
    font-size: var(--fs-28);
    font-family: 'Josefin Sans', sans-serif;
}

.detail-page .breadcrumb-item a {
    text-decoration: none;
    color: var(--brown-light);
    font-weight: bold;
    font-size: var(--fs-28);
    font-family: 'Josefin Sans', sans-serif;
}

.detail-page .breadcrumb-item.active a {
    color: var(--brown);
}

.detail-page .title {
    font-size: var(--fs-45);
    color: var(--dark);
    font-family: 'Josefin Sans', sans-serif;
    margin-bottom: 10px;
}

.detail-page .identity {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: var(--fs-22);
}

.detail-page .description {
    font-size: var(--fs-28);
}

.detail-page .image {
    /* min-height: 42rem; */
    position: relative;
    margin-bottom: 50px;
}

.album {
    margin-top: 15px;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px;
    /* position: absolute; */
    /* bottom: 0; */
    /* left: 0; */
    width: fit-content;
}

.album-item {
    border: 3px solid var(--brown-light);
    transition: all .2s ease-in-out;
}

.album img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}

.album-item:hover {
    border: 5px solid var(--brown-light);
}

.recomendation-container {
    padding: 3rem 0;
    display: grid;
    grid-template-columns: auto;
    gap: 15px;
    place-items: center;
}

.recomendation-container .item {
    position: relative;
    overflow: hidden;
    width: 320px;
    height: 320px;
    margin-bottom: 15px;
}

.recomendation-container .item:hover img,
.recomendation-container .item:hover::after {
    transform: scale(1.1);
}

.recomendation-container .item img {
    width: 420px;
    height: 420px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.recomendation-container .item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 420px;
    height: 420px;
    z-index: 1;
    background: linear-gradient(#1c1c1c00, #1C1C1C);
    transition: transform 0.3s ease;
}

.recomendation-container .item-body {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 250px;
    max-height: 30%;
    padding: 10px;
    color: var(--light);
    z-index: 2;
    transition: all 0.5s ease-in-out;
}

.recomendation-container .item:hover .item-body {
    bottom: 0;
    left: 10px;
    width: 100%;
    max-height: 100%;
    opacity: 1;
    pointer-events: auto;
}

.recomendation-container .item .category {
    background-color: var(--brown-light);
    padding: 10px;
    text-transform: capitalize;
    width: fit-content;
    font-size: var(--fs-28);
    font-family: 'Josefin Sans', sans-serif;
    margin-bottom: 15px;
}

.recomendation-container .item-body .title,
.recomendation-container .item-body .description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
}

.recomendation-container .item .description {
    -webkit-line-clamp: 3;
}

.recomendation-container .item .title {
    font-size: var(--fs-28);
    font-family: 'Josefin Sans', sans-serif;
    -webkit-line-clamp: 1;
    margin-bottom: 5px;
}

.recomendation-container .item-body .description {
    max-width: 350px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease 0.5s, transform 0.3s ease 0.5s;
}

.recomendation-container .item:hover .item-body .description {
    opacity: 1;
    transform: translateY(0);
}
















.about {
    padding: 10rem 15rem;
}

.about .section-header {
    font-size: var(--fs-52);
    text-align: center;
    text-transform: capitalize;
    font-family: 'Josefin Sans', sans-serif;
    margin-bottom: 3rem;
}

.about .tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    padding: 0;
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    margin-bottom: 2rem;
}

.about .tab {
    cursor: pointer;
    list-style: none;
    color: var(--gray);
}

.about .tab.active {
    color: var(--dark);
}

.about hr {
    margin-bottom: 2rem;
    border-color: var(--brown);
}

.about .tab-content {
    display: none;
}

.about .tab-content.active {
    display: block;
}








.tourism {
    padding: 5rem 10rem;
}

.tourism .section-header {
    font-size: var(--fs-52);
    text-align: center;
    text-transform: capitalize;
    font-family: 'Josefin Sans', sans-serif;
    margin-bottom: 3rem;
}

.tourism .section-body {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 30px;
}

.tourism .list {
    height: fit-content;
    max-height: 100vh;
    overflow-y: auto;
    border: 1px solid var(--gray);
    border-radius: 3px;
}

.tourism #map {
    width: 100%;
    height: 100vh;
    position: relative;
    /* atau absolute */
    z-index: 1;
}

.tourism .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 1rem;
    border-bottom: 2px solid var(--brown-light);
    margin-bottom: 30px;
    cursor: pointer;
}

.tourism .item.active {
    border: 2px solid var(--brown-light) !important;
}

.tourism .item:last-child {
    border-bottom: unset;
}

.tourism-title,
.tourism-location,
.tourism-description {
    font-size: var(--fs-22);
    margin-bottom: 15px;
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 10px;
    font-family: 'Josefin Sans', sans-serif;
}

.tourism-location {
    color: var(--brown-light);
}

.tourism-description {
    color: var(--gray);
}

.tourism .item img.cover {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
}

#map {
    height: 600px;
    /* Atur tinggi peta sesuai kebutuhan Anda */
    width: 100%;
}







.contact {
    padding: 10rem;
}

.contact .section-header {
    margin-bottom: 3rem;
    text-transform: capitalize;
    text-align: center;
}

.contact .section-title {
    font-size: var(--fs-52);
    font-family: 'Josefin Sans', sans-serif;
}

.contact .section-description {
    font-size: var(--fs-28);
}

.contact .guide-book {
    width: 100%;
}

.contact input,
.contact textarea {
    display: block;
    width: 100%;
    border: 2px solid var(--brown-light);
    outline: 0;
    padding: 15px 25px;
    margin-bottom: 30px;
}

.contact .section-body {
    display: grid;
    grid-template-columns: 50% 50%;
    justify-items: center;
    align-items: start;
}

.contact .biodata {
    padding: 0;
    margin: 0;
}

.contact .biodata li {
    list-style: none;
    font-size: var(--fs-28);
    margin-bottom: 25px;
}

.contact .biodata span {
    font-weight: bold;
    color: var(--brown-light);
}







footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    place-items: center;
    background-color: var(--brown);
    color: var(--light);
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
    margin-top: 3rem;
    gap: 30px;
}

footer .logo {
    width: 50%;
}

.footer-title {
    font-size: var(--fs-28);
    font-weight: bold;
    margin-bottom: 30px;
}

.footer-content {
    font-size: var(--fs-22);
}

.socials {
    display: grid;
    grid-template-columns: auto auto;
    gap: 15px;
    place-items: center;
}

.socials a {
    text-decoration: none;
    color: unset;
    font-size: var(--fs-22);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-22);
}

.socials img {
    width: 20%;
}

.copyright {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    color: var(--light);
    font-size: var(--fs-22);
    background-color: var(--brown);
    border-top: 2px solid var(--light);
}




/* CSS for the Modal */
.modal-overlay {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1000;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.6);
    /* Black background with opacity */
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
    /* Show the modal */
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content h2 {
    margin-top: 0;
    color: #333;
}

.modal-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 10px 0;
}

.modal-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.modal-link:hover {
    background-color: #0056b3;
}





@media (max-width: 767.98px) and (orientation: portrait) {

    .container {
        padding: 0 2.5rem;
    }

    .nav-logo .logo {
        width: 30%;
    }

    nav .icons {
        width: 50px;
    }

    .nav-item:not(:last-child) {
        display: none;
    }

    #sidebar {
        width: 70%;
    }

    #sidebar .logo {
        width: 40%;
    }

    .sidebar-menu .mobile {
        display: flex;
    }









    .swiper-body {
        font-size: var(--fs-35);
        color: var(--light);
        position: absolute;
        top: 35%;
        left: 30%;
        transform: translate(-35%, -30%);
    }

    .swiper-item .swiper-img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: left;
    }




    #cta {
        display: grid;
        grid-template-columns: 1fr;
    }









    #schedule {
        grid-template-columns: 100%;
        gap: 30px;
    }

    #schedule h1,
    #guide h1 {
        font-size: var(--fs-35);
    }
















    #guide .section-body {
        grid-template-columns: 100%;
        gap: 30px;
    }

    #guide li {
        display: block;
    }

    #publication h1,
    #collection h1 {
        font-size: var(--fs-35);
    }

    #collection .section-header {
        flex-direction: column;
        align-items: start;
    }










    .publication-categories-container {
        padding: 1rem 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        place-self: center;
    }

    .publication-categories .item {
        width: 300px;
        height: 300px;
    }

    .publication-categories .item-body {
        bottom: 10px;
        left: 10px;
    }














    .collection-categories-container .category-body {
        grid-template-columns: 1fr;
        place-self: center;
    }

    .collection-categories .item {
        width: 300px;
        height: 300px;
    }

    .collection-categories .item img {
        width: 300px;
        height: 200px;
    }






    .detail-page {
        padding: 10rem 1.5rem;
    }

    .detail-page .row {
        grid-template-columns: 1fr;
    }

    .detail-page .main-thumbnail {
        width: 30%;
        place-items: center;
    }

    .album {
        grid-template-columns: auto auto;
    }

    .detail-page .title {
        font-size: var(--fs-35);
    }





    .tourism {
        padding: 5rem 2rem;
    }

    .tourism .section-body {
        grid-template-columns: 1fr;
        place-items: center;
    }

    .tourism .list {
        max-height: 45vh;
    }

    .tourism #map {
        height: 250px;
    }




    .about {
        padding: 5rem;
    }

    .about .section-header {
        font-size: var(--fs-45);
    }




    .contact {
        padding: 6rem 2rem;
    }

    .contact .section-header {
        font-size: var(--fs-45);
    }

    .contact .section-body {
        grid-template-columns: 100%;
    }

    .contact .guide-book {
        margin-bottom: 30px;
    }









    footer {
        grid-template-columns: 1fr;
        place-items: start;
    }

    .socials {
        grid-template-columns: auto auto;
    }
}

@media (max-width: 1080px) and (orientation: portrait) {

    .container {
        padding: 0 2.5rem;
    }

    .nav-logo .logo {
        width: 30%;
    }

    nav .icons {
        width: 50px;
    }

    .nav-item:not(:last-child) {
        display: none;
    }

    #sidebar {
        width: 70%;
    }

    #sidebar .logo {
        width: 40%;
    }

    .sidebar-menu .mobile {
        display: flex;
    }









    .swiper-body {
        font-size: var(--fs-35);
        color: var(--light);
        position: absolute;
        top: 35%;
        left: 30%;
        transform: translate(-35%, -30%);
    }




    #cta {
        display: grid;
        grid-template-columns: 1fr;
    }







    #schedule {
        grid-template-columns: 100%;
        gap: 30px;
    }

    #schedule h1,
    #guide h1 {
        font-size: var(--fs-35);
    }
















    #guide .section-body {
        grid-template-columns: 100%;
        gap: 30px;
    }

    #guide li {
        display: block;
    }

    #publication h1,
    #collection h1 {
        font-size: var(--fs-35);
    }

    #collection .section-header {
        flex-direction: column;
        align-items: start;
    }










    .publication-categories-container {
        padding: 1rem 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        place-self: center;
    }

    .publication-categories .item {
        width: 300px;
        height: 300px;
    }

    .publication-categories .item-body {
        bottom: 10px;
        left: 10px;
    }














    .collection-categories-container .category-body {
        grid-template-columns: 1fr;
        place-self: center;
    }

    .collection-categories .item {
        width: 300px;
        height: 300px;
    }

    .collection-categories .item img {
        width: 300px;
        height: 200px;
    }






    .detail-page {
        padding: 10rem 1.5rem;
    }

    .detail-page .row {
        grid-template-columns: 1fr;
    }

    .detail-page .main-thumbnail {
        width: 100%;
        place-items: center;
    }

    .detail-page .breadcrumbs .breadcrumb-item a {
        font-size: var(--fs-22);
    }

    .album {
        grid-template-columns: 1fr 1fr;
        position: relative;
        gap: 5px;
    }

    .detail-page .title {
        font-size: var(--fs-35);
    }





    .tourism {
        padding: 5rem 2rem;
    }

    .tourism .section-body {
        grid-template-columns: 1fr;
        place-items: center;
    }

    .tourism .list {
        max-height: 45vh;
    }

    .tourism #map {
        height: 250px;
    }




    .about {
        padding: 5rem;
    }

    .about .section-header {
        font-size: var(--fs-45);
    }




    .contact {
        padding: 6rem 2rem;
    }

    .contact .section-header {
        font-size: var(--fs-45);
    }

    .contact .section-body {
        grid-template-columns: 100%;
    }

    .contact .guide-book {
        margin-bottom: 30px;
    }









    footer {
        grid-template-columns: 1fr;
        place-items: start;
    }

    .socials {
        grid-template-columns: auto auto;
    }
}






@media screen and (max-height: 1920px) {
    #app {
        min-height: 65vh;
        /* overflow: hidden; */
    }

    .about,
    .contact {
        padding-top: 10rem;
    }
}