@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f6f2ee;
  font-family: "Montserrat", sans-serif;
  color: #2f2a26;
}

.page {
  max-width: 460px;
  margin: 0 auto;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 40px 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.33), rgba(255,255,255,0.48)),
    url("https://i.imgur.com/N8IF0kI.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(18%) brightness(1.08);
  z-index: 0;
}

.hero-top {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 8px;
}

.save {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: #65564f;
}

.hero-center {
  position: absolute;
  left: 50%;
  bottom: 15%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 26px;
  text-align: center;
  z-index: 2;
}

.hero-line {
  width: 74px;
  height: 1px;
  background: rgba(80, 63, 55, 0.42);
  margin: 0 auto 22px;
}

.hero-line.bottom {
  margin: 22px auto 0;
}

.names {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0;
  color: #1f1a17;
  text-shadow:
    0 2px 12px rgba(255,255,255,0.72),
    0 6px 22px rgba(0,0,0,0.14);
}

.names .line {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.5px;
}

/* 🔥 AQUÍ ESTÁ EL AJUSTE */
.names .and {
  font-family: "Allura", cursive;
  font-size: 2.6rem;
  line-height: 1;
  color: #8f6e60;
  margin: 2px 0;
  transform: translateX(-8px); /* ← mueve ligeramente a la izquierda */
}

.hero-subtitle {
  margin: 14px 0 0;
  font-family: "Allura", cursive;
  font-size: 2rem;
  color: #6b564c;
  line-height: 1.1;
}

.hero-note {
  margin: 8px auto 0;
  max-width: 270px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #5f534d;
}

/* DETAILS */
.details {
  padding: 56px 20px 78px;
}

.details-inner {
  max-width: 360px;
  margin: 0 auto;
}

.photos-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.photo {
  height: 300px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 30px rgba(54, 38, 31, 0.08);
  border: 6px solid rgba(255,255,255,0.55);
}

.photo-left {
  background-image: url("https://i.imgur.com/9eWkg08.jpg");
}

.photo-right {
  background-image: url("https://i.imgur.com/sobwlZl.jpg");
}

.details-content {
  text-align: center;
}

.mini {
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #a18578;
}

/* DATE */
.date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 18px;
}

.date-day {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.4rem;
  line-height: 1;
  color: #2a2522;
}

.date-divider {
  width: 58px;
  height: 1px;
  background: rgba(121, 99, 88, 0.36);
  margin: 8px 0 10px;
}

.date-month {
  font-family: "Allura", cursive;
  font-size: 2.2rem;
  color: #8f6e60;
  line-height: 1;
}

.date-year {
  margin-top: 4px;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6c615b;
}

.place {
  margin: 0;
  font-size: 0.95rem;
  color: #6c615b;
}

.special-text {
  margin: 14px 0 0;
  font-family: "Allura", cursive;
  font-size: 1.8rem;
  color: #7b6155;
  line-height: 1.2;
}

/* COUNTDOWN */
.countdown-line {
  margin: 26px 0 34px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #2a2522;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.countdown-line span {
  font-size: 2rem;
}

.countdown-line small {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8b766a;
  margin-right: 6px;
}

.countdown-line .dot {
  font-size: 1.2rem;
  color: #b7a59a;
  margin: 0 4px;
}

/* INFO */
.info-card {
  padding: 24px 20px;
  border-radius: 24px;
  background: #fff;
  margin-bottom: 40px;
}

.hotel-box {
  margin-top: 20px;
  padding: 16px;
  background: #f3ede8;
  border-radius: 16px;
}

.hotel-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  margin: 0 0 6px;
}

.hotel-text {
  font-size: 0.85rem;
  color: #6c615b;
}

/* CONTACT */
.contact-title {
  font-family: "Allura", cursive;
  font-size: 2.2rem;
}

input, textarea {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #ddd;
}

button {
  padding: 14px;
  background: #2a2522;
  color: white;
  border-radius: 14px;
  border: none;
}