/* === Global Styles === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
  color: #333333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* === Header === */
header {
  background: #00805C;
  color: #fff;
  padding: 20px 0;
  margin-bottom: 30px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

header nav {
  text-align: center;
}

header nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1.1rem;
  transition: color 0.3s, border-bottom 0.3s;
  padding-bottom: 4px;
}

header nav a:hover {
  color: #E8F5F2;
  border-bottom: 2px solid #E8F5F2;
}

/* === Hero Section === */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: #E8F5F2;
  border-radius: 12px;
  margin-bottom: 40px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #00805C;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 8px;
}

.hero .highlight {
  font-weight: 600;
  color: #00664A;
  background: #d7f2eb;
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 12px;
  animation: pulse 2s infinite;
}

/* Highlight animation */
@keyframes pulse {
  0% { background: #d7f2eb; }
  50% { background: #c0ebdf; }
  100% { background: #d7f2eb; }
}

/* === Coupon Cards === */
.coupon {
  background: #F9F9F9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.2s;
}

.coupon:hover {
  box-shadow: 0 4px 12px rgba(0, 128, 92, 0.2);
  transform: translateY(-3px);
}

.coupon p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
}

.coupon span {
  font-weight: bold;
  color: #00805C;
  font-size: 1.2rem;
}

.coupon button {
  margin-top: 10px;
  background: #00805C;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.coupon button:hover {
  background: #00664A;
  transform: scale(1.05);
}

/* === Shop Button === */
.shop-btn-container {
  text-align: center;
  margin: 40px 0;
}

.shop-btn {
  display: inline-block;
  background: #00805C;
  color: #fff;
  padding: 16px 34px;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,128,92,0.2);
}

.shop-btn:hover {
  background: #00664A;
  transform: scale(1.08);
}

/* === Contact Form === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.contact-form label {
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: #F9F9F9;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00805C;
  outline: none;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(0,128,92,0.2);
}

.contact-form button {
  background: #00805C;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-form button:hover {
  background: #00664A;
}

/* === Footer === */
footer {
  background: #E8F5F2;
  color: #333;
  text-align: center;
  padding: 20px 10px;
  margin-top: 50px;
  font-size: 0.95rem;
}

footer a {
  color: #00805C;
  text-decoration: none;
  font-weight: 600;
  margin: 0 8px;
}

footer a:hover {
  color: #00664A;
  text-decoration: underline;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.6rem;
  }

  .hero h2 {
    font-size: 1.6rem;
  }

  .shop-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 14px;
  }

  .coupon {
    padding: 15px;
  }
}

