@charset "UTF-8";
/* CSS Document */
:root {
  /* Brand Colors */
  --dawn-pink: #FF2D74;
  --champagne-blonde: #F1E5D2;
  --ivory-glow: #FCFAF7;
  --warm-nude: #EED9C4;
  --peach-sunbeam: #FFC8A9;
  --soft-gold: #DAB786;
  --espresso: #3F2F2B;

  --max-width: 1150px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
	  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--ivory-glow);
  color: var(--espresso);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
	  height: 100%;
}

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

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

.page {
  min-height: 100vh;          /* fills the viewport */
  display: flex;
  flex-direction: column;
}

/* Make single-section pages stretch to meet the footer (no blank gap) */
.page > section:only-of-type {
  flex: 1 0 auto;
}

/* Optional: if you ever wrap content in <main>, this also works nicely */
.page > main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.page > main > section:only-of-type {
  flex: 1 0 auto;
}


/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

@media (min-width: 900px) {
  section {
    padding: 5rem 0;
  }
}

/* Header / Nav */
header {
  position: sticky;
  top: 0;
  z-index: 20;
	width: 100%;
  background: rgba(252, 250, 247, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(218, 183, 134, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 0;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  letter-spacing: 0.04em;
}

.logo-main {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--dawn-pink);
}

.logo-sub {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--dawn-pink);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

nav a {
  position: relative;
  padding-bottom: 0.1rem;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--dawn-pink);
  transition: width 0.25s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Active page highlight (optional) */
nav a.active {
  color: var(--dawn-pink);
}

nav a.active::after {
  width: 100%;
}



.btn-nav {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: var(--dawn-pink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(255, 45, 116, 0.25);
  cursor: pointer;
}

/* Prevent underline hover effect on Book Now button */
.btn-nav,
a.btn-nav {
  position: relative;
}

.btn-nav::after {
  display: none !important;
  content: none !important;
}

.btn-nav:hover {
  opacity: 0.93;
}

.nav-toggle {
  display: none;
}

@media (max-width: 720px) {
  nav ul {
    display: none;
  }

  .nav-toggle {
    display: block;
    border: none;
    background: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--dawn-pink);
  }
}

/* Hero */
.hero {
background: linear-gradient(160deg, #fbe3ec, #f7d9b9);
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--soft-gold);
  margin-bottom: 0.8rem;
}

.hero-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.1rem, 3vw + 1.4rem, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--espresso);
}

.hero-highlight {
  color: var(--dawn-pink);
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 32rem;
  color: #6a5648;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.5rem;
}


.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;   /* NEW: ensures even cropping */
  display: block;
}



.btn-primary {
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  background: var(--dawn-pink);
  color: #fff;
  border: none;
  font-size: 0.94rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 17px 35px rgba(255, 45, 116, 0.32);
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-outline {
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--dawn-pink);
  color: var(--dawn-pink);
  background: transparent;
  font-size: 0.94rem;
  font-weight: 500;
  cursor: pointer;
}

.hero-note {
  font-size: 0.85rem;
  color: #8a7462;
}

.hero-image {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.hero-image .image-placeholder {
  border-radius: 34px;
  background: white;
  box-shadow: 0 25px 60px rgba(63, 47, 43, 0.28);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;

  /* NEW: true frame instead of padding */
  border: 6px solid white;      /* adjust thickness as you like */
  box-sizing: border-box;
}


.hero-image .image-placeholder span {
  font-size: 0.85rem;
  color: rgba(63, 47, 43, 0.65);
  background: rgba(252, 250, 247, 0.85);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

.hero-tag {
  position: absolute;
  bottom: 1.2rem;   /* distance from bottom */
  right: 1.2rem;    /* distance from right */
  margin: 0;        /* prevent inherited spacing */
  background: #fff7f8;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  color: var(--dawn-pink);
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--dawn-pink);
}

/* Section titles */
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--soft-gold);
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--espresso);
}

.section-intro {
  max-width: 32rem;
  font-size: 0.96rem;
  color: #715d50;
}

/* About */
.about {
  background: linear-gradient(160deg, #fbe3ec, #f7d9b9);
}

.about-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .about-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}
}

