/* Custom Highlight Colors for Adore Women */

.brown {
    color: #8B5E3C;
}

.purple {
    color: #6A1B9A;
}

.pink {
    color: #E75480;
}

.gold {
    color: #C9A227;
}



/* Marie Claire Inspired Newsletter Design with Background Image */

.aw-newsletter {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px;
  color: #ffffff;
}

/* Dark overlay for readability */
.aw-newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.aw-newsletter-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.aw-newsletter-title {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.aw-newsletter-subtext {
  font-size: 18px;
  line-height: 1.7;
  color: #f1f1f1;
  margin-bottom: 40px;
}

.aw-newsletter-form input {
  width: 100%;
  padding: 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 16px;
  background: rgba(255,255,255,0.9);
}

.aw-newsletter-form button {
  width: 100%;
  padding: 18px;
  background-color: #E10600;
  color: #ffffff;
  border: none;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.aw-newsletter-form button:hover {
  opacity: 0.85;
}

.aw-newsletter-disclaimer {
  font-size: 12px;
  color: #dddddd;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .aw-newsletter-form {
    display: flex;
    gap: 15px;
  }

  .aw-newsletter-form input {
    margin-bottom: 0;
  }

  .aw-newsletter-form button {
    width: auto;
    padding: 18px 40px;
  }
}