/* IMPORTED FONTS */
@import url('https://fonts.googleapis.com/css2?family=Pangolin&display=swap');

@font-face {
    font-family: 'Gomarice';
    src: url(FONTS/gomarice_gogono_cocoa_mochi.ttf);
}

/* Configuring browser settings */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    background: url(IMAGES/Paw\ Print\ BG.png);
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-thumb{
    background: rgb(225,239,246);
    background: linear-gradient(0deg, rgba(225,239,246,1) 0%, rgba(236,203,217,1) 17%, rgba(151,210,251,1) 35%, rgba(254,240,134,1) 53%, rgba(255,255,255,1) 84%);
    border-radius: 5px;
}

/* NAVIGATION MENU */
#navbar{
    position: fixed;
    top: 0;

    /* Centers the contents vertically and spaces them out horizontally */
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #FFFFFF;
    
    width: 100%;
    padding: 10px 20px;
    z-index: 2000; /* Ensures that the navbar remains above other elements */
    transition: top 0.3s;  /* Is integrated in a JS code */
}

/* Targets the content inside the unordered list */
.nav-links{
    text-transform: uppercase;
    list-style: none;
    display: flex;
}

/* List item styling */
.nav-links li{
    font-family: 'Pangolin', sans-serif;
    margin: 0 15px;
}

.nav-links li .active-link{ /* Styling for the active link */
    color: #0E1C36;
}

/* Link styling */
.nav-links a{
    display: inline-block;

    text-decoration: none;
    color: #BC3908;
    
    transition: color 0.3s, transform 0.3s;
}

/* Hover animation on the links */
.nav-links a:hover{
    color: #3423A6;
    transform: translateY(-5px);
}

/* Targets the logo container */
.logo{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Targets the image inside the logo division */
.logo img{
    height: 25px; 
    transition: filter 0.3s;
}

/* Hover animation on the logo image */
.logo img:hover{
    filter: drop-shadow(2px 4px 3px rgb(255, 213, 108)); 
}

/* SECTION 01: EXPLORE */
.slider{
    z-index: 0000;
    width: 100%;
    height: 100vh;

    overflow: hidden;
    position: relative;
}

/* IMAGES */
 .slider img{
    width: 100%;
}

.slider .slide-img{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

/* Active Slide Image */
.slider .slide-img.active{
    opacity: 1;
    visibility: visible;
}

/* Dimmed Background for the Images */
.slider::after {
    position: absolute;
    top: 0;
    left: 0;

    content: "";

    width: 100%;
    height: 100%;
    
    background: rgba(0, 23, 72, 0.623);
}

/* CAPTIONS */
.captions {
    position: absolute;
    top: 35%;
    left: 8%;

    width: 50%;
    z-index: 9999;

    display: none;

    opacity: 0;
    visibility: hidden;
    animation: textAnim 0.3s linear forwards;
}
@keyframes textAnim{
    100% {
        opacity: 1;
        visibility: visible;
    }
}

/* Styling for the active image's captions */
.captions.active {
    display: block;
}

/* HEADING */
.captions h2 {
    font-family: 'Gomarice', sans-serif;
    font-size: 3em;
    font-weight: 100;

    color: #FFFFFF;
    margin-bottom: 10px;
    text-shadow: 1px 2px 10px #c38800;
}

/* DESCRIPTION */
.captions p {
    font-family: 'Pangolin', sans-serif;
    font-size: 1.5em;
    font-weight: 100;

    line-height: 1.5em;
    text-align: justify;
    color: #ffffff;
    text-shadow: 1px 3px 4px #0E1C36;
}

/* Formatting for the slider buttons container */
.menu-bg {
    z-index: 9000;
    position: absolute;
    bottom: 20px;
    left: 50%;

    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

/* Formatting for the slider button */
.menu-bg .bg-btn {
    width: 100px;
    height: 50px;

    border: 1.5px solid #FFFFFF;
    border-radius: 2px;

    transition: border 0.3s, transform 0.3s;

    object-fit: cover;
    cursor: pointer;
    transform: scale(0);

    animation: imgBtn 0.3s linear forwards;
    animation-delay: calc(0.2s * var(--i));
}
@keyframes imgBtn {
    100% {
        transform: scale(1);
    }
}

/* Hover effect for the slider buttons */
.menu-bg .bg-btn:hover {
    border: 3px solid #00ffd5;
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Styling for the active slider button */
.menu-bg .bg-btn.active {
    border: 2px solid #00ffd5;
} 

/* FOOTER */
footer {
    background-color: #BC3908;
    color: #3423A6;

    padding: 40px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FOOTER LOGO */
.logo-heading {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 20px;
}

/* Footer Image */
.footer-logo {
    width: 100px;
    margin-bottom: 10px;
}

/* ABOUT THE DEVELOPER */
.about-us {
    margin-bottom: 20px;
}

.about-us p {
    font-family: 'Pangolin', sans-serif;
    font-size: 1em;
    font-weight: 100;

    color: #FFFFFF;
    margin: 0 auto;
    max-width: 700px;
}

/* Separator */
hr {
    border: 0;
    height: 1px;
    width: 100%;
    margin: 20px auto;
    
    background: #ffffff;  
}

/* SOCIALS */
.social-icons {
    display: flex;
    justify-content: center;
    
    margin-bottom: 20px;
    gap: 20px;
}

.social-icons a {
    font-size: 1.5em;
    color: #ffffff;
    transition: color 0.3s;
}

/* HOVER ANIMATION ON THE ICONS */
.social-icons a:hover {
    color: #00ffd5;
}

.social-icons img {
    width: 40px; 
    height: 40px;
}

.footer-copyright {
    font-family: 'Cabin', sans-serif;
    font-size: 1em;
    color: #ffffff;
}
