/* style.css */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
  padding-bottom: 60px;
}

/* Header */
header {
  background-color: #1f1f1f;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.logo img {
  height: 40px;
}

.cart {
  font-weight: bold;
}

.menu-btn {
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  position: relative;
  background: url('images/hero.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.hero h1 {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}
.hero .cta-button {
  position: relative;
  z-index: 2;
  background-color: #c1975c;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.hero .cta-button:hover {
  background-color: #a87e3a;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 20px;
  padding: 40px 20px;
}
.product {
  background-color: #fafafa;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.product img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 12px;
}
.product h2 {
  font-size: 18px;
  margin: 10px 0;
}
.product p {
  font-size: 16px;
  margin-bottom: 10px;
}
.product del {
  color: #999;
  margin-right: 6px;
}

/* Call Button */
.call-button {
  display: inline-block;
  background-color: #c1975c;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 25px;
  margin-top: 10px;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.call-button:hover {
  background-color: #a87e3a;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  z-index: 9999;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
  width: 36px;
  height: 36px;
}

/* About Section */
.about {
  padding: 30px 20px;
  background-color: #f7f7f7;
}
.about h2 {
  font-size: 24px;
  margin-bottom: 12px;
}
.about p {
  margin-bottom: 12px;
}
.about ul {
  list-style: none;
  padding: 0;
}
.about li {
  margin-bottom: 8px;
}

/* Map */
.map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  background-color: #1f1f1f;
  color: #fff;
  text-align: center;
  padding: 20px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
}
.footer-left p {
  margin-bottom: 6px;
}
.footer-links a {
  color: #c1975c;
  margin: 0 8px;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width:600px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero .cta-button {
    font-size: 14px;
    padding: 10px 20px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
}