/* ========== RESET & GLOBAL ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
  font-family: 'Assistant', sans-serif;
  background: linear-gradient(135deg, #FF90BB, #508991);
  color: #fff;
  overflow-x: hidden;
}

/* ========== HEADER ========== */
header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
}

.header-logo {
  text-decoration: none;
  display: block;
}

.header-logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

.header-logo .pink {
  color: #B33C73; /* Deep plum-pink */
}

.header-logo .green {
  color: #508991;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: #E2E2B6;
  font-weight: bold;
}

/* ========== MAIN SECTIONS ========== */
main {
  width: 100%;
}

section {
  min-height: 100vh;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.section-text,
.main-text {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 700px;
  opacity: 0.9;
}

.hero h1 {
  font-size: 4rem;
}

.hero h1 .pink {
  color: #FF90BB;
}

.hero h1 .green {
  color: #508991;
}

.hero h2 {
  font-size: 2.5rem;
  margin: 20px 0 10px 0;
}

.highlight-pink {
  color: #FFBDF7;
}

.highlight-green {
  color: #79C99E;
}

/* ========== CTA ========== */
.cta {
  background: #fff;
  color: #045762;
  padding: 14px 30px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  margin-top: 40px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta:hover {
  background: #F8F8F8;
}

/* ========== FOOTER ========== */
footer {
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
  padding: 40px 20px;
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 200px;
}

/* Ensure footer-right nav aligns right on larger screens */
.footer-right {
  display: flex;
  justify-content: flex-end;
}

.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.footer-right ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

/* Center footer-center content */
.footer-center {
  text-align: center;
}

.footer-left {
  text-align: left;
}

footer a.instagram-handle {
  color: #04fc00;
}

/* Responsive adjustments for small screens */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-right ul {
    align-items: center;
  }
}

/* ========== CONTACT LINK ========== */
.contact-link {
  color: #FF90BB;
  text-decoration: none;
}

.contact-link:hover {
  color: #508991;
}

/* ========== FORM STYLES ========== */
.form-container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="url"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

input[type="submit"] {
  background-color: #03346E;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

/* ========== FADE-IN ANIMATION ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}