/* Florissima — /noivas */

:root {
  --rose: #cf848a;
  --rose-dark: #cf848a;
  --rose-soft: #d99aa9;
  --cream: #ffffff;
  --cream-deep: #f5f0ee;
  --ink: #cf848a;
  --line: #e7d9d3;
  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Jost", "Poppins", sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--rose);
  margin: 0 0 6px;
}

.eyebrow.light { color: #fff; opacity: 0.9; }

.script-heading {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 44px;
  color: var(--rose-dark);
  margin: 0 0 16px;
  line-height: 1.1;
}

/* Header (shared) */

header.site {
  position: relative;
  z-index: 10;
  width: 100%;
  background: var(--cream);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.logo { display: block; line-height: 0; }
.logo img { width: 100px; height: auto; display: block; transition: transform 0.25s ease; }
.logo:hover img { transform: scale(1.06); }

nav.main {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--rose);
}

nav.main a:not(.disabled) {
  position: relative;
  padding-bottom: 4px;
}

nav.main a:not(.disabled)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

nav.main a:not(.disabled):hover::after,
nav.main a.current::after {
  transform: scaleX(1);
  transform-origin: left;
}

nav.main a.disabled {
  color: var(--rose);
  opacity: 0.45;
  cursor: default;
}

/* Hero */

.noivas-hero {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.noivas-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.noivas-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(60, 30, 34, 0.6) 0%, rgba(60, 30, 34, 0.38) 45%, rgba(60, 30, 34, 0.08) 75%);
}

.noivas-hero-copy {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 32px 40px;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  right: 0;
}

.noivas-hero-logo {
  margin: 0 0 16px;
}

.noivas-hero-logo img {
  height: 110px;
  width: auto;
}

.noivas-hero-copy .lead {
  color: #fff;
  font-size: 15.5px;
  max-width: 460px;
  line-height: 1.6;
  margin: 0 0 28px;
  opacity: 0.95;
}

.noivas-hero-copy .scroll-hint {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.4px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: scroll-hint-bounce 2s ease-in-out infinite;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.noivas-hero-copy .scroll-hint:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Form */

.noivas-form {
  max-width: 720px;
  margin: 90px auto 0;
  padding: 0 32px 110px;
  text-align: center;
}

.form-lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 480px;
  margin: 0 auto 44px;
}

#noivas-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 28px;
  text-align: left;
}

.field-full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--rose);
  margin-bottom: 8px;
}

.field input,
.field select {
  width: 100%;
  border: none;
  border-bottom: 1.4px solid var(--line);
  background: transparent;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  color: var(--ink);
  padding: 8px 2px;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23cf848a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--rose);
}

.form-submit {
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 15px 36px;
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 13px;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.form-submit:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}

/* Footer (shared) */

footer.site {
  background: var(--cream-deep);
  text-align: center;
  padding: 26px 20px;
  font-size: 12.5px;
  color: var(--ink);
  border-top: 1px solid var(--rose);
}

/* Responsive */

@media (max-width: 900px) {
  .noivas-hero { height: 460px; }
}

@media (max-width: 560px) {
  .header-inner { flex-direction: column; align-items: center; padding: 16px 20px; gap: 12px; }
  nav.main { justify-content: center; flex-wrap: wrap; gap: 10px 16px; font-size: 10.5px; }
  .noivas-hero { height: 420px; }
  .noivas-hero-copy { padding: 0 20px 32px; }
  .noivas-hero-logo img { height: 80px; }
  .noivas-form { margin-top: 60px; padding: 0 20px 80px; }
  .noivas-form .script-heading { font-size: 30px; }
  #noivas-form { grid-template-columns: 1fr; }
}
