/* GLOBAL PAGE STYLING */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* NAVIGATION */
.header {
  background: #fff;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #e573b5;
}

/* HERO HEADERS */
.hero-section h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* CONTACT PAGE STYLES */
.contact-section {
  padding: 3rem 1.5rem 5rem;
}

.contact-container {
  max-width: 750px;
  margin: 0 auto;
  background: #ffffffcc;
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="subject"],
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  font-size: 1rem;
  font-family: inherit;
  background: white;
}

.contact-form textarea {
  resize: vertical;
}

.newsletter-optin {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.submit-button {
  margin-top: 1rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: #e573b5;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.submit-button:hover {
  background: #d262a2;
}

.contact-footnote {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.75;
}

/* FOOTER */
.footer {
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #777;
}
