:root {
  --primary: #a66b4f;
  --secondary: #f3e9e3;
  --accent: #d4a373;
  --dark: #3b2f2f;
}

* {
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: var(--dark);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 40px;
  background: rgba(255,255,255,0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo-icon {
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 50%;
  margin-right: 8px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--dark);
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  bottom: 25%;
  left: 8%;
  background: rgba(255,255,255,0.85);
  padding: 30px;
  border-radius: 15px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
}

/* SECTIONS */
 .collection, .contact {
  padding: 100px 60px;
  text-align: center;
}

.collection {
  background: var(--secondary);
}

.filters button {
  margin: 10px;
  padding: 10px 20px;
  border: none;
  background: var(--primary);
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
}

.products {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.products img {
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
  transition: transform .4s, box-shadow .4s;
}

.products img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 80%;
  border-radius: 15px;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* =====================
   WHATSAPP FLOAT BUTTON
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 58px;
  height: 58px;

  background: #25d366;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 28px;

  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 1000;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
}

/* Soft pulse animation */
.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: whatsappPulse 2.2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Mobile positioning */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}


/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: .8s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    padding: 20px;
  }

  nav.active {
    display: block;
  }

  .hamburger {
    display: block;
  }
}

.why-us {
  padding: 100px 60px;
  background: #fff;
  text-align: center;
}

.why-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.why-grid div {
  padding: 25px;
  border-radius: 15px;
  background: var(--secondary);
}

.shop-room {
  padding: 80px 60px;
  text-align: center;
  background: var(--secondary);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.room-grid div {
  padding: 30px;
  background: white;
  border-radius: 15px;
  font-weight: 600;
  transition: transform 0.3s;
}

.room-grid div:hover {
  transform: translateY(-6px);
}



.footer {
  background: var(--dark);
  color: white;
  padding: 60px 50px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
}

.footer h3, .footer h4 {
  margin-bottom: 15px;
}

.footer a {
  display: block;
  color: #ddd;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer a:hover {
  color: var(--accent);
}

.socials span {
  margin-right: 10px;
  font-size: 20px;
  cursor: pointer;
}

.footer p {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}


/* =====================
   TIPS SECTION
===================== */
.tips {
  padding: 100px 60px;
  background: linear-gradient(135deg, #fffaf6, var(--secondary));
  text-align: center;
}

.tips h2 {
  font-size: 32px;
  margin-bottom: 50px;
  color: var(--dark);
}

.tips ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.tips li {
  background: white;
  padding: 35px 30px;
  border-radius: 18px;
  text-align: left;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tips li:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* ICON CIRCLES */
.tips li::before {
  content: "🪑";
  position: absolute;
  top: -20px;
  left: 25px;
  background: var(--primary);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* DIFFERENT ICONS */
.tips li:nth-child(1)::before { content: "📐"; }
.tips li:nth-child(2)::before { content: "🎨"; }
.tips li:nth-child(3)::before { content: "💰"; }

.tips li strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary);
}


/* =====================
   CONTACT SECTION – PROFESSIONAL
===================== */
.contact {
  padding: 70px 40px;
  background: #f8f5f2;
  color: #333;
  text-align: center;
}

/* Heading */
.contact h2 {
  font-size: 2.2rem;
  color: #6b3f2b;
  margin-bottom: 35px;
  position: relative;
}

.contact h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #d08c60;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

/* Contact info container */
.contact p {
  max-width: 900px;
  margin: 12px auto;
  padding: 14px 18px;

  background: #ffffff;
  border-radius: 14px;

  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;

  font-size: 1rem;
  color: #444;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover – subtle & professional */
.contact p:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

/* Emoji / icon styling */
.contact p span,
.contact p::first-letter {
  font-size: 1.3rem;
  color: #d08c60;
}

/* Responsive */
@media (min-width: 768px) {
  .contact {
    padding: 80px 60px;
  }

  .contact p {
    grid-template-columns: auto 1fr;
    text-align: left;
  }
}


/* ICON SIZE */
.contact p span,
.contact p::first-letter {
  font-size: 20px;
}



/* =====================
   ABOUT SECTION
===================== */
/* ABOUT SECTION */
.about {
  max-width: 900px;
  margin: 80px auto;
  padding: 50px 40px;
  background: linear-gradient(135deg, #fff7f2, #ffffff);
  border-radius: 20px;
  text-align: center;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  display: flex;
  flex-direction: column; /* 🔑 keeps heading on top */
  gap: 20px;

  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}

/* Heading */
.about h2 {
  font-size: 2.4rem;
  color: #6b3f2b;
  letter-spacing: 1px;
  position: relative;
}

/* Decorative underline */
.about h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #d08c60;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

/* Description text */
.about p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Reveal animation */
.about.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* =====================
   NAVBAR
===================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 14px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 248, 244, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  z-index: 1000;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 42px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
}

/* NAV LINKS */
#nav-menu {
  display: flex;
  gap: 32px;
}

#nav-menu a {
  text-decoration: none;
  font-weight: 500;
  color: #444;
  position: relative;
  transition: color 0.3s ease;
}

#nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

#nav-menu a:hover {
  color: var(--primary);
}

#nav-menu a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

