/* 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{
    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: TITLE PAGE */
#title-section{
    height: 100vh;
}   

/* Parallax Background */
#hero{
    position: relative;
    height: 100vh;
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

}

#parallax-wrapper{
    width: 100%;
    height: 100vh;

    position: absolute;
    pointer-events: none;
}

/* Targets the parallax images*/
div[id*=parallax-bg-]{ 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;

    width: 100%;
    height: 100dvh;

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Setting the images for the parallax divs */
#parallax-bg-1{background-image: url(IMAGES/Parallax\ 1.gif);}
#parallax-bg-2{background-image: url(IMAGES/Parallax\ 2.png);}
#parallax-bg-3{background-image: url(IMAGES/Parallax\ 3.png);}
#parallax-bg-4{background-image: url(IMAGES/Parallax\ 4.png);}
#parallax-bg-5{background-image: url(IMAGES/Parallax\ 5.png);}

/* Call to action button */
.action-btn{
    margin: 0 300px 0 300px;
    z-index: 1;
}

.scroll-btn {
    display: inline-block;
    margin-top: -10px;
    padding: 10px 20px; 

    background-color: #FFEF9F;
    color: #BC3908;

    font-family: 'Pangolin', sans-serif;
    font-weight: 100;
    font-size: 2em;

    text-decoration: none;
    text-transform: uppercase;

    border: 1.5px solid #BC3908;
    border-radius: 5px;
    transition: background-color 0.3s, filter 0.3s;
}

.scroll-btn:hover {
    filter: drop-shadow(1px 2px 2px #BC3908);
    background-color: #ffffff;
}

/* SECTION 02: TRAILER-DOWNLOAD */
.container{
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 35px;
}

.trailer-section{
    padding: 60px 0;
    background: url(IMAGES/Paw\ Print\ BG.png);
    height: 90dvh;
}

/* Heading */
.trailer-section h1{
    font-family: 'Gomarice', sans-serif;
    font-size: 4em;
    font-weight: 100;
    color: #ffffff;

    text-transform: uppercase;
    text-shadow: 1px 1px 8px rgba(188, 57, 8, 1);
    
    margin-top: 20px;
    text-align: center;
}

.trailer-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

/* VIDEO CONTAINERS */
.video-container{
    flex: 1;
    padding: 10px;

    background-color: #fff188;
    border: 4px solid #3423A6;
}

.video-container video{
    width: 100%;
    height: auto;
}

/* TRAILER CAPTIONS */
.caption-container{
    flex: 1;
    padding: 20px;
    margin-left: -70px;
}

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

    text-align: center;
    margin: 0 40px 40px 40px;
    color: #1c6ad7;
}

/* TRAILER DESCRIPTION */
.caption-container p{
    font-family: 'Pangolin', sans-serif;
    font-size: 1.5em;

    text-align: justify;
    margin: 40px 60px 0 60px;
    color: #F65F28;
}

.caption-container hr{
    border: 1px solid #DC6BAD;
    width: 80%;
}

/* DOWNLOAD FOOTER */
.download-section {
    margin-top: 70px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-radius: 10px;
    padding: 20px;
    background-color: #3423A6;
}

/* DOWNLOAD: HEADING */
.download-section h3 {
    font-family: 'Gomarice', sans-serif;
    font-weight: 100;
    font-size: 1.8em;

    margin: 0 30px 0 10px;
    color: #fff188;
}

/* DOWNLOAD: DOWNLOAD BUTTONS AND LINKS */
.download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-buttons a {
    margin: 0 10px;
    transition: 0.3s;
}

/* HOVER ANIMATION ON DOWNLOAD BUTTONS */
.download-buttons a:hover {
    transform: translateY(-3px);
    filter: drop-shadow(1px 2px 4px #FFCF56);
}

.download-buttons img {
    width: 150px;
}

/* SECTION 03: CHARACTERS-Humans */
.characters-section{
    background: url(IMAGES/Character\ Select.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100dvh;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.heading-container {
    display: flex;
    align-items: center;
    margin-top: -450px;
}

.main-heading {
    font-family: 'Gomarice', sans-serif;
    font-size: 6em;

    margin: 0 50px 0 80px;
    color: #DC6BAD;
}

.sub-heading {
    font-family: 'Pangolin', sans-serif;
    font-size: 1.5em;
    font-weight: 100;

    text-align: justify;
    line-height: 35px;

    margin: -20px 80px 0 0;
    color: #F65F28;
}

/* SECTION 04: USE LOVE */
.use-love-section {
    display: flex;
    height: 100vh;
}

/* Left Side */
.left-side {
    flex: 1;
    overflow: hidden;
}

.left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side */
.right-side {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 20px;
    margin-top: 40px;
}

.main-heading-1 {
    font-family: 'Gomarice', sans-serif;
    font-size: 5em;

    text-align: justify;
    margin: 0 30px 20px 40px;
    color: #DC6BAD;
}

.sub-heading-1 {
    text-align: justify;

    font-family: 'Gomarice', sans-serif;
    font-weight: 100;
    font-size: 2.5em;

    line-height: 50px;
    margin: 0 30px 20px 40px;
    color: #1c6ad7;
}

/* Lower half of the right side */
.subheading-container {
    display: flex;
    align-items: center;
}

.small-image {
    width: 150px; 
    height: auto;
    margin: 30px 0 0 30px;
}

.sub-heading-2 {
    text-align: justify;

    font-family: 'Pangolin', sans-serif;
    font-weight: 100;
    font-size: 1.7em;
    
    line-height: 40px;
    margin: -40px 30px 0 40px;
    color: #F65F28;
}

/* Use of <span> tag */
.highlight{
    background-color: #fcfbb5;
    color: #DC6BAD;
    border-radius: 10px;
}

/* SECTION 05: PET CARE */
.pet-care-section {
    width: 100%;
    height: 100dvh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgb(230,243,255);
    background: linear-gradient(0deg, rgba(230,243,255,1) 0%, rgba(230,243,255,1) 17%, rgba(230,243,255,1) 27%, rgba(230,243,255,1) 38%, rgba(255,255,255,1) 60%);
}

/* Pet Care Headings */
.headings{
    position: absolute;
    z-index: 5;
    text-align: center;
    margin-top: -350px;
    margin-bottom: 80px; 
}

.headings h3{
    font-family: 'Pangolin', sans-serif;
    font-size: 1.5em;
    font-weight: 100;

    color: #F65F28;
    margin-bottom: 10px; 
}

.headings h1{
    font-family: 'Gomarice', sans-serif;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 2.5em;
    color: #1c6ad7;
}

/* Wrapper for the cards */
.wrapper {
    display: flex;
    justify-content: space-around;
    
    width: 100%;
    margin-top: 140px;
}

.card {
    width: 320px;
    height: 400px;
    padding: 2rem 1rem;

    background: #ffffff;

    position: relative;
    display: flex;
    align-items: flex-end;

    box-shadow: 2px 2px 3px #BC3908;
    transition: 0.5s ease-in-out;
}

/* Hover animation for the card */
.card:hover {
    transform: scale(1.05);
}

/* Card image */
.card img {
    width: 100%;
    height: auto;
    
    object-fit: cover;

    position: absolute;
    top: 0;
    left: 0;
}

.card-info{
    position: relative;
    color: #FFFFFF;
    transform: translateY(30px);
}

/* Card Heading */
.card-info h1{
    font-family: 'Gomarice', sans-serif;
    font-weight: 100;
    
    margin-bottom: 20px;
    text-align: center;
    color: #DC6BAD;
}

/* Card Description */
.card-info p{
    font-family: 'Pangolin', sans-serif;
    font-size: 1.2em;
    margin-bottom: 30px;

    text-align: justify;
    line-height: 25px;
    color: #F65F28;
}

/* SECTION 06: ENDING SECTION / MEET THE CATS */
.ending-section {
    background: url(IMAGES/Cats\ eating.png);
    background-repeat: none;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh; /* Full viewport height */
}

.text-container {
    text-align: center;
}

/* Heading */
.farewell {
    font-family: 'Gomarice', sans-serif;
    font-size: 4em;

    text-align: center;
    margin: -250px 0 40px 0;
    color: #007bff;
}

.love-highlight{
    color: #DC6BAD;
}

/* Sub-heading */
.farewell-sub {
    font-family: 'Pangolin', sans-serif;
    font-size: 1.8em;
    font-weight: 100;

    text-align: center;
    margin: 0 250px 40px 250px;
    color: #F65F28;
}

/* 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;
}