.about-card {
  background: rgba(255, 255, 255, 0.6);
  border: 3px solid #E7C7A1;
  box-shadow: 
    0 0 75px rgba(255, 138, 160, 0.35);
	
  border-radius: 1.5rem;
  padding: 2rem;
}

.about-list {
  margin-top: 1.25rem;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
}

.about-list li::before {
  content: "✶";
  color: var(--dawn-pink);
  margin-right: 0.4rem;
  font-size: 0.75rem;
}

.about-image {
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #ffe1f0, #ffe9cf);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(63, 47, 43, 0.6);
  font-size: 0.9rem;
  padding: 1.2rem;
  text-align: center;
}

/* Gallery preview */
.gallery-preview {
  background: linear-gradient(160deg, #fbe3ec, #f7d9b9);
}

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 840px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-card {
  border-radius: 1.2rem;
  overflow: hidden;
  background: linear-gradient(145deg, #ffe0eb, #ffe8cf);
  position: relative;
  aspect-ratio: 3/4;
  box-shadow: 0 18px 40px rgba(63,47,43,0.16);
}

.gallery-card-label {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  background: rgba(252, 250, 247, 0.9);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--espresso);
}

/* Rates */
.rates {
  background: linear-gradient(160deg, #fbe3ec, #f7d9b9);
}

.rates-inner {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 820px) {
  .rates-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.rate-table {
  background: rgba(255, 255, 255, 0.6);
  border: 3px solid #E7C7A1;
  box-shadow: 
    0 0 75px rgba(255, 138, 160, 0.35);

  border-radius: 1.3rem;
  padding: 1.8rem 1.6rem;
  font-size: 0.95rem;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(63,47,43,0.18);
}

.rate-row:last-child {
  border-bottom: none;
}

.rate-duration {
  font-weight: 500;
}

.rate-notes {
  margin-top: 3rem;
	  margin-bottom: 3rem;
  font-size: 0.85rem;
  color: #6c594d;
}

/* FIX: last row should not have a divider (because rate-notes comes after rows) */
.rate-table .rate-row:last-of-type {
  border-bottom: none;
  padding-bottom: 1rem;
}

/* Optional (but makes it look cleaner/like a “separate note” section) */
.rate-table .rate-notes {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(63, 47, 43, 0.18);
}

.engagement-details {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(218, 183, 134, 0.26);
  max-width: 34rem;              /* keeps the text column narrow = less cluttered */
}

.details-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: rgba(63, 47, 43, 0.9);
  font-family: "Playfair Display", serif;
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.details-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.55rem;
  color: rgba(63, 47, 43, 0.78);
  font-size: 0.93rem;
  line-height: 1.5;
}

/* soft custom bullet instead of heavy default dot */
.details-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 0.7rem;
  color: var(--dawn-pink);
}

.details-list li strong {
  font-weight: 600;
  color: rgba(63, 47, 43, 0.95);
}

.details-note {
  margin-top: 0.9rem;
  color: rgba(63, 47, 43, 0.6);
  font-size: 0.9rem;
}


/* Testimonials */
.testimonials {
  background: var(--ivory-glow);
}

.testimonials-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.7rem;
}

@media (min-width: 860px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

.testimonial-card {
  background: #fffdf9;
  border-radius: 1.2rem;
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: 0 14px 32px rgba(63,47,43,0.12);
  font-size: 0.9rem;
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 0.9rem;
  color: #6f5e54;
}

.testimonial-name {
  font-weight: 500;
  font-size: 0.86rem;
  color: var(--espresso);
}

/* Etiquette */
.etiquette {
  background: linear-gradient(160deg, #fbe3ec, #f7d9b9);
}

.etiquette-inner {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .etiquette-inner {
    grid-template-columns: minmax(0, 1.1fr);
  }
}

.etiquette-columns {
  display: grid;
  gap: 1.8rem;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .etiquette-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.etiquette-card {
  background: rgba(255, 255, 255, 0.6);
  border: 3px solid #E7C7A1;
  box-shadow: 
    0 0 75px rgba(255, 138, 160, 0.35);
	
  border-radius: 1.4rem;
  padding: 1.8rem 1.6rem;
  font-size: 0.94rem;
}

.etiquette-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: rgba(63, 47, 43, 0.95);
}

.etiquette-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.etiquette-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(63, 47, 43, 0.8);
  line-height: 1.5;
  font-size: 0.9rem;
}

.etiquette-list li::before {
  content: "✶";
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 0.7rem;
  color: var(--dawn-pink);
}

.etiquette-list strong {
  font-weight: 600;
  color: rgba(63, 47, 43, 0.95);
}

.etiquette-note {
  margin-top: 1.5rem;
  max-width: 40rem;
  font-size: 0.9rem;
  color: rgba(63, 47, 43, 0.7);
}

.contact-email a {
  font-size: 1.1rem;
  font-weight: 500;
  color: #c9a24d; /* gold accent */
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* Tighten spacing before verification bullet lists */
.verification-item ul {
  margin-top: 0.15rem;      /* KEY: kills the extra gap */
  margin-bottom: 0.9rem;
  padding-left: 1.4rem;
}

/* Step headings + lists: remove the "floating gap" */
.verification-item .step-title{
  display:block;
  margin: 0.6rem 0 0.15rem;   /* tiny gap above, almost none below */
  line-height: 1.2;          /* tighter than body line-height */
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Force UL to start immediately under the step title */
.verification-item .step-list{
  margin: 0;                 /* KEY: kills any top gap */
  padding-left: 1.6rem;      /* indentation */
  margin-bottom: 0.9rem;     /* controlled spacing after list */
}

/* --- Invitation / narrative sections --- */

/* Match spacing rhythm of sections below */
.verification-item {
  margin-bottom: 1.8rem;
}

/* Indent body text slightly for elegance */
.verification-item p {
  margin-left: 1.1rem;
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
  max-width: 36rem; /* optional, helps readability */
}

/* Headings stay flush */
.verification-item h4 {
  margin-bottom: 0.3rem;
}

/* Tighten spacing for the invitation block specifically */
.verification-item:first-of-type {
  margin-top: 0.2rem;
}


/* Optional: slightly tighter bullets */
.verification-item .step-list li{
  margin: 0 0 0.45rem 0;
  line-height: 1.6;
}


.verification-item u::before {
  content: " ";
  opacity: 0.4;
}

/* Shared elegant link style */
.accent-link {
  color: #c9a24d;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.accent-link:hover {
  opacity: 0.85;
}

/* Slight emphasis for the email link */
.primary-link {
  font-size: 1.05rem;
}


.divider {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.verification-list {
  display: grid;
  gap: 1.5rem;
}

.verification-item h4 {
  margin-bottom: 0.25rem;
  font-weight: 600;
}



/* Location */
.location {
  background: var(--champagne-blonde);
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(252, 250, 247, 0.9);
  font-size: 0.78rem;
  color: #7a6455;
  margin-top: 0.6rem;
}

/* Contact / Booking */
.contact {
  background: linear-gradient(160deg, #fbe3ec, #f7d9b9);
}

.contact-inner {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 840px) {
  .contact-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

form {
  background: rgba(255, 255, 255, 0.6);
  border: 3px solid #E7C7A1;
  box-shadow: 
    0 0 75px rgba(255, 138, 160, 0.35);
	
  border-radius: 1.5rem;
  padding: 2rem 1.8rem;
  font-size: 0.9rem;
}

.form-row {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  color: #715d50;
}

input, textarea, select {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid white;
  padding: 0.65rem 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  background: #FFFEFC;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--dawn-pink);
  box-shadow: 0 0 0 1px rgba(255,45,116,0.25);
}

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

.contact-note {
  font-size: 0.86rem;
  color: #7b6456;
  margin-top: 0.8rem;
}



/* Footer */
footer {
  flex: 0 0 auto;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.015em;
  color: rgba(90, 63, 55, 0.55); /* soft espresso tone */
  padding: .6rem 1rem .6rem;  /* elegant vertical breathing room */
  
  background: transparent;      /* lets the gradient flow behind it */
  backdrop-filter: none;
  
  border-top: 1px solid rgba(218, 183, 134, 0.22); /* faint warm gold line */
  margin-top: auto;
  max-width: 100%;
}

/* Optional hover polish for the “Back to top” link if you use one */
footer a {
  color: rgba(90, 63, 55, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}

footer a:hover {
  color: rgba(90, 63, 55, 0.95);
}


.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

