* {
    box-sizing: border-box;
}
/* Prevent horizontal scrolling */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100%;
}
/* ===== Header (Desktop + Mobile) ===== */
:root{
  --bg: #ffffff;
  --accent: #111827; /* dark */
  --muted: #6b7280;
  --accent-2: #25D366; /* whatsapp-ish green */
  --shadow: 0 6px 18px rgba(16,24,40,0.06);
  --container-pad: 20px;
}


.header {
  width: 100%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px var(--container-pad);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.header .logo img{
  height: 48px;           /* adjust if logo bigger/smaller */
  display: block;
  object-fit: contain;
}

/* Desktop nav links */
.header .nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 12px;
}
.header .nav a{
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  padding: 8px 6px;
  border-radius: 6px;
  transition: background .15s, color .15s, transform .12s;
}
.header .nav a:hover{
  background: rgba(0,0,0,0.04);
  transform: translateY(-1px);
}

/* WhatsApp button */
.whatsapp-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: linear-gradient(90deg, var(--accent-2), #06c167);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(37,211,102,0.12);
  margin-left: 12px;
  white-space: nowrap;
}
.whatsapp-btn:active { transform: translateY(1px); }

/* Hamburger icon (hidden on desktop) */
.hamburger{
  display: none;
  font-size: 26px;
  cursor: pointer;
  user-select: none;
  padding: 6px;
}

/* Mobile menu (hidden by default) */
.mobile-menu{
  display: none; /* JS will toggle to block/flex */
  position: fixed;
  top: 64px; /* header height */
  right: 0;
  left: 0;
  background: var(--bg);
  box-shadow: 0 8px 30px rgba(16,24,40,0.12);
  z-index: 999;
  padding: 16px 20px;
  border-top: 1px solid rgba(0,0,0,0.04);
  flex-direction: column;
  gap: 10px;
   width: 100%;
  max-width: 100vw;
}

/* mobile menu links */
.mobile-menu a{
  display: block;
  padding: 12px 10px;
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  border-radius: 8px;
}
.mobile-menu a:hover{
  background: rgba(0,0,0,0.03);
}

/* ===== Responsive rules ===== */
@media (max-width: 860px) {
  /* hide desktop nav, show hamburger */
  .header .nav { display: none; }
  .hamburger { display: block; }

  /* shrink logo a bit on small screens */
  .header .logo img { height: 44px; }

  /* make whatsapp button smaller / compact */
  .whatsapp-btn {
    padding: 6px 10px;
    font-size: 14px;
  }
}

/* If you want the mobile menu to cover full screen (optional) */
/*
@media (max-width: 420px){
  .mobile-menu{
    top: 56px;
    bottom: 0;
    overflow-y: auto;
  }
}
*/

/* Small niceties */
.header, .mobile-menu { transition: background .2s, box-shadow .2s; }
.header .nav a, .mobile-menu a, .whatsapp-btn { cursor: pointer; }

/* Utility: hidden class (JS can toggle) */
.is-hidden { display: none !important; }

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 85vh; /* hero height */
    background: url("images/for_backround.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 40px;
    overflow: hidden;
   
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* smooth dark layer */
    z-index: 1;
}

/* Logo top-left */
.hero-logo {
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 2;
   
}

.hero-logo img {
    width: 130px;      /* change logo size here */
    height: auto;
}

/* Text */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: white;
}

.hero-content h1 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 20px;
    font-weight: 300;
}

/* Responsive for mobile */
@media (max-width: 768px) {

    .hero {
        height: 70vh;
        padding: 0 20px;
    }

    .hero-logo img {
        width: 95px;
        background: transparent;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #222;
    letter-spacing: 0.5px;
    position: relative;
   
}

/* small underline for premium look */
.section-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #c49b3f; /* premium gold */
    display: block;
    margin: 8px auto 0;
    border-radius: 2px;
}


/* 🎉 Wedding Hero Banner */
.wedding-banner {
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    padding-left: 5%;
     background: linear-gradient(
        135deg,
        rgba(201, 33, 33, 0.9),
        rgba(186, 45, 45, 0.7)
    ), 
    url('images/slider.jpg'); 
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    margin-top: 1px;
    margin-bottom: 2px;
}

.banner-content {
    color: #fff;
    max-width: 600px;
}

