/* =========================
GLAM MIRROR BEAUTY PARLOUR
NEON PINK LUXURY THEME
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

:root{
--pink:#ff1493;
--pink2:#ff4fb3;
--pink3:#ff85c8;
--white:#ffffff;
--light:#fff3f8;
--dark:#141414;
}

body{
background:#fff8fc;
overflow-x:hidden;
color:#333;
}

/* =========================
SCROLLBAR
========================= */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#ffe4f0;
}

::-webkit-scrollbar-thumb{
background:var(--pink);
border-radius:20px;
}

/* =========================
ANNOUNCEMENT BAR
========================= */

.announcement-bar{
background:linear-gradient(
90deg,
#ff1493,
#ff4fb3,
#ff1493
);
color:#fff;
padding:10px 0;
overflow:hidden;
white-space:nowrap;
font-weight:600;
font-size:14px;
}

.marquee{
display:inline-block;
padding-left:100%;
animation:marquee 25s linear infinite;
}

@keyframes marquee{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-100%);
}
}

/* =========================
NAVBAR
========================= */

.navbar{
position:sticky;
top:0;
z-index:999;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:rgba(255,255,255,.95);
backdrop-filter:blur(15px);
box-shadow:0 4px 20px rgba(255,20,147,.15);
}

.logo h1{
font-size:34px;
font-weight:800;
color:var(--pink);
text-shadow:
0 0 10px #ff1493,
0 0 20px #ff1493;
}

.logo span{
font-size:12px;
letter-spacing:2px;
color:#777;
}

.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.nav-links a{
text-decoration:none;
font-weight:600;
color:#444;
transition:.3s;
}

.nav-links a:hover{
color:var(--pink);
}

.social-icons{
display:flex;
gap:20px;
}

.social-icons a{
color:var(--pink);
font-size:20px;
transition:.3s;
}

.social-icons a:hover{
transform:translateY(-4px);
}

/* =========================
HERO SECTION
========================= */

.hero{
height:100vh;
position:relative;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}

.hero video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:
linear-gradient(
135deg,
rgba(255,20,147,.6),
rgba(255,255,255,.2)
);
}

.hero-content{
position:relative;
z-index:2;
max-width:700px;
text-align:center;
color:white;
}

.hero-content h4{
font-size:24px;
letter-spacing:3px;
margin-bottom:20px;
}

.hero-content h1{
font-size:70px;
font-weight:800;
line-height:1.1;
margin-bottom:20px;
text-shadow:
0 0 15px #ff1493,
0 0 25px #ff1493;
}

.hero-content p{
font-size:20px;
line-height:1.8;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:700;
transition:.4s;
}

.btn-primary{
background:var(--pink);
color:white;
box-shadow:
0 0 15px #ff1493,
0 0 30px #ff1493;
}

.btn-primary:hover{
transform:translateY(-5px);
}

.btn-secondary{
background:white;
color:var(--pink);
}

.discount-card{
position:absolute;
right:8%;
top:50%;
transform:translateY(-50%);
background:rgba(255,255,255,.25);
backdrop-filter:blur(15px);
padding:30px;
border-radius:25px;
text-align:center;
color:white;
z-index:3;
border:1px solid rgba(255,255,255,.4);
box-shadow:
0 0 25px rgba(255,20,147,.4);
}

.discount-card h1{
font-size:55px;
color:#fff;
}

/* =========================
HIGHLIGHTS
========================= */

.highlights{
display:grid;
grid-template-columns:repeat(4,280px);
justify-content:center;
gap:15px;
padding:30px 0;
margin-top:-45px;
position:relative;
z-index:20;
}
.highlights{
margin-top:-75px;
position:relative;
z-index:20;
}

.highlight-card{
display:flex;
align-items:center;
justify-content:center;
gap:8px;

height:90px;
padding:0 20px;

text-decoration:none;
color:white;

border-radius:25px;

background:linear-gradient(
135deg,
#ff1493,
#ff4fb3
);

font-size:24px;
font-weight:700;

box-shadow:
0 0 20px rgba(255,20,147,.4),
0 0 40px rgba(255,20,147,.25);

transition:.4s;
}

.highlight-card:hover{
transform:translateY(-8px) scale(1.03);

box-shadow:
0 0 30px #ff1493,
0 0 60px #ff1493;
}

/* =========================
ABOUT
========================= */

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
padding:100px 8%;
align-items:center;
}

.about video{
width:100%;
border-radius:30px;
box-shadow:
0 15px 40px rgba(255,20,147,.2);
}

.about-content h2{
font-size:55px;
color:var(--pink);
margin-bottom:20px;
}

.about-content p{
font-size:18px;
line-height:1.9;
margin-bottom:15px;
}

/* =========================
GOOGLE REVIEWS
========================= */

.google-reviews{
padding:100px 8%;
background:linear-gradient(
135deg,
#fff8fc,
#ffffff
);
}

.google-reviews h2{
text-align:center;
font-size:52px;
margin-bottom:15px;
color:#ff1493;
text-shadow:0 0 15px rgba(255,20,147,.3);
}

.rating-badge{
width:max-content;
margin:0 auto 50px;
padding:12px 25px;
border-radius:50px;
background:white;
box-shadow:0 10px 25px rgba(255,20,147,.15);
font-weight:600;
}

