
:root{
  --gold:#d88c0c; --white:#ffffff; --black:#000000; --wa:#25D366;
  --container-pad:20px; --radius:14px; --glass: rgba(255,255,255,0.8);
}
*{box-sizing:border-box}
body{margin:0;font-family:Montserrat,system-ui,Arial,sans-serif;color:var(--black);background:var(--white);-webkit-font-smoothing:antialiased;}
.container{width:min(1200px,100% - 40px);margin:0 auto;padding:0 var(--container-pad);}

/* Header */
.site-header{position:fixed;top:0;left:0;right:0;z-index:60;transition:background .25s ease,box-shadow .25s ease;padding:12px 0}
.site-header.scrolled{background:#fff;box-shadow:0 6px 20px rgba(0,0,0,0.08);}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:12px}
.logo{height:56px;display:block}

/* Nav */
.nav-list{display:flex;gap:10px;list-style:none;margin:0;padding:0;align-items:center}
.nav-list a{text-decoration:none;color:var(--black);padding:8px 12px;border-radius:10px;font-weight:600}
.nav-cta{background:var(--gold);color:var(--white)}

/* Mobile toggle */
.mobile-toggle{display:none;background:none;border:0;font-size:20px}

/* Hero */
.hero-banner{display:block;position:relative;margin-top:80px;overflow:hidden}
.hero-img{width:100%;object-fit:cover;display:block}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg, rgba(216,140,12,0.08), rgba(0,0,0,0.12));mix-blend-mode:overlay;pointer-events:none}
.hero-content{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;padding:40px}
.hero-text{max-width:780px;text-align:center;background:rgba(255,255,255,0.85);padding:22px;border-radius:12px;box-shadow:0 12px 40px rgba(0,0,0,0.06)}
.hero-text h1{margin:0;font-size:36px;line-height:1.05;font-weight:700;color:var(--black)}
.hero-text h1 span{color:var(--gold)}
.lead{color:#333;margin-top:10px}
.hero-actions{margin-top:18px;display:flex;gap:12px;justify-content:center}
.btn{    display: inline-block;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 400;}
    
.btn-primary{background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    border-radius: 0px;}
    
    .btn-primary:hover {
   color: var(--gold);
    border-color:var(--gold);
   
}
.btn-outline{border:1px solid var(--black);color:var(--black);background:transparent;border-radius:0px}
.btn.btn-outline:hover {
    color: var(--gold);
    border-color: var(--gold);
}
/* Sections */
.section{padding:60px 0}
.section--about .about-grid{display:grid;grid-template-columns:1fr 360px;gap:28px;align-items:start}
.contact-card{background:#fff;padding:18px;border-radius:12px;box-shadow:0 8px 20px rgba(0,0,0,0.04)}
section#about {
    background: #f1d5a5;
}


/* Products */
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:18px}
/*.product{background:#fff;padding:14px;border-radius:12px;box-shadow:0 8px 20px rgba(0,0,0,0.04);text-align:center}
.img-placeholder{height:fit-content;border-radius:20px;display:flex;align-items:center;justify-content:center;background:linear-gradient(180deg,#f3efe9,#eae6df);color:#666} */
.center {
    text-align: center;
    margin-top: 50px;
}
.img-placeholder img {
    height: 378px;

    width: 100%;
  display: block;
  transition: transform 0.5s ease;
    border-radius: 20px;
}
/*----------------Bilal Custom Code ------------------*/
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.img-box {
  position: relative;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  object-fit: cover; /* no stretching */
  display: block;
}

/* Overlay slide left-to-right */
.img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  transition: left 0.5s ease;
  z-index: 1;
}

.img-box:hover::before {
  left: 0;
}

/* Overlay text (on image) */
.overlay-text {
      position: absolute;
    bottom: 30px;
    left: 30px;
    margin: 0;
    color: #fff;
    font-size: 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 2;
    font-family: 'Montserrat';
    font-weight: 500;
}

.img-box:hover .overlay-text {
  opacity: 1;
  transform: translateY(0);
}

/* Normal title (below image, always visible) */
.title {
    margin-top: 10px;
    font-family: "Montserrat", Sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
}

section#corporate p {
    text-align: center;
    font-size: 20px;
    padding-bottom: 30px;
}
section#corporate h2, section#customized h2 {
    font-family: "Montserrat", Sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #212529;
    text-align: center;
}

.product {
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-decoration: none; /* remove underline */
}


.overlay {
      position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000de;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
    z-index: 2;
}
.overlay img {
    max-width: -webkit-fill-available;
}

.product:hover .overlay {
  opacity: 0;
}

.product:hover img {
  transform: scale(1.08); /* thoda zoom */
}

/* CTA */
.cta-section {
  position: relative;
  width: 100%;
  min-height: 300px; /* adjust height */
  background: url('https://parfumery.co/wp-content/uploads/2025/06/maybach-custom-rock-diffuser.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* dark overlay */
}

.cta-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.cta-content h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-content .cta-btn {
  background: #c59d5f; /* golden / perfume tone */
  color: #fff;
  padding: 12px 28px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-content .cta-btn:hover {
  background: #a87f3a;
}

/* Footer */
.site-footer{border-top:1px solid #eee;background:#fff;padding:20px 0;margin-top:36px}
.footer-inner{display:flex;justify-content:space-between;align-items:center}

/* WhatsApp FAB */
.whatsapp-fab{position:fixed;right:18px;bottom:18px;background:var(--wa);color:#fff;padding:12px;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,0.12);display:flex;align-items:center;gap:8px;text-decoration:none;z-index:80}

/* small animations */
.hero-text{opacity:0;transform:translateY(10px);transition:opacity .6s ease,transform .6s ease}
.loaded .hero-text{opacity:1;transform:none}

/* responsive */
@media screen and (max-width: 600px){
  .hero-img{width:-webkit-fill-available;height: 100%;}
  .hero-text{padding:16px;margin:0 12px}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .section--about .about-grid{grid-template-columns:1fr}
  .nav-list{display:none}
  .mobile-toggle{display:inline-block}
  section#corporate h2, section#customized h2{font-size:30px;}
  .img-placeholder img{
    height: 250px;}
    section#about p{
    font-size: 20px;}
}
@media screen and (max-width:480px){
  .hero-img{width:-webkit-fill-available;height: 100%;}
  .hero-text h1{font-size:24px}
  .hero-text{padding:14px}
  .hero-actions{flex-direction:column}
  .product-grid{grid-template-columns:1fr}
}
