
/* ===== GLOBAL ===== */
:root{
    --primary-color: #000000;
    --secondary-color: #FBB034;
    --tertiary-color: #FFFFFF;
    --quaternary-color: #9A9A9A;
    --quintenary-color: #565656;
    --backgroundtext-color:#EDEDED;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
h1{
    font-size: 48px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: var(--tertiary-color);
}
h2{
    font-size: 16px;
    color: var(--secondary-color);
}
p{
    font-size: 21px;
}
ul{
    list-style: none;
    align-items: center;
    gap: 100px;
}
/* ===== END GLOBAL ===== */

/* ===== HEADER ===== */
#header-elements{
    display: flex;
    font-size: 15px;
    font-weight: bold;
    color: var(--tertiary-color);
}
#header-elements>li:hover{
    color: var(--secondary-color);
    cursor: pointer;
}
#logo{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--tertiary-color);
}
#logo>p{
    font-size: 24px;
    font-family: "Archivo Black", sans-serif;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* ===== END HEADER ===== */

/* ===== HERO ===== */
#hero{
    background-image: url(imgs/backgound.png);
}

#mainContainer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
#hero-text{
    justify-self: center;
    width: 90%;
}
#hero-text>p{
    color: var(--quaternary-color);
}

#hero-text>div{
    display: flex;
    gap: 20px;
    padding-top: 100px;
}

/* ===== END HERO =====*/

/* ===== ABOUT =====*/
#about-text>p{
    color: var(--quintenary-color);
    padding-bottom: 50px;
}
#about-text>h1{
    color: var(--primary-color);
}

#about{
    background-image: url("imgs/WE ARE OPEN 1.png");
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}
#about-img{
    position: relative;
    width: 600px;
    height: 676px;
    align-self: center;
    z-index: 1;
}
#about-text{
    align-self: center;
    z-index: 1;
}
#about>h1{
    color: var(--backgroundtext-color);
    position: absolute;
    font-size: 120px;
    justify-self: center;
    top: 100px;
    z-index: 0;
    pointer-events: none;
}
.img{
    position: absolute;
    width: 266px;
    height: 366px;
    top: 60px;
    border: 10px solid var(--tertiary-color);
}
.img1{
    top: 260px;
    left: 420px;
    z-index: 1;
}
.img2{
    top: 100px;
    left: 200px;
    z-index: 1;
}
.img3{
    left: 420px;
    z-index: 0;
}
/* ===== END ABOUT =====*/

/* ===== CONTACT =====*/
#contact{
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://png.pngtree.com/thumb_back/fh260/background/20250112/pngtree-modern-barbershop-interior-with-empty-black-chairs-wooden-walls-and-mirrors-image_16867937.jpg");
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 510px;
    align-items: center;
}
#contact-text{
    padding: 40px;
}
#contact-text>p{
    color: var(--quaternary-color);
    padding-bottom: 20px;
}
#contact-text>button{
    color: var(--tertiary-color);
    margin-top: 50px
}
#contact-content{
    display: flex;
    flex-direction: column;
    justify-self: center;
    background-color: var(--tertiary-color);
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    width: 320px;
    height: 280px;
}
#contact-content>p{
    font-size: 30px;
}
/* ===== END CONTACT =====*/

/* ===== TRANSITIONS =====*/
.transition-dark-to-light{
    width: 100%;
    height: 10px;
    background: linear-gradient(var(--primary-color), var(--tertiary-color));
}
.transition-light-to-dark{
    width: 100%;
    height: 10px;
    background: linear-gradient(var(--tertiary-color), var(--primary-color));
}
/* ===== END TRANSITIONS =====*/

/* ===== BUTTONS =====*/
.btn-primary{
    width: 182px;
    height: 52px;
    border-radius: 10px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 15px;
    font-weight: bolder;
}
.btn-secondary{
    width: 182px;
    height: 52px;
    border-radius: 20px;
    background-color: transparent;
    border: 1px solid var(--tertiary-color);
    font-size: 15px;
    font-weight: bold;
    color: var(--tertiary-color);
}
/* ===== END BUTTONS =====*/

