*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;

    
}

body::-webkit-scrollbar {
    display: none;
  }

:root {
    --primary: #F5F5F5;
    --secondary: #1A1919;
    --orange: #FFBD59;
    --green: #71816D;
    --rich: #131B23;
}

body {
    background-color: var(--primary);
    font-family: "Montserrat";
}


/* navbar -> */
.container-fluid {
    padding: 0 10%;
    background-color: transparent;
    position: fixed;
    z-index: 1;
}

.navbar {
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 10px;
    background-color: var(--secondary);
    border-radius: 25px;
}



.navbar-brand {
    margin: 0;
}

.logo {
    width: 15%;
    border-radius: 15px var(--secondary);
}


.nav-item {
    padding: 0 25px;
}

.nav-link {
    color: #F5F5F5;
    font-weight: 400;
    font-size: 1.3rem;
}

.nav-link:hover {
    color: #ffbd59;
}
/* <- navbar */


/* hero section -> */
.hero {
    height: 100vh;
    /*background-image: linear-gradient(white, white, #FFBD59);*/
}

.hero-info {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90vh;
    background-image: url("hero.jpg");
    background-position: center;
    background-size: cover;
    border-bottom-left-radius: 25%;
    border-bottom-right-radius: 25%;
    z-index: -1;

}



.back-tint::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 93vh;
    background-color: rgba(0, 0, 0, 0.5); /* Change the color and opacity as needed */
    border-bottom-left-radius: 25%;
    border-bottom-right-radius: 25%;
    z-index: -1;
   
  }

.hero p {
    padding-top: 30px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;

}

.hero-info h1 {
    padding-top: 100px;
    font-size: 3.5rem;
    font-weight: 900;
    color: lightgray;
    z-index: 1;

}


.hero-info h2 {
    font-family: "Sacramento";
    font-size: 6.5rem;
    font-weight: bold;
    position: relative;
    padding-top: 10px;
    color: var(--orange);
}

.hero-services {
    text-align: center;
    padding-top: 30px;
}

.hero-services h4{
    font-size: 1.2rem;
    font-weight: 400;
    padding: 15px;
    color: var(--primary);
    display: inline;
}



.hero-info {
    color: var(--primary);
}


.call-to-action {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
  
}

.cta-btn {
    background-color: var(--orange);
    color: var(--secondary);
    padding: 10px 40px;
    border-radius: 5px;
    border-color: var(--primary);
    font-size: larger;
    font-weight: 600;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: var(--green);
    color: white;
}



/* <- hero section */


/* about -> */
#about {
    background-color: var(--orange);
    min-height: 100vh;
    padding: 10%;
    margin-top: 100px;
    border-radius: 25%;
 
}

.about-tint::before {
    padding-top: 30px;
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(189, 189, 189, 0.5); /* Change the color and opacity as needed */
    border-radius: 15%;
    z-index: -1;
   
  }

.about-content {
    color: #333332;
    border-radius: 20px;
    padding: 0rem;
}


.about-img {
    background-image: url(/about.jpg);
    height: 100%;
    width: 90%;
    background-size: cover;
    border-radius: 100px;
    border: 15px solid rgba(56, 54, 54, 0.477);
}

.about-h2 {
    text-align: left;
    font-size: 4rem;
    font-weight: 600;
}

.about-content h2 {
    font-size: 3.5rem;
    font-weight: 600;
    padding-top: 4%;
    color: var(--rich);

}

.about-p {
    margin: 0;
    text-align: justify;
    text-justify: inter-word;

}

.about-content p {
    font-size: 1.2rem;
    padding-top: 5%;
    padding-bottom: 2%;
    line-height: 2;

}
/* <- about */

.space-div {
    height: 15vh;

}

.space {
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
    height: 15vh;
    width: 50%;
    background-image: url(/space.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Services -> */

#services {
    background-color: var(--primary);
    padding: 10% 5%;
    border-radius: 20%;
}

.services-tint::before {
    padding-top: 30px;
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #71816d77; 
    border-radius: 20%;
    z-index: -1;
   
  }

.services-h2 {
    color: rgb(41, 40, 40);
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
}

.services-p {
    width: 50%;
  
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 50px;


}

#services img{
    height: 200px;

}

#services .info {
    display: flex;
    justify-content: center;
    padding: 20px 30px 20px 30px;
 
}

.services-btn {
    background-color: var(--rich);
    color: var(--primary);
}


/* <- Services */

/* Contact -> */
#contact {
    background-color: var(--primary);
    padding: 10% 15%;
    min-height: 40vh;
}

.contact-h1 {
    color: rgb(41, 40, 40);
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    padding-bottom: 5%;
}

.contact-info {
    width: 100%;
}

.contact-message {
    height: 200px;
}

/* <- Contact */

.service-page-header {
    background-color: var(--orange);
    padding: 20px;
}


/* footer */
.footer {
    min-height: 20vh;
    background-color: var(--secondary);
    padding-top: 40px;
    color: white;

}

.logo-footer {
    background-image: url("/patcoLogo.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 250px;
    height: 100px;
}

.foot {
    display: flex;
    justify-content: center;
}

.footer-nav {
    padding: 20px;

}

.footer-nav a {
    text-decoration: none;
    color: var(--primary);
}

.copyright {
    padding-top: 2rem;
    padding-left: 200px;
    padding-bottom: 30px;
    font-size: 0.8rem;
    text-align: left;
}

/* Responsive adjustment */
@media screen and (max-width: 992px) {
    .logo {
      width: 30%;
    }
    .hero-info{
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }
    .back-tint::before {
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }
    .hero-info h1 {
        font-size: 2rem;
    }
    .hero-info h2 {
        font-size: 2.5rem;
    }
    .hero-services {
        padding: 10px;
    }
    #hero h4 {
        display: flex;
        flex-direction: column;
        padding: 2px;
        font-size: 0.8rem;
    }
    #about{
        padding-top: 12%;
        border-radius: 50px;
    }

    .about-content {
        padding: 1rem;
    }
    .about-content h2 {
        font-size: 2.5rem;
    }
    .about-content p {
        font-size: 1rem;
        padding: 50px 0;
    }
    .about-img{
        display: none;
    }
    .space {
        width: 100%;
    }
    #services{
        padding-top: 16%;
        border-radius: 50px;
    }
    .services-p{
        width: 80%;
    }
    .services-h2{
        padding-top: 2%;
        font-size: 2.5rem;
    }
    .contact-h1{
        padding-top: 2%;
        font-size: 2.5rem;
        text-align: left;
    }
    .footer-nav {
        padding-left: 80px;
    }
    .copyright{
        padding-left: 60px;
    }

  }