html {
    height: 100%;
    width: 100%;
}
body {
    background-image: url("../img/DSC03753.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -5;
}
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: -1;
}
.navbar {
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom: solid 0.5px gray;
    position: fixed;
    width: 100%;
    transition: background 0.5s ease-in-out;
}
.navbar-transparent {
    background: rgba(0, 0, 0, 0.7);
}
.navbar-scrolled {
    background: rgba(0, 0, 0, 1);
}
.active {
    color: white !important;
    text-decoration: underline;
    text-decoration-style: solid;
    text-underline-offset: 6px;
}
.nav-link {
    color: lightgray;
    margin-left: 2px;
}
.nav-link:hover {
    color: whitesmoke !important;
}
.navbar-toggler {
    border: 0.5px solid white;
}
.navbar-toggler:hover {
    border: 0.5px solid white;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7);
}
.navbar-toggler:focus {
    border: 0.5px solid white;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7);
}
.bi-list {
    color: white;
}
.hero-content {
    height: 75dvh;
    display: flex;
    align-items: center;
}
.about-intro {
    background-color: white;
}
.invite {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.arrow:hover{
    transition: all 0.25s ease;
    transform: scale(1.2);
}
.about-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#about-text {
    text-align: justify;
    color: black;
}
.btn-readmore {
    border-radius: 2px;
}
.latest {
    background-color: rgb(205, 249, 255);
}
.latest-content {
    display: grid;
    align-items: center;
    justify-content: center;
}
.gallery {
    display: grid;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
.image-box img {
    border-radius: 2px;
}
.image-overlay {
    width: 100%; height: 100%;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    color: white;
    transform: translate(0, -100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 1));
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.image-box:hover .image-overlay {
    opacity: 1;
}
.footer {
    background-color: rgb(32, 32, 32);
    color: white;
}
.socials-box a {
    text-decoration: none;
    font-size: x-large;
    margin-right: 10px;
    color: white;
}
.bi-instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); /* Instagram gradient */
    background-clip: text;
    -webkit-background-clip: text; /* Clip gradient to the text */
    -webkit-text-fill-color: transparent; /* Make text transparent to reveal gradient */
}
.bi-facebook {
    background-color: #4267B2;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-box a {
    text-decoration: none;
    color: rgb(10, 226, 255);
    transition: all 0.25s ease-in-out;
}
.contact-box a:hover {
    text-decoration: none;
    color: rgb(10, 137, 255);
}
.policy-box a {
    text-decoration: none;
    color: rgb(10, 226, 255);
    transition: all 0.25s ease-in-out;
}
.policy-box a:hover {
    text-decoration: none;
    color: rgb(10, 137, 255);
}
.copy-box {
    display: flex;
    align-items: end;
}
.subscribe input[type="email"] {
    background-color: rgb(8, 8, 8);
    border-radius: 0px;
    color: white;
    border: 1px solid white;
    box-shadow: none;
}
.subscribe input[type="email"]::placeholder {
    color: rgb(207, 207, 207);
}
.subscribe input[type="submit"] {
    background-color: white;
    border-radius: 0px;
    border: 1px solid white;
    color: black;
}
.subscribe input[type="submit"]:focus {
    background-color: rgb(151, 151, 151);
    border-radius: 0px;
    border: 1px solid rgb(151, 151, 151);
    color: black;
}

/* Media queries */
@media (min-width: 2002px) {
    .container {
        max-width: 1660px;
    }
}

@media (max-width: 768px) {
    .footer .row {
        gap: 20px;
    }
    .copy-box {
        display: block;
    }
    .navbar {
        background: rgba(0, 0, 0, 1);
    }
    .latest-content h3 {
        display: grid;
        justify-content: center;
        align-items: center;
    }
    #about-text {
        padding: 0 10px;
    }
    #hero-text {
        color: rgb(228, 215, 215);
    }
}