/* PREMIUM BOUTIQUE STYLE – PRASHASTI BOUTIQUE */

:root {
    --primary: #b83280;
    --secondary: #c40000;
    --dark: #222;
    --light: #fff0f7;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit
}

/* TOP OFFER BAR */
.top-banner {
    background: var(--secondary);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: 600;
}

/* HEADER */
header {
    text-align: center;
    padding: 18px 10px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 90px;
}

.menu-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

.menu-bar a {
    font-size: 17px;
    font-weight: 600;
    padding: 6px 0;
    position: relative;
}

.menu-bar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: .3s;
}

.menu-bar a:hover,
.menu-bar a.active {
    color: var(--primary)
}

.menu-bar a:hover::after,
.menu-bar a.active::after {
    width: 100%
}

/* SECTIONS */
.section {
    max-width: 1100px;
    margin: auto;
    padding: 45px 20px;
}

.section h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 30px;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.service {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 26px;
    text-align: center;
    transition: .3s;
}

.service:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
}

/* REVIEWS */
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.review {
    background: var(--light);
    padding: 20px;
    border-radius: 14px;
}

.review strong {
    color: var(--primary)
}

/* CONTACT */
.contact {
    background: var(--light);
    text-align: center;
    padding: 40px 20px;
}

/* FOOTER */
footer {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* WHATSAPP BUTTON */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 50px;
    font-weight: 600;
}

/* MOBILE */
@media(max-width:768px) {
    .menu-bar {
        flex-wrap: wrap;
        gap: 18px
    }

    .logo img {
        height: 70px
    }
}
/* HERO SLIDER */
.hero-slider {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-btn {
    background: #b83280;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #c40000;
}

/* MOBILE */
@media(max-width:768px) {
    .hero-slider {
        height: 300px
    }

    .hero-content h1 {
        font-size: 26px
    }

    .hero-content p {
        font-size: 15px
    }
}
.slider{
  width:100%;
  height:70vh;
  position:relative;
  overflow:hidden;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  display:none;
}

.slide.active{
  display:block;
}

/* 🔥 IMAGE FIX */
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;   /* MOST IMPORTANT */
  display:block;
}

/* OVERLAY */
.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding-left:8%;
  z-index:2;
}

/* BUTTON */
.btn{
  background:#b30000;
  color:#fff;
  padding:14px 30px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  width:fit-content;
}

/* MOBILE FIX */
@media(max-width:768px){
  .slider{ height:55vh; }
  .overlay{ padding:20px; }
  .overlay h1{ font-size:26px; }
}
