/* FILE NAME: css/about.css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#050816;
color:white;
overflow-x:hidden;
}

/* NAVBAR */

.navbar{
width:100%;
padding:22px 7%;
display:flex;
justify-content:space-between;
align-items:center;
position:fixed;
top:0;
left:0;
z-index:999;
background:rgba(5,8,22,0.88);
backdrop-filter:blur(15px);
border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
font-size:30px;
font-weight:800;
background:linear-gradient(90deg,#60a5fa,#a855f7);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

nav a{
text-decoration:none;
color:white;
margin-left:28px;
font-size:15px;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#60a5fa;
}

/* HERO */

.hero{
width:100%;
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:160px 7% 100px;
position:relative;
}

.hero::before{
content:'';
position:absolute;
width:600px;
height:600px;
background:#2563eb;
filter:blur(180px);
opacity:0.18;
top:-250px;
left:-250px;
border-radius:50%;
z-index:-1;
}

.hero::after{
content:'';
position:absolute;
width:550px;
height:550px;
background:#7c3aed;
filter:blur(180px);
opacity:0.16;
bottom:-250px;
right:-250px;
border-radius:50%;
z-index:-1;
}

.hero-text{
max-width:1000px;
}

.hero-text h1{
font-size:78px;
line-height:1.1;
font-weight:800;
margin-bottom:30px;
}

.hero-text h1 span{
background:linear-gradient(90deg,#60a5fa,#a855f7);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero-text p{
font-size:20px;
line-height:1.9;
color:#cbd5e1;
margin-bottom:40px;
}

/* BUTTON */

.btn{
display:inline-block;
padding:18px 40px;
background:linear-gradient(90deg,#2563eb,#7c3aed);
color:white;
text-decoration:none;
font-size:16px;
font-weight:600;
border-radius:60px;
transition:0.35s;
box-shadow:0 15px 40px rgba(37,99,235,0.4);
}

.btn:hover{
transform:translateY(-6px);
}

/* COMMON */

.container{
max-width:1200px;
margin:auto;
}

/* ABOUT */

.about-home{
padding:110px 7%;
}

.about-home h2{
font-size:52px;
margin-bottom:30px;
text-align:center;
}

.about-home p{
font-size:18px;
line-height:2;
color:#cbd5e1;
margin-bottom:25px;
text-align:center;
}

/* GRID SECTION */

.products-home{
padding:110px 7%;
}

.products-home h2{
font-size:52px;
text-align:center;
margin-bottom:70px;
}

.products-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:35px;
}

.product-card{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
padding:35px;
border-radius:30px;
backdrop-filter:blur(15px);
transition:0.35s;
text-align:center;
}

.product-card:hover{
transform:translateY(-10px);
background:rgba(255,255,255,0.08);
}

.product-card img{
width:100%;
height:260px;
object-fit:cover;
border-radius:20px;
margin-bottom:25px;
}

.product-card h3{
font-size:30px;
margin-bottom:18px;
}

.product-card p{
color:#cbd5e1;
line-height:1.9;
}

/* SEO SECTION */

.seo-content{
padding:110px 7%;
}

.seo-content h2{
font-size:52px;
margin-bottom:30px;
text-align:center;
}

.seo-content p{
font-size:18px;
line-height:2;
color:#cbd5e1;
margin-bottom:25px;
text-align:center;
}

/* CTA */

.cta{
padding:120px 7%;
text-align:center;
}

.cta h2{
font-size:58px;
margin-bottom:25px;
}

.cta p{
font-size:18px;
color:#cbd5e1;
margin-bottom:40px;
}

/* FOOTER */

footer{
padding:45px 7%;
border-top:1px solid rgba(255,255,255,0.08);
margin-top:60px;
}

.footer-content{
text-align:center;
}

.footer-content h3{
font-size:32px;
margin-bottom:12px;
}

.footer-content p{
color:#94a3b8;
margin-bottom:10px;
}

/* MOBILE */

@media(max-width:1000px){

.hero-text h1{
font-size:56px;
}

.products-grid{
grid-template-columns:1fr;
}

}

@media(max-width:700px){

nav{
display:none;
}

.hero-text h1{
font-size:42px;
}

.hero-text p{
font-size:16px;
}

.about-home h2,
.products-home h2,
.seo-content h2,
.cta h2{
font-size:36px;
}

.about-home p,
.seo-content p{
font-size:16px;
}

}