:root {
  --magenta-main: #9E4770;
  --magenta-accent: #B25088;
  --plum-dark: #833B5B;
  --charcoal: #2A2A2E;
  --light-grey: #F6F6F6;
  --text-light: #FFFFFF;
  --text-dark: #1E1E1E;
}

body {
  margin: 0;
  font-family: sans-serif;
  background-color: var(--charcoal);
  color: var(--text-light);
}

header {
  background: var(--charcoal);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--magenta-main);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav ul {
	flex-direction: column;
	background: var(--charcoal);
	position: absolute;
	top: 60px;
	right: 0;
	width: 200px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
  }

  nav ul.show {
	max-height: 500px; /* Enough space for all menu items */
  }

  nav ul.show li a {
	display: block;
	padding: 0.5rem 1rem;
	margin-bottom: 0.3rem;
  }

  .menu-toggle {
	display: block;
  }
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--light-grey);
  color: var(--text-dark);
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.button {
  display: inline-block;
  background-color: var(--magenta-main);
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
}

.button:hover {
  background-color: var(--magenta-accent);
  color: #fff;
}

.section {
  padding: 3rem 2rem;
}

.section.light {
  background: var(--light-grey);
  color: var(--text-dark);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--charcoal);
  padding: 1.5rem;
  border-left: 4px solid var(--magenta-main);
  color: var(--text-light);
}

.feature p {
  margin-bottom: auto;
}
.feature img {
  width: 100%;
  border-radius: 4px;
}

.why-magenta {
  background: var(--magenta-main);
  color: var(--text-light);
  display: flex;
  justify-content: center;
  padding: 3rem 2rem;
}

.why-magenta .content {
  max-width: 700px;
  text-align: left;
}

.why-magenta ul {
  list-style: none;
  padding: 0;
}

.why-magenta li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.image-placeholder {
  width: 100%;
  height: 200px;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  margin-top: 1rem;
  font-style: italic;
}

footer {
  background: var(--charcoal);
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  font-size: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  border: none;
  background: #fff;
  color: #000;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
  background-image: url("/img/logo-watermark-faint.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 120px;
  opacity: 0.95;
}

.contact-form button {
  background: var(--magenta-main);
  color: var(--text-light);
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
}

.contact-form button:hover {
  background: var(--magenta-accent);
}


.section.light a {
  color: var(--magenta-main);
  text-decoration: none;
  font-weight: normal;
  transition: color 0.2s ease;
}

.section.light a:hover {
  color: var(--magenta-accent);
  text-decoration: underline;
}

.section.light a.button {
  color: #fff !important;
  background-color: var(--magenta-main);
  font-weight: bold;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.section.light a.button:hover {
  background-color: var(--magenta-accent);
  color: #fff !important;
}

input::placeholder,
textarea::placeholder {
  font-family: sans-serif;
  font-size: 1rem;
  color: #888;
  opacity: 1; /* ensure it's visible in all browsers */
}

input,
textarea {
  font-family: sans-serif;
}

.light-feature {
  background: #f6f6f6;
  color: #111;
}