/* styles.css */

:root {
  --mint-light: #e6fff5;
  --mint: #98f5e1;
  --mint-dark: #55cbb1;
  --text: #333;
  --bg: #fff;
  --title-font: 'Catchy Mager', cursive;
  --body-font: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
}

h1, h2 {
  font-family: var(--title-font);
  color: var(--mint-dark);
}

a {
  color: var(--mint-dark);
  text-decoration: none;
  font-weight: 500;
}

.parallax {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--text);
}

.hero {
  background-image: url('images/hero.jpg');
}

.candles {
  background-image: url('images/candles.jpg');
}

.satin {
  background-image: url('images/satin.jpg');
}

.totebags {
  background-image: url('images/totebag.jpg');
}

.overlay {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  border-radius: 10px;
}

.content {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: auto;
}

footer {
  background-color: var(--mint-dark);
  color: var(--bg);
  text-align: center;
  padding: 1rem;
}

footer .social a {
  margin: 0 10px;
  color: var(--bg);
  font-weight: bold;
}

.whatsapp-button {
  background-color: #25D366;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}
