/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

background:#161616;
color:#f2f2f2;

font-family:Georgia, serif;

line-height:1.7;

}

header{

position:sticky;
top:0;

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

padding:25px 8%;

background:#111;

border-bottom:1px solid #333;

z-index:100;

}

.logo{

font-size:32px;
letter-spacing:6px;

}

nav{

display:flex;
gap:25px;

}

nav a{

color:white;
text-decoration:none;
transition:.3s;

}

nav a:hover{

color:#b787ff;

}

.hero{

padding:120px 10%;
text-align:center;

}

.hero-title{
    position:relative;

    width:100%;
    height:400px;

    margin:0 auto;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.hero-title::before{
    content:"";
    position:absolute;

    top:0;
    right:0;
    bottom:0;
    left:0;

    background:url("images/fullbody1.png") center 6% /cover no-repeat;

    opacity:.4;

    z-index:-1;
}

.hero-title h1,
.hero-title p{
    position:relative;
    z-index:1;
}

.hero h1{

font-size:58px;

margin-bottom:20px;

}

.hero p{

font-size:20px;
color:#bbb;

}

section{

padding:80px 10%;

}

h2{

margin-bottom:30px;

font-size:36px;

}

hr{
    border: none;
    height: 2px;
    width: 80%;
    margin: 50px auto;
    background: linear-gradient(
        to right,
        transparent,
        #8d5cff,
        transparent
    );
}

.gallery{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.card{

background:#222;

border:1px solid #333;

transition:.3s;

overflow:hidden;

}

.card:hover{

transform:translateY(-8px);

border-color:#8b5cff;

}

.card img{

width:100%;
display:block;

}

.card h3{

padding:15px;

text-align:center;

}

.gallery-link{

    display:flex;

    justify-content:center;

    margin-top:40px;

}


.gallery-link a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 30px;

    background:#111;

    color:#fff;

    text-decoration:none;

    border:1px solid #444;

    border-radius:999px;

    transition:.25s ease;

}

.gallery-link a:hover{

    background:#b787ff;

    border-color:#b787ff;

    transform:translateY(-2px);

}

.pricing{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:20px;

}

.price-card{

background:#222;

padding:35px;

text-align:center;

border:1px solid #333;

}

.price-card h3{

margin-bottom:15px;

}

.price-card p{

font-size:28px;

color:#b787ff;

}

.price-card i{
  font-size: 12;
  font-style: italic;
  color:#fff;
}

#contact a{
    color:#fff;
    text-decoration:none;
}

#contact a:hover{
    color:#ffffff;
}

footer{

padding:50px;

text-align:center;

color:#888;

}