.reviews-slider{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.review-card{
background:white;
padding:30px;
border-radius:25px;
position:relative;
overflow:hidden;
border:1px solid rgba(255,20,147,.1);
box-shadow:
0 10px 30px rgba(255,20,147,.12);
transition:.4s;
}

.review-card:hover{
transform:translateY(-10px);
box-shadow:
0 20px 40px rgba(255,20,147,.25);
}

.review-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(
90deg,
#ff1493,
#ff7cc8
);
}

.review-header{
display:flex;
align-items:center;
gap:15px;
margin-bottom:20px;
}

.review-avatar{
width:60px;
height:60px;
border-radius:50%;
background:linear-gradient(
135deg,
#ff1493,
#ff7cc8
);
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
font-weight:700;
color:white;
box-shadow:
0 0 15px rgba(255,20,147,.5);
}

.review-header h4{
font-size:18px;
margin-bottom:3px;
}

.review-header span{
font-size:13px;
color:#777;
}

.stars{
font-size:18px;
margin-bottom:15px;
}

.review-card p{
color:#555;
line-height:1.8;
font-size:15px;
}

/* Dark Theme */

body.dark .google-reviews{
background:#111;
}

body.dark .review-card{
background:#1a1a1a;
border:1px solid #2a2a2a;
}

body.dark .review-card p{
color:#ddd;
}

body.dark .review-header span{
color:#aaa;
}

body.dark .rating-badge{
background:#1a1a1a;
color:white;
}

/* =========================
APPOINTMENT FORM
========================= */

.appointment{
padding:100px 8%;
background:#fff0f7;
text-align:center;
}

.appointment h2{
font-size:55px;
color:var(--pink);
margin-bottom:40px;
}

#bookingForm{
max-width:800px;
margin:auto;
display:flex;
flex-direction:column;
gap:18px;
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea{
padding:16px;
border:none;
border-radius:15px;
background:white;
font-size:16px;
box-shadow:
0 5px 15px rgba(255,20,147,.1);
}

#bookingForm textarea{
height:140px;
resize:none;
}

#bookingForm button{
background:var(--pink);
color:white;
padding:18px;
border:none;
border-radius:50px;
font-size:18px;
font-weight:700;
cursor:pointer;
transition:.4s;
box-shadow:
0 0 15px #ff1493,
0 0 30px #ff1493;
}

#bookingForm button:hover{
transform:translateY(-5px);
}

/* =========================
WHATSAPP FLOAT
========================= */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25d366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
color:white;
z-index:9999;
text-decoration:none;
box-shadow:
0 0 20px #25d366,
0 0 40px #25d366;
animation:pulse 2s infinite;
}

@keyframes pulse{
0%{
transform:scale(1);
}
50%{
transform:scale(1.08);
}
100%{
transform:scale(1);
}
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

.navbar{
flex-direction:column;
gap:15px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
}

.hero-content h1{
font-size:42px;
}

.discount-card{
display:none;
}

.highlights{
grid-template-columns:1fr 1fr;
}

.about{
grid-template-columns:1fr;
}

.about-content h2{
font-size:40px;
}
}

@media(max-width:600px){

.highlights{
grid-template-columns:1fr;
gap:10px;
padding:20px;
}

.highlight-card{
height:70px;
font-size:16px;
}
.hero-content h1{
font-size:32px;
}

.hero-content p{
font-size:16px;
}

.appointment h2{
font-size:36px;
}
}

.topBtn{
position:fixed;
bottom:100px;
right:25px;
width:55px;
height:55px;
border:none;
border-radius:50%;
background:#ff1493;
color:#fff;
font-size:20px;
cursor:pointer;
display:none;
z-index:999;
box-shadow:0 0 20px #ff1493;
}

/* =========================
THEME TOGGLE
========================= */

.theme-toggle{
width:45px;
height:45px;
border:none;
border-radius:50%;
cursor:pointer;
background:#ff1493;
color:white;
font-size:18px;
display:flex;
align-items:center;
justify-content:center;
box-shadow:
0 0 15px #ff1493,
0 0 30px #ff1493;
transition:.3s;
}

.theme-toggle:hover{
transform:rotate(180deg);
}

/* =========================
DARK THEME
========================= */

body.dark{
background:#0d0d0d;
color:#ffffff;
}

body.dark .navbar{
background:rgba(15,15,15,.95);
}

body.dark .nav-links a{
color:white;
}

body.dark .about{
background:#111;
}

body.dark .appointment{
background:#111;
}

body.dark .highlight-card{
background:linear-gradient(
135deg,
#ff1493,
#ff4fb3
);
}

body.dark .about-content p{
color:#ddd;
}

body.dark #bookingForm input,
body.dark #bookingForm select,
body.dark #bookingForm textarea{
background:#1b1b1b;
color:white;
border:1px solid #333;
}

body.dark .discount-card{
background:rgba(0,0,0,.5);
}

body.dark .reviews-strip{
background:#111;
}

body.dark .announcement-bar{
background:
linear-gradient(
90deg,
#000,
#ff1493,
#000
);
}

body.dark .logo h1{
color:#ff4fb3;
text-shadow:
0 0 15px #ff1493,
0 0 30px #ff1493;
}