.banner-offer {
    font-size: 3rem;
    font-weight: 700;
    /* background: linear-gradient(90deg, #ffd700, #ffb200); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    text-shadow: 0 0 20px rgba(244, 192, 70, 0.6);
}

.banner-tagline {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 10px;
    color: #ffe7c3;
    font-family: "MarathiCalligraphy", serif;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .wedding-banner {
        height: 60vh;
        justify-content: center;
        padding-left: 0;
        text-align: center;
        background-position: center bottom;
    }

    .banner-offer {
        font-size: 2rem;
    }

    .banner-tagline {
        font-size: 1.2rem;
    }
}


/* GRID */
.categories-section {
    padding: 60px 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CATEGORY BOX */
.category-box {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    display: block;
}


.category-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* TEXT STYLE — clean premium */
.category-box h3 {
    font-size: 22px;
    font-weight: 600;
    padding: 15px 0 18px;
    color: #2b2b2b;
    letter-spacing: 0.3px;
    
}

/* HOVER EFFECT — subtle, premium */
.category-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.category-box:hover img {
    transform: scale(1.07);
    opacity: 0.9;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .category-box img {
        height: 220px;
    }
}

@media (max-width: 500px) {
    .categories-section {
        padding: 40px 20px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-box img {
        height: 350px;
    }

    .section-title {
        font-size: 26px;
    }
}

/* ABOUT SECTION */
.about-section {
    padding: 70px 40px;
    background: #faf7f2; /* light elegant background */
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* LEFT TEXT */
.about-text h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    position: relative;
}

/* Premium underline */
.about-text h2::after {
    content: "";
    width: 90px;
    height: 3px;
    background: #c49b3f; /* premium golden line */
    display: block;
    margin-top: 6px;
    border-radius: 4px;
}

/* Paragraph styling */
.about-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4d4d4d; /* soft dark */
    margin-bottom: 18px;
    font-weight: 400;
}

/* RIGHT IMAGE */
.about-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 14px;
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
}

/* Subtle hover effect */
.about-image img:hover {
    transform: scale(1.02);
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    .about-image img {
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .about-section {
        padding: 50px 20px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 16px;
    }
}

/* REVIEWS SECTION */
.reviews-section {
    padding: 70px 40px;
    background: #ffffff;
}

.reviews-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    position: relative;
}

/* gold underline */
.reviews-section .section-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #c49b3f;
    display: block;
    margin: 10px auto 0;
    border-radius: 3px;
}

/* GRID */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* REVIEW CARD */
.review-card {
    background: #fafafa;
    border-radius: 14px;
    padding: 22px 25px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    transition: 0.3s ease;
    border: 1px solid #f1f1f1;
}

/* hover effect – subtle & premium */
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* NAME + STARS */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-name {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    letter-spacing: 0.3px;
}

/* Stars */
.review-stars span {
    color: #f4b400; /* premium gold stars */
    font-size: 20px;
}

/* TEXT */
.review-text {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-section {
        padding: 50px 20px;
    }
}
/* CONTACT SECTION */
.contact-section {
    position: relative;
    color: #fe0707;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.contact-container,
.contact-heading,
.contact-line,
.section-title {
    position: relative;
    z-index: 1;
}



 .contact-section {
    padding: 80px 40px;
    
    
} 

.contact-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #fd0303;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

/* MAIN GRID */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
   
}

/* LEFT INFO CARD */
.contact-info {
    /* background: #fff; */
    background:transparent;
    padding: 35px;
    padding-right: 35px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 0.5px solid #eee;
    
}

.contact-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #d3b911;
}

.contact-line {
    font-size: 1.25rem;
    margin: 12px 0;
    color: #c91111;
    line-height: 1.5;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.contact-line a {
    color: #c49b3f;
    text-decoration: none;
    font-weight: 600;
}

/* BUTTONS */
.contact-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.whatsapp-btn,
.call-btn {
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
        padding: 12px 10px;
}

.call-btn {
    background: #d19d25;
    color: white;
}

.whatsapp-btn:hover {
    background: #1ebd5c;
}

.call-btn:hover {
    background: #ad8736;
}

/* MAP */
.contact-map iframe {
    width: 100%;
   height: 350px;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 30px 20px;
    }
}
/* 
 PREMIUM DARK + GOLD FOOTER */
.premium-footer {
    background: #1c1c1c;
    color: #e8e3d3;
    padding: 70px 30px 0;
    font-family: 'Poppins', serif;
}

.premium-footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Columns */
.premium-footer .footer-col {
    flex: 1;
    min-width: 260px;
}

