@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Poppins:wght@400;500;600&display=swap');
:root{
  --bg:#f9f7f2;
  --accent:#6f4e37;
  --muted:#e9e2d8;
  --text:#333;
  --whatsapp:#25D366;
}
*{box-sizing:border-box}
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #faf9f6;
    color: #333;
  }

  /* HEADER LAYOUT */
header {
  display: flex;
  justify-content: center;   /* center content horizontally */
  align-items: center;
  padding: 15px 30px;
  position: relative;        /* allows positioning offer at right */
  background: rgb(82, 33, 29); 
  color: #f5deb3;
  border-bottom: 2px solid #b8860b;
}

/* CENTER BRAND */
.brand-center-wrapper {
  text-align: center;
}

.brand-logo {
  width: 130px;   /* adjust size as needed */
  height: auto;
  display: block;
  margin: 0 auto 5px;
}

.tagline {
  font-size: 0.95em;
  color: #e6c689;
  margin: 0;
}

/* OFFER TO THE RIGHT */
.offer {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: #b8860b;
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: 600;
  white-space: nowrap;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding-bottom: 60px; /* space for offer badge */
  }

  .offer {
    position: relative;
    right: 0;
    top: 15px;
    transform: none;
    margin-top: 10px;
  }

  .brand-logo {
    width: 110px;
  }
}

html {
  scroll-behavior: smooth;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #b8860b;
  border-bottom: 2px solid #b8860b;
}

nav a {
  text-decoration: none;
  color: #f8f5f0;
  padding: 12px 18px;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}

nav a:hover {
  background: #b8860b;
  color: white;
}

/* DROPDOWN MENU */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .nav-link {
  padding: 12px 18px;
  display: inline-block;
  color: #f8f5f0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #3b2f2f;
  min-width: 200px;
  border: 1px solid #b8860b;
  z-index: 1000;
}

.dropdown-content a {
  color: #f5deb3;
  padding: 10px 15px;
  display: block;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #b8860b;
  color: white;
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-content {
  display: block;
}

/* KEEP DROPDOWN ABOVE OTHER ELEMENTS */
nav {
  position: relative;
  z-index: 100;
}


/* Hero Section */
/* Hero Section – full image, no cropping */
.hero {
  background: #662c08 url("images/home_page_background.jpg") center center / cover no-repeat;
  height: 100vh;                 /* show full image in one screen */
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;           /* center horizontally */
  position: relative;
}

/* Slight overlay for text readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(43, 32, 26, 0.45);
  z-index: 0;
}

.hero h2,
.hero p,
.hero a {
  position: relative;
  z-index: 1;
}

/* Text alignment */
.hero h2 {
  font-size: 2.4rem;
  color: #fff;
  max-width: 80%;
  margin: 0 auto 15px;
}

.hero p {
  max-width: 650px;
  margin: 0 auto 25px;
}

/* Button */
.hero a {
  margin: 0 auto;
  background: #d4a017;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.hero a:hover {
  background: #b8860b;
  transform: scale(1.05);
}

/* Smooth fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h2, .hero p, .hero a {
  animation: fadeIn 1.2s ease forwards;
}
.hero p { animation-delay: 0.3s; }
.hero a { animation-delay: 0.6s; }

/* Mobile optimization */
@media (max-width: 600px) {
  .hero {
    height: 65vh;
    padding: 0 15px;
  }
  .hero h2 {
    font-size: 1.8em;
  }
  .hero p {
    font-size: 1em;
  }
}


/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}
.features div {
  background: #fffaf0;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.features div:hover {
  transform: translateY(-5px);
}

/* Brochure Download */
.download-brochure {
  text-align: center;
  margin: 40px auto;
  padding: 25px;
  background: #f9f4ea;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.download-brochure p {
  margin-bottom: 12px;
  font-size: 1.1em;
  color: #444;
}
.download-brochure a {
  display: inline-block;
  padding: 10px 25px;
  background: #b8860b;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
}
.download-brochure a:hover {
  background: #9a740a;
}

.container{max-width:1000px;margin:auto;padding:2.5rem 1rem}
h2{color:#5c3d2a;border-bottom:2px solid #d7c7b0;display:inline-block;padding-bottom:0.3rem;margin-top:0}
.gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.2rem;margin-top:1rem}
.product-card{border:1px solid #ddd;border-radius:8px;background:white;padding:1rem;text-align:center;box-shadow:0 2px 5px rgba(0,0,0,0.06)}
.product-card img {
  width: 100%;
  height: auto;        /* allow natural height */
  max-height: 200px;   /* unify height visually */
  object-fit: contain; /* show full image without cutting */
  background: #fff;    /* clean look for transparent areas */
  border-radius: 8px;
  padding: 5px;        /* adds clean spacing */
}

.product-card h3{margin:0.6rem 0;color:var(--accent)}
.product-card p{color:#555;font-size:0.95rem;margin:0}
/* WhatsApp Floating Button */
.fab-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.fab-whatsapp img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 600px) {
  .hero h2 { font-size: 1.8em; }
  .hero p { font-size: 1em; }
  nav a { padding: 10px 14px; }
}

/* Footer */
footer {
  text-align: center;
  background: #1f1a17;
  color: #f5deb3;
  padding: 20px 10px;
  margin-top: 40px;
  font-size: 0.95em;
  letter-spacing: 0.5px;
  border-top: 2px solid #b8860b;
}
.fab-whatsapp{position:fixed;right:20px;bottom:20px;width:60px;height:60px;border-radius:50%;background:var(--whatsapp);display:flex;align-items:center;justify-content:center;box-shadow:0 6px 18px rgba(0,0,0,0.2);z-index:9999}
.fab-whatsapp img{width:34px;height:34px}
@media (max-width:600px){
  header{flex-direction:column;text-align:center}
  header .offer{margin-top:0.8rem}
  header .brand p{font-size:0.9rem}
}

/* Full width luxury incense image */
.luxury-full {
  max-width: 1200px;
  padding-top: 20px;
}

.luxury-image-wrapper {
  width: 100%;
  margin-top: 20px;
}

.luxury-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}
/* Luxury incense – centered, medium-size image */
.luxury-image-wrapper.small {
  width: 50%;               /* controls image size */
  margin: 25px auto;        /* centers image */
}

.luxury-image-wrapper.small img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  display: block;
}

/* MOBILE NAVIGATION */
.mobile-nav {
  display: none;
  background: #b8860b;
  color: white;
  padding: 10px;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#hamburgerBtn {
  font-size: 26px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  margin-top: 10px;
  background: #3b2f2f;
  border-radius: 6px;
  padding: 10px;
}

.mobile-menu a {
  color: #f5deb3;
  padding: 10px 0;
  text-decoration: none;
  display: block;
}

.mobile-menu details summary {
  padding: 10px 0;
  cursor: pointer;
  color: #f5deb3;
}

.mobile-menu details a {
  padding-left: 15px;
}

/* SHOW MOBILE NAV ONLY ON SMALL SCREENS */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }
}

