:root {
  --cream: #F7F2EA;
  --gold: #B8955A;
  --gold-light: #D4B483;
  --black: #1E1A16;
  --white: #ffffff;
  --deep-red: #6B1414;
  --deep-red-dark: #4A0D0D;
  --cream-light: #EDE5D8;
  --olive: #3D4A15;

  --heading-font: "Cormorant Garamond", serif;
  --body-font: "Montserrat", sans-serif;
}

/* ========================
   GLOBAL
======================== */
body {
  background: var(--cream-light);
  margin: 0;
  font-family: var(--body-font);
  color: var(--black);
}

/* ========================
   NAVIGATION
======================== */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2em 4%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: background 0.4s ease, border-color 0.4s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.logo-img {
  display: none !important;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  transition: color 0.3s ease;
}

header.scrolled {
  background: var(--white);
  border-bottom: 1px solid rgba(184,149,90,0.3);
}

header.scrolled .nav-links a {
  color: var(--black);
}

.nav-links a:hover {
  color: var(--gold);
}

/* ========================
   CONTACT PAGE
======================== */
.contact-page {
  background: var(--cream);
  padding: 6em 10% 6em;
  text-align: center;
  max-width: 860px;
  margin: 7em auto 5em;
  border: 1px solid rgba(184,149,90,0.25);
  border-radius: 0;
  box-shadow: 6px 6px 0px rgba(184,149,90,0.1);
}

.contact-heading {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--deep-red);
  letter-spacing: 0.02em;
  margin-bottom: 0.6em;
}

/* Thin gold rule under heading */
.contact-heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0.8rem auto 0;
  opacity: 0.6;
}

.contact-intro {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--black);
  max-width: 620px;
  margin: 0 auto 2.5em;
  opacity: 0.8;
}

.contact-methods {
  margin-bottom: 3em;
  font-size: 0.88rem;
  font-family: var(--body-font);
  font-weight: 300;
  color: var(--black);
  opacity: 0.8;
  line-height: 1.9;
}

.contact-methods a {
  color: var(--deep-red);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(107,20,20,0.25);
  padding-bottom: 1px;
  transition: border-color 0.3s ease;
}

.contact-methods a:hover {
  border-bottom-color: var(--gold);
  color: var(--gold);
}

/* ========================
   CONTACT FORM
======================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  margin: 0 auto 2.5em;
  max-width: 620px;
  text-align: left;
}

.contact-form label {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--black);
  opacity: 0.85;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9em 1em;
  border: 1px solid rgba(184,149,90,0.35);
  border-radius: 0;
  background: var(--white);
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--deep-red);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  opacity: 0.45;
  font-size: 0.82rem;
}

.contact-btn {
  display: inline-block;
  background: transparent;
  color: var(--deep-red);
  padding: 0.9em 2.8em;
  border: 1px solid rgba(107,20,20,0.5);
  border-radius: 0;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5em;
  align-self: center;
}

.contact-btn:hover {
  background: var(--deep-red);
  color: var(--white);
  border-color: var(--deep-red);
}

.next-step-info {
  font-family: var(--body-font);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto;
  opacity: 0.65;
  color: var(--black);
}

/* ========================
   BOOKING SECTION
======================== */
.booking-section {
  background: var(--white);
  padding: 2.8em 2em;
  border: 1px solid rgba(184,149,90,0.25);
  border-radius: 0;
  max-width: 680px;
  margin: 0 auto 3em;
  text-align: center;
  box-shadow: 4px 4px 0px rgba(184,149,90,0.1);
}

.booking-section h2 {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.6em;
  color: var(--deep-red);
  letter-spacing: 0.02em;
}

.booking-section p {
  font-family: var(--body-font);
  font-size: 0.88rem;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 1.8em;
  color: var(--black);
  opacity: 0.8;
  line-height: 1.85;
}

.booking-btn {
  display: inline-block;
  padding: 0.9em 2.6em;
  background: transparent;
  color: var(--deep-red);
  border: 1px solid rgba(107,20,20,0.5);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 0.68rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.booking-btn:hover {
  background: var(--deep-red);
  color: var(--white);
  border-color: var(--deep-red);
}

/* ========================
   DIVIDER
======================== */
.or-divider {
  margin: 3.5em auto;
  width: 50px;
  height: 1px;
  background: var(--gold);
  border: none;
  opacity: 0.5;
}

/* ========================
   CALENDAR EMBED
======================== */
.calendar-embed {
  max-width: 900px;
  margin: 0 auto 3em;
}

/* ========================
   FOOTER
======================== */
footer {
  background: var(--black);
  color: var(--white);
  padding: 5em 10% 2.5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  text-align: left;
  border-top: 1px solid rgba(184,149,90,0.25);
}

footer h3,
footer h4 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

footer p,
footer a {
  font-family: var(--body-font);
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  line-height: 1.9;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--gold);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.social-icons a {
  margin-right: 1.2rem;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 3rem;
  font-size: 0.72rem;
  opacity: 0.35;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .contact-page {
    margin: 6em 1.2em 3em;
    padding: 4em 6%;
  }

  .contact-heading {
    font-size: 2.2rem;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4em 6% 2em;
  }

  .footer-left,
  .footer-links,
  .footer-contact { width: 100%; }

  .social-icons a { margin: 0 0.6rem; }
}
