/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Salsa&display=swap');

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.34);  
    backdrop-filter: blur(7px);
}

.navbar .navbar-brand {
    font-family: 'Salsa', cursive;
    font-size: 2em;
    text-shadow: 2px 2px 0 rgb(46, 46, 46);
}

.navbar li {
    border-radius: 50%;
    background-color: #cea52b;
    transition: .3s;
    padding: 0 2px;
}

.navbar li:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 10px 3px rgba(0, 0, 0, 0.2);
}

.navbar ul li a {
    color: white;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: .3s;
}

/* Gallery */
.gallery {
    background-color: #EDEAE7;
}

.gallery .breadcrumb {
    background-color: #ddd;
    padding: 20px;
}

.gallery .breadcrumb li {
    font-size: 1.4em;
    font-family: 'Lato', sans-serif;
}

.gallery .enkapculation {
    border: 7px solid #EDEAE7;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.2);
}

.gallery span {
    background-color: rgba(0, 0, 0, 0.501);
    opacity: 0;
    transition: .3s;
    color: white;
    font-size: 2.5em;
}

.gallery span:hover {
    opacity: 1;
    backdrop-filter: blur(4px);
}

.gallery .fa-magnifying-glass {
    transition: .3s;
}

.gallery .fa-magnifying-glass:hover {
    color: gold;
    transform: scale(1.2);
}

.gallery ul .page-item a {
    transition: .3s;
    color: rgba(0, 0, 0, 0.785);
}

.gallery ul .page-item a:hover {
    background-color: rgba(0, 0, 0, 0.785);
    color: white;
}

.gallery ul .page-tiga a {
    background-color: rgba(0, 0, 0, 0.785);
    color: white;
}

/* Sub Footer */
.sub-footer h4 {
    font-weight: 600;
}

.sub-footer {
    font-family: 'Lato', sans-serif;
    background-color: #ddd;
}

.sub-footer span {
    color: rgba(0, 0, 0, 0.726);
}

.sub-footer a {
    color: rgba(0, 0, 0, 0.726);
    margin: 10px 0;
    font-size: 16px;
}

.sub-footer a:hover {
    font-weight: bold;
    color: rgb(154, 131, 2);
}

.sub-footer span {
    color: rgba(0, 0, 0, 0.726);
}

.sub-footer .row {
    padding-bottom: 50px;
    border-bottom: 5px solid rgba(0, 0, 0, 0.726);
}

/* Footer */
footer {
    background-color: #ddd;
    padding: 20px 0;
    font-family: 'Lato', sans-serif;
}

/* Chat WhatsApp */
.chat-whatsapp .chat {
    width: 130px; 
    border-radius: 30px; 
    border: 3px solid white;
    transition: .3s;
    background-color: rgb(21, 177, 21);
}

.chat-whatsapp .chat:hover {
    background-color: #f0d06c;
    color: white;
}

.chat-whatsapp .chat a {
    font-size: 1.8em; 
    font-family: 'Lato', sans-serif;
    color: white;
}

.chat-whatsapp .chat i {
    margin-left: 5px;
} 

/* Responsive Breakpoint */
@media (max-width: 576px) {
    .header h1 {
        font-size: 40px;
    }

    .navbar li {
        border-radius: 30px;
        background-color: rgb(208, 177, 2);
        transition: .3s;
        width: 200px;
        display: flex;
        justify-content: center;
    }
}