:root{
    --ff-sans: 'Poppins', sans-serif;
 
    --fw-light: 200;
    --fw-normal: 400;
    --fw-bold: 600;

    --fs-200: 0.3 rem;
    --fs-250: 0.5 rem;
    --fs-300: 0.75 rem;

    --fs-400: 1 rem;
    --fs-500: 1.25rem;
    --fs-600: 1.5rem;  
    --fs-700: 1.75rem;  
    --fs-800: 2.5rem; 
    --fs-900: 3.5rem;

}

*,
*::before,
*::after {

    box-sizing: border-box;

}

html{
    font-family: var(--ff-sans);
    font-weight: var(--fw-normal);
    line-height: 1.7;
    padding: 0;

}

body{
    margin:0;
    background-color: rgb(255, 255, 255);
}


h1,
h2,
h3 {
    line-height: 1.1;
}


/* NAV section*/


.navbar {
    display: flex;

    justify-content: flex-end;
    align-items: center;
    background-color: rgb(150, 150, 150);
    padding: 15px 8%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .brand-title {
    font-size: var(--fs-500);
    font-weight: var(--fw-bold);
}

.navbar-links {
    display: flex;
    display: auto;
}

.navbar-links ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
}

.navbar-links li {
    padding: 5px 15px;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

.navbar-links a:hover {
    color: black;
    transition: 0.4s;
}

.navbar-links a.active {
    color: rgb(125, 162, 179);
    background-color: rgb(45, 45, 45);
    border-radius: 5px;
    padding: 5px 15px;
}

.navbar-links a.cta {
    color: yellow;
    background-color: rgb(45, 45, 45);
    border-radius: 5px;
    padding: 5px 15px;
}

.toggle-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}



/*MAIN SECTION*/

main{
    /* border: 2px solid green; */
}


.wrapper{
max-width:1250px;
margin-inline: auto;
flex:auto;
flex-wrap:wrap;
flex-direction: column;
/* border: 2px solid green; */
}

.wrapper--narrow img{
height:350px;
max-width:350px;
}

/*HEADER SECTION*/

header{
text-align: center;
margin-inline: auto;
margin-block: 4 rem;
/* border: 2px solid red; */
}

.layout-grid{
--gap:1rem;
display:flex;
gap: var(--gap);
}


.layout-grid >*{
flex:1;
}

.col{
/* border:3px solid blue; */
display: grid;
align-content: center;
gap: var(--gap);
}

h1{
color:rgb(40, 40, 40);
font-size: var(--fs-500);
font-weight: var(--fw-normal);
padding-top: 100px;
text-align:left;
}


h2{
color:rgb(40, 40, 40);
text-align: center;
font-size: var(--fs-400);
font-weight: var(--fw-normal);
margin-top:10px;
}

h3{
color:rgb(40, 40, 40);
font-size: var(--fs-300);
font-weight: var(--fw-normal);
text-align: left;
}

.layout-grid p{
color:rgb(40, 40, 40);
letter-spacing: 1px;
font-size: var(--fs-600);
padding-left: 2%;
font-weight: var(--fw-normal);
}

.gallery-section p{
color:rgb(40, 40, 40);
font-size:16px;
letter-spacing: 1px;
padding: 4%;
text-align: left;
line-height: 28px;
}

.wrapper--narrow{
width:900px;
align-content: center;
text-align: left;
margin-inline: auto;
margin-block: 2 rem;

}


/*gallery section*/

.picture-area{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;

}

.gallery-section {
    height:auto;
    /* padding-bottom: 25px; */
}

.gallery{
    /*these are the pictures in the gallery area*/
    display: inline-block;
    /* border:1px solid hsl(0,0%,50%); */
    margin:20px;
    background-color:  rgb(255, 255, 255);
    text-align: center;
    justify-content: space-around;
}




.gallery img:hover{
    border: 1px solid hs(0,0%,10%);
    transform:scale(1.25);
}
.gallery img{
    max-width: 250px;
    max-height: 250px;
    align-self: center;
}


.gallery-text{
    color: black;
    text-align:left;
    font-size:16px;
    padding-top: 25px;
    margin-bottom: 5px;
}

.gallery-text hr{
    max-width: 80%;
}


/*footer section*/

footer{
	background-color: rgb(150, 150, 150);
	color: black;
	text-align: left;
	padding: 10px;
    border: 2px green;
}

.footer-container{
    width: 1140px;
    margin: auto;
    display: flex;
    justify-content: left;
    flex-wrap:wrap;
    flex-direction: row;
}





.footer-content{
    width: 25%;
}

.footer-content p{
    width:190px;
    margin: auto;
    line-height: var(--fs-400);
}


.footer h3{
    text-align:left;
    padding:0px;
}
.footer-content ul{
    text-align: left;
}
.list{
    padding: 0;
}
.list li{
    width: auto;
    text-align: left;
    list-style-type:none;
    padding: 2px;
    position: relative;
}
.list li::before{
    content: '';
    position: absolute;
    transform: translate(-50%,-50%);
    left: 10%;
    top: 100%;
    width: 0;
    height: 2px;
    background: black;
    transition-duration: .5s;
}
.list li:hover::before{
    width: 60px;
}
.social-icons{
    text-align: left;
    padding: 0;
}
.social-icons li{
    display: inline-block;
    text-align: left;
    padding: 5px;
}
.social-icons i{
    color: white;
    font-size: 25px;
}
a{
    text-decoration: none;
}
a:hover{
    color: black;
}
.social-icons i:hover{
    color: black;
}
.bottom-bar{
    background: rgb(120, 120, 120);
    text-align: left;
    padding: 10px 0;
    margin-top: 50px;
}
.bottom-bar p{
    color: #343434;
    margin: 0;
    font-size: 16px;
    padding: 7px;
}