@import url('https://fonts.cdnfonts.com/css/poppins');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url(https://db.onlinewebfonts.com/c/ffe66f1f477fe14d4460f1558fd58b91?family=Deadhead+Rough);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Deadhead Rough",fantasy;
}

body {
    background-image: url('../assets/white-bg-1.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

/*Header Code*/
.header {
    position: fixed;
    top: 5%;
    height: 80px;
    width: 100%;
    display: grid;
    place-items: center;
    z-index: 100;
}

#navbar-container {
    display: flex;
    place-items: center;
    width: 90%;
    height: 80px;
    background-image: url('../assets/navbar-bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 50px;
    justify-content: space-around;
}

#logo-container {
    transition: 0.3s;
    display: flex;
    width: 350px;
}

#logo-container a {
    color: white;
    font-size: 2em;
    font-weight: 300;
    text-decoration: none;
    transition: 0.3s;
}

#logo-container:hover {
    transform: scale(1.05);
}

#logo-container a img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

#navbar {
    width: 450px;
    display: flex;
    justify-content: space-between;
}

#navbar a {
    text-decoration: none;
    font-size: 1em;
    color: white;
    font-weight: 300;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
    padding-bottom: 5px;
    padding-top: 5px;
    font-family: Poppins;
    font-weight: 500;
}

#navbar a:hover {
    color: #FFD700;
    border-bottom: 3px solid #FFD700;
}

#session-btn {
    width: 150px;
    display: flex;
    justify-content: space-between;
}

#session-btn a {
    text-decoration: none;
    font-size: 1.5em;
    color: white;
    font-weight: 300;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
    padding-bottom: 5px;
    padding-top: 5px;
}

#session-btn p {
    color: white;
    font-size: 1.5em;
    font-weight: 700;
}

#login-btn:hover {
    color: #F63E3E;
    border-bottom: 3px solid #F63E3E;
}

#signup-btn:hover {
    color: #097BE3;
    border-bottom: 3px solid #097BE3;
}

/*Main Code*/
.header-space {
    height: 160px;
    width: 100%;
}

.section {
    width: 100%;
    height: 100vh;
}

#landing-page-section {
    display: flex;
    justify-content: space-around;
    transform: translate(0px, 10vh);
    height: 80vh;
}

.lps {
    height: 65%;
    width: 40%;
}

#lps-1 {
    display: grid;
    place-content: center;
}

#lps-content h1, 
#lps-content summary {
    font-family: Poppins;
    color: #252525;
}

#lps-content h1 {
    font-variant: small-caps;
    font-size: 2em;
}

#lps-2 {
    height: 65%;
    width: 3px;
    background-color: #252525;
}

#lps-3 {
    width: 35%;
    display: grid;
    place-items: center;
}

#lps-3-container {
    height: 300px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    line-height: 3;
    transform: translate(0px, -50px);
}

#lps-3-1 img, 
#lps-3-2 img {
    height: 200px;
    width: 200px;
    border-radius: 25%;
    box-shadow: 3px 3px 10px #252525;
}

#lps-3-1, 
#lps-3-2 {
    text-align: center;
}

#lps-3-1 h1, 
#lps-3-2 h1 {
    font-size: 2em;
    font-variant: small-caps;
    font-family: Poppins;
}

/*Testimonials Code*/
#testimonials {
    height: 620px;
}

#testimonials-title {
    width: 100%;
    height: 620px;
    background-image: url('../assets/navbar-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: grid;
    place-items: center;
}

#testimonials-h1 {
    color: #FFD700;
    font-variant: small-caps;
    font-family: Poppins;
    font-size: 2em;
    margin-top: 5vh;
}

#testimonials-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10vh;
}

.tes {
    width: 40%;
    display: grid;
    place-items: center;
}

.figure-testimonials img {
    width: 200px;
    height: 200px;
    border-radius: 25%;
}

.figure-testimonials figcaption {
    text-align: center;
    color: white;
}

#t1, #t2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#pte-container {
    height: 200px;
    width: 60%;
    display: grid;
    place-items: center;
}

#t1 p, #t2 p {
    font-size: 1em;
    font-family: Poppins;
    color: white;
}

#t2 p {
    text-align: right;
}

/*Barbers Code*/
#barbers {
    display: grid;
    place-items: center;
}

#barber-h1 {
    width: 100%;
    text-align: center;
}

#barber-h1 h1 {
    font-variant: small-caps;
    font-family: Poppins;
    font-size: 2em;
}

#barbers-container {
    width: 90%;
    height: 500px;
    display: flex;
    justify-content: space-between;
}

.barber {
    height: 100%;
    width: 250px;
    background-image: url('../assets/navbar-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 25px;
    transition: 0.3s;
    display: grid;
    place-items: center;
}

.barber:hover {
    transform: scale(1.1);
}

.barber img {
    height: 200px;
    width: 200px;
    border-radius: 20px;
}

.barber figcaption {
    text-align: center;
    color: #FFD700;
}

.barber p {
    text-align: center;
    width: 95%;
    color: white;
    font-family: Poppins;
}

/*Footer Code*/
.footer {
    height: 300px;
    width: 100%;
    background-image: url('../assets/navbar-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#footer-section {
    height: 300px;
    width: 100%;
}

#footer-container {
    padding-top: 30px;
    height: 250px;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

#footer-sec-1 {
    display: flex;
    justify-content: space-between;
    height: 250px;
    width: 750px;
}

#footer-info-container {
    height: 200px;
}

#footer-info {
    transition: 0.3s;
    width: 350px;
    display: flex;
}

#footer-info a {
    color: white;
    font-size: 2em;
    font-weight: 300;
    text-decoration: none;
    transition: 0.3s;
}

#footer-info:hover {
    transform: scale(1.05);
}

#footer-info a img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

#footer-info-paragraph {
    font-family: Poppins;
    font-size: 1em;
    color: white;
}

.socmed-icons {
    height: 30px;
    width: 300px;
}

.socmed-icons img {
    height: 30px;
    width: 30px;
}

#nav-links {
    height: 250px;
    width: 150px;
    margin-right: 150px;
    line-height: .8;
}

#nav-links h1 {
    color: white;
    font-family: Poppins;
}

#nav-links-container a {
    display: block;
    text-decoration: none;
    font-family: Poppins;
    color: white;
    transition: 0.3s ease;
    line-height: 2;
}

#nav-links-container a:hover {
    transform: translate(10px, 0px);
    color: #FFD700;
}

#top-btn {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
}

#top-btn-link {
    transition: opacity 0.5s ease-in-out;
}

#top-btn-link img {
    height: 50px;
    width: 50px;
}

#top-btn-link img#top-gold {
    display: none;
}

#top-btn-link:hover img#top-white {
    display: none;
}

#top-btn-link:hover img#top-gold {
    display: inline;
    transform: scale(1.1);
}

#copyright {
    width: 100%;
    text-align: center;
    color: white;
}

#copyright p {
    font-family: Poppins;
    font-size: 1.2em;
}