/* General styles */
body {
  margin: 0;
  padding: 0;
  font-family: Garamond, serif;
  background-color: #f9f6f3;
  color: #333;
  text-align: center;
  scroll-behavior: smooth;
}


.intro {
  padding-bottom: 50px; /* adjust to control spacing */
}


/* Background section */
.hero {
  background: url("image.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 0;
}

/* Mobile override with different image */
@media (max-width: 768px) {
  .hero {
    background: url("image-mobile.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    min-height: 100vh;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 0;
}

/* Layout */
section {
  padding: 100px 20px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Override ambassador section padding */
.ambassador {
  padding-bottom: 0 !important;
}

/* Typography */
.brand {
  font-family: Garamond, serif;
  font-size: 3rem;
  margin: 0;
  letter-spacing: 1px;
  font-weight: 400;
}

.season-tag {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 10px;
  color: #555;
  font-family: Garamond, serif;
}

.invitation-tag {
  font-size: 1.2rem;
  font-style: italic;
  margin-top: -10px;
  margin-bottom: 20px;
  color: #666;
  letter-spacing: 0.5px;
}

.location {
  font-family: Garamond, serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0.5rem 0;
}

.divider {
  border: none;
  height: 1px;
  background-color: #ccc;
  margin: 20px auto;
  width: 80px;
}

.cta-button {
  display: inline-block;
  background-color: #f1eef3;
  color: #111;
  font-family: Garamond, serif;
  padding: 12px 28px;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #e3e0e6;
}

.description {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  color: #444;
}

/* Section styles */
.manifesto p {
  font-size: 1.2rem;
  font-style: italic;
  margin: 30px 0;
  color: #555;
}

.scarcity h2 {
  font-size: 1.5rem;
  margin-bottom: 1em;
  font-family: Garamond, serif;
}

.scarcity p {
  font-size: 1rem;
  color: #666;
}

.ambassador h2 {
  font-family: Garamond, serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.ambassador p {
  margin-bottom: 30px;
  color: #666;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 0;
}

input, textarea {
  background: #f1f1f1;
  border: 1px solid #ccc;
  color: #000;
  padding: 12px;
  font-size: 0.95rem;
  border-radius: 4px;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

button {
  background: #000;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 4px;
  margin-bottom: 0;
}

button:hover {
  background: #222;
}

/* Mini logo under form */
.mini-logo {
  margin-top: 0;
  padding-top: 5px;
  padding-bottom: 70px;
}

.mini-logo .brand.mini {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
}

.mini-logo .location.mini {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0.25rem 0;
  color: #777;
}

/* Footer */
footer {
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 0.9rem;
}

.footer-links a {
  margin: 0 10px;
  color: #555;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-links a:hover {
  color: #000;
}

/* Spacer utilities */
.spacer {
  display: block;
  height: 20px;
}

.spacer-11 {
  display: block;
  height: 11px;
}

.spacer-40 {
  display: block;
  height: 40px;
}

.spacer-50 {
  display: block;
  height: 50px;
}

.spacer-63 {
  display: block;
  height: 63px;
}

.spacer-100 {
  display: block;
  height: 100px;
}


.spacer-50 {
  display: block;
  height: 50px;
}

.spacer-20 {
  display: block;
  height: 20px;
