/* ===========================
   THE SMOKE CLUB
   STYLE.CSS - PART 1
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{

background:#090909;
color:#fff;
overflow-x:hidden;

}

/* Scrollbar */

::-webkit-scrollbar{

width:8px;

}

::-webkit-scrollbar-thumb{

background:gold;
border-radius:20px;

}

/* HEADER */

header{

position:fixed;

top:0;

left:0;

width:100%;

background:rgba(0,0,0,.9);

backdrop-filter:blur(10px);

padding:18px 8%;

display:flex;

justify-content:space-between;

align-items:center;

z-index:1000;

box-shadow:0 5px 30px rgba(255,215,0,.15);

}

.logo{

font-size:30px;

font-weight:700;

color:gold;

letter-spacing:2px;

}

nav{

display:flex;

gap:25px;

}

nav a{

color:white;

text-decoration:none;

font-size:17px;

transition:.35s;

}

nav a:hover{

color:gold;

}

/* HERO */

.hero{

height:100vh;

background:

linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),

url("https://images.unsplash.com/photo-1511919884226-fd3cad34687c?auto=format&fit=crop&w=1600&q=80");

background-size:cover;

background-position:center;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:20px;

}

.overlay{

max-width:850px;

}

.hero h1{

font-size:70px;

color:gold;

margin-bottom:20px;

}

.hero p{

font-size:22px;

color:#ddd;

margin-bottom:35px;

line-height:1.7;

}

.shopbtn{

display:inline-block;

padding:16px 40px;

background:gold;

color:black;

text-decoration:none;

font-weight:700;

border-radius:50px;

transition:.35s;

}

.shopbtn:hover{

transform:translateY(-5px);

box-shadow:0 0 30px gold;

}

/* SEARCH */

.search{

padding:70px 20px;

text-align:center;

background:#111;

}

.search input{

width:90%;

max-width:450px;

padding:15px;

border:none;

outline:none;

border-radius:50px;

font-size:18px;

background:#222;

color:white;

}

.search input::placeholder{

color:#999;

}

/* TITLE */

.title{

text-align:center;

font-size:45px;

color:gold;

margin:60px 0;

letter-spacing:2px;

}

/* PRODUCTS */

.products{

width:90%;

margin:auto;

display:grid;

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

gap:30px;

padding-bottom:80px;

}

.card{

background:#171717;

padding:25px;

border-radius:18px;

text-align:center;

transition:.35s;

border:1px solid #222;

}

.card:hover{

transform:translateY(-10px);

box-shadow:0 0 35px rgba(255,215,0,.35);

border-color:gold;

}

.card img{

width:180px;

height:180px;

object-fit:contain;

margin-bottom:20px;

}

.card h3{

font-size:24px;

margin-bottom:12px;

}

.card p{

color:#bbb;

margin-bottom:18px;

}

.card button{

background:#25D366;

color:white;

border:none;

padding:13px 22px;

border-radius:40px;

font-size:16px;

cursor:pointer;

transition:.3s;

}

.card button:hover{

background:#128C7E;

}
/* ===========================
   REVIEWS
=========================== */

#reviews{
padding:80px 8%;
background:#111;
text-align:center;
}

#reviews h2{
font-size:42px;
color:gold;
margin-bottom:40px;
}

.review{
background:#1b1b1b;
padding:25px;
margin:20px auto;
max-width:700px;
border-radius:15px;
border-left:5px solid gold;
font-size:18px;
color:#ddd;
transition:.3s;
}

.review:hover{
transform:scale(1.02);
box-shadow:0 0 25px rgba(255,215,0,.25);
}

/* ===========================
   ABOUT
=========================== */

#about{
padding:80px 8%;
text-align:center;
background:#0f0f0f;
}

#about h2{
font-size:42px;
color:gold;
margin-bottom:20px;
}

#about p{
max-width:900px;
margin:auto;
line-height:1.8;
font-size:18px;
color:#ccc;
}

/* ===========================
   QUOTE
=========================== */

.quote{
padding:80px 20px;
text-align:center;
background:#111;
}

.quote h2{
font-size:34px;
color:gold;
font-style:italic;
}

/* ===========================
   CONTACT
=========================== */

#contact{
padding:80px 8%;
background:#0d0d0d;
text-align:center;
}

#contact h2{
font-size:42px;
color:gold;
margin-bottom:30px;
}

#contact p{
font-size:18px;
margin:15px 0;
color:#ddd;
}

/* ===========================
   FOOTER
=========================== */

footer{
background:#000;
padding:35px;
text-align:center;
color:#888;
font-size:15px;
border-top:1px solid #222;
}

/* ===========================
   FLOATING WHATSAPP
=========================== */

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
box-shadow:0 0 20px rgba(37,211,102,.5);
transition:.3s;
z-index:999;
}

.whatsapp:hover{
transform:scale(1.1);
background:#128C7E;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

header{
flex-direction:column;
padding:15px;
}

nav{
margin-top:15px;
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

.title{
font-size:34px;
}

.products{
grid-template-columns:1fr;
}

.card img{
width:150px;
height:150px;
}

}
/* ===========================
   PREMIUM EFFECTS
=========================== */

body::before{
content:"";
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;
background:
radial-gradient(circle at 20% 20%,rgba(255,255,255,.04),transparent 35%),
radial-gradient(circle at 80% 60%,rgba(255,255,255,.03),transparent 35%),
radial-gradient(circle at 50% 90%,rgba(255,255,255,.02),transparent 35%);
animation:smokeMove 18s linear infinite;
z-index:-1;
}

@keyframes smokeMove{

0%{
transform:translateY(0);
opacity:.5;
}

50%{
transform:translateY(-40px);
opacity:.8;
}

100%{
transform:translateY(0);
opacity:.5;
}

}

/* GOLD GLOW */

.logo,
.title,
#about h2,
#reviews h2,
#contact h2{

text-shadow:0 0 10px gold,
0 0 25px rgba(255,215,0,.5);

}

/* BUTTON EFFECT */

button,
.shopbtn{

transition:.35s;

}

button:hover,
.shopbtn:hover{

transform:translateY(-4px) scale(1.05);

box-shadow:0 0 20px rgba(255,215,0,.4);

}

/* PRODUCT IMAGE */

.card img{

transition:.35s;

}

.card:hover img{

transform:scale(1.08) rotate(-2deg);

}

/* BADGE */

.badge{

display:inline-block;

background:gold;

color:black;

padding:5px 12px;

border-radius:20px;

font-size:12px;

font-weight:700;

margin-bottom:12px;

}

/* CARD ANIMATION */

.card{

animation:fadeUp .8s ease;

}

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(30px);

}

to{

opacity:1;
transform:translateY(0);

}

}

/* NAV UNDERLINE */

nav a{

position:relative;

}

nav a::after{

content:"";

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:gold;

transition:.35s;

}

nav a:hover::after{

width:100%;

}

/* FOOTER */

footer{

letter-spacing:1px;

}