/* Logo */
.renuka-footer-logo {
    width: 180px;
    margin-bottom: 20px;
    
}
/* Titles */
.footer-title {
    font-size: 22px;
    color: #f3d18f; /* Gold */
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

/* Paragraphs */
.footer-desc {
    max-width: 90%;
    font-size: 10px;
    color: #d8d8d8;
    line-height: 1.6;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 8px 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: #e8e3d3;
    font-size: 16px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f3d18f;
}

/* Social Icons */
.footer-socials a {
    display: inline-block;
    margin-right: 12px;
    font-size: 22px;
    color: #f3d18f;
    text-decoration: none;
    transition: 0.3s;
}

.footer-socials a:hover {
    opacity: 0.7;
}

/* Bottom section */
.footer-bottom {
     border-top: 1px solid #333;
    padding: 12px 0;
    text-align: center; 
}

.footer-bottom p {
   margin: 8px 0;
    
}

/* Signature */
.footer-signature {
    margin-top: 5px;
    font-size: 10px;
    color: #e8e3d3;
}

.footer-signature .sign {
    font-style:var(--accent);
    font-size: 1rem;
    color: #ffde91;
    font-weight: 5px;
}
    
/* Responsive */
@media (max-width: 768px) {
    .premium-footer-container {
        flex-direction: column;
        text-align: center;
    }
    .renuka-footer-logo {
        margin: 0 auto;
    }
    .footer-desc {
        margin: 0 auto;
    }
}

/* -------------------
   PRODUCT GALLERY
-------------------- */
.product-gallery {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #333;
}

/* GRID */
.product-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    padding: 10px;
    border: 1px solid #e6e6e6;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

/* PRODUCT IMAGE */
.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
}

/* PRODUCT TEXT */
.product-name {
    font-size: 17px;
    font-weight: 600;
    margin: 10px 0 4px;
    color: #222;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #d81b60;
    margin-bottom: 10px;
}

/* BUTTON */
.buy-btn {
    display: block;
    width: 100%;
    padding: 8px 0;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #d81b60;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .product-card img {
        height: 300px;
    }
}
#pro p{
    background-color: rgb(255, 44, 44);
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;text-align: center;
    display: flex;
    align-items: center;
    font-weight:900;
    text-size-adjust: var(--bg);
    color: white;
    border-color: gold;
    
}




.hero-slider{
    position:relative;
    height:90vh;
    width:100%;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transform:translateX(100%);
    transition:opacity 1s ease, transform 1s ease;
}

.slide.active{
    opacity:1;
    transform:translateX(0);
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1);
    transition:transform 4s ease;
}

.slide.active img{
    transform:scale(1); /* ZOOM EFFECT */
}

.content{
    position:absolute;
    bottom:20%;
    left:8%;
    color:#fff;
    max-width:450px;
    animation:fadeUp 1.2s ease forwards;
}

@keyframes fadeUp{
    from{ opacity:0; transform:translateY(30px);}
    to{ opacity:1; transform:translateY(0);}
}

.content h1{
    font-size:3.5rem;
    margin-bottom:10px;
    color: #b93b1e;
}

.content p{
    font-size:1.3rem;
    margin-bottom:20px;
}

.btn{
    padding:12px 24px;
    background: transparent;
    color:#1fb94f;
    border: 0.5px solid rgb(255, 255, 255);
    font-weight:bold;
    border-radius:4px;
    text-decoration:none;
    transition:0.3s;
}

.btn:hover{
    background:#74a96e;
    color:#fff;
}

/* Arrows */
.controls{
    position:absolute;
    top:50%;
    width:100%;
    display:flex;
    justify-content:space-between;
    padding:0 20px;
    transform:translateY(-50%);
}

.controls span{
    font-size:40px;
    color:#fff;
    cursor:pointer;
    user-select:none;
}

/* Dot Indicators */
.dots{
    position:absolute;
    bottom:20px;
    width:100%;
    text-align:center;
}

.dots div{
    height:12px;
    width:12px;
    display:inline-block;
    background:#fff;
    margin:0 5px;
    border-radius:50%;
    cursor:pointer;
    opacity:0.4;
}

.dots .active-dot{
    opacity:1;
}


/* Responsive */
@media(max-width:768px){
    .content h1{
        font-size:2.2rem;
    }
    .content p{
        font-size:1rem;
    }
    .hero-slider {
        height: 70vh;
    }
}

@media(max-width:480px){
    .content{
        bottom:15%;
        left:5%;
    }
    .content h1{
        font-size:1.7rem;
    }
}
/* ====== Brands Gallery — Premium Styles ====== */


.brands-gallery {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
  position: relative;
  display: inline-block;
}

/* Underline Effect */
.section-title::after {
  content: "";
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  position: absolute;
  left: 20%;
  bottom: -8px;
  border-radius: 6px;
}

/* Grid layout */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* Brand Card */
.brand {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0px 5px 22px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.05);
  transition: .3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85px;
}
.brand p{
    background-color: rgb(229, 62, 62);
    border-radius: 1rem;
    font-style: oblique;
}

/* Brand Image */
.brand img {
  width: 85%;
  max-height: 60px;
  object-fit: contain;
  transition: .3s ease-in-out;
  filter: none; /* Always colorful */
}

/* Hover Effects */
.brand:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 35px rgba(0,0,0,0.12);
}

.brand:hover img {
  transform: scale(1.05);
}

/* Responsive Fix */
@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }
  .brand {
    height: 75px;
    padding: 8px;
  }
}
.container{
  max-width:1200px;
  margin:auto;
}
