/* MODAL CSS */
/* Modal background */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
}

/* Modal content */
.modal-content {
    background-color: #ffffff00;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border: none;
    /* width: 50%; */
    max-width: 600px;
    object-fit: cover;
}


/* Tablet besar */
@media (max-width: 1200px) {
    .modal-content {
        max-width: 520px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .modal-content {
        max-width: 460px;
    }
}

/* Mobile landscape */
@media (max-width: 768px) {
    .modal-content {
        max-width: 380px;
        padding: 15px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .modal-content {
        max-width: 92%;
        padding: 10px;
    }
}

.modal-content img {
    width: 100%;
}

/* Close button */
.close {
    color: #aaa;
    margin-left: auto;
    font-size: 28px;
    font-weight: bold;
    /* position: absolute;
    right: -10px;
    top: -10px; */
}

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

/* Optional: You can style the close button more */
.btn-close {
    padding: 10px 20px;
    background-color: #f44336; /* Red background */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-close:hover {
    background-color: #d32f2f; /* Darker red */
}

/* GLOBAL */
.gallery-items-list {
    margin-bottom: 30px;
}

.anchor-text {
    font-weight: 400;
    text-decoration: underline;
}

.etique-box {
    padding: 20px;
    text-align: center;    
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.etiquette-icon {
    width: 50px;
}

div.etique-title {
    font-family: "Lustria", serif;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1rem;
    padding: 10px 0;
}

.etique-box p {
    font-size: 14px;
}