/*
Theme Name: Bethany & Robert Wedding
Author: You
Version: 1.0
*/

/* Import elegant serif + soft script accent */

@import url('https://fonts.googleapis.com/css2?family=Petit+Formal+Script&display=swap');

body {
  font-family: 'Cormorant Garamond', serif;
  background: #f6f2ec; /* warm paper tone */
  color: #4a4a4a; /* soft charcoal for readability */
  line-height: 1.6;
}

/* Headings */
h1, h2 {
  font-family: 'Playfair Display', serif;
  color: #3e4a52; /* muted blue-grey from sky tones */
  letter-spacing: 0.5px;
}

h1 {
  font-size: 3.5em;
}

h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

/* Optional script accent for names */
.hero h1 {
  font-family: 'Petit Formal Script', cursive;
  font-size: 4em;
  color: #2f3e46; /* deeper contrast for hero */
}

/* Section text */
p {
  color: #5a5a5a;
}

/* Intro + emphasis */
.intro {
  color: #4f5d63; /* subtle blue tint */
}

/* Notes (soft + elegant) */
.note {
  color: #7a7a7a;
}

/* Strong labels */
strong {
  color: #2f3e46;
}

/* Buttons */
button {
  background: #a88c6d; /* warm taupe from painting */
  color: #fff;
  border-radius: 6px;
  transition: all 0.3s ease;
}

button:hover {
  background: #8f7559;
}

/* Form fields */
input, select, textarea {
  border: 1px solid #d8d2c8;
  background: #fffdf9;
  color: #4a4a4a;
}

/* Section backgrounds */
.section {
  background: transparent;
}

.form-section {
  background: #f1ebe4; /* slightly darker paper tone */
}

/* Optional soft divider */
.section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #c7b8a3;
  margin-top: 8px;
}

body {
  margin: 0;
  font-family: Georgia, serif;
  background: #f8f5f2;
  color: #444;
}

.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  background: rgba(255,255,255,0.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero h1 {
  font-size: 3.5em;
  margin-left: 10px;	
}

.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split img {
  width: 100%;
  border-radius: 8px;
}

form input, form select, form textarea {
  width: 95%;
  padding: 12px;
  margin: 10px 0;
}

button {
  background: #b89b7a;
  color: white;
  padding: 12px 25px;
  border: none;
}
.ceremony-section {
  display: flex;
  align-items: center;
  gap: 50px;
}

.ceremony-section .image {
  flex: 1;
}

.ceremony-section .image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  display: block;
  margin: auto;
}

.ceremony-section .text {
  flex: 1;
  max-width: 500px;
}

.ceremony-section .intro {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.ceremony-section .note {
  margin-top: 20px;
  font-style: italic;
  color: #666;
}

/* Mobile */
@media (max-width: 768px) {
  .ceremony-section {
    flex-direction: column;
    text-align: center;
  }
}

.overlay {
  background: rgba(246, 242, 236, 0.75); /* matches site tone */
}





