* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e1e1e;
  background: #fff;
}

/* =========================
   VENUE STYLING HERO
========================= */
.venue-hero-alt {
  height: 85vh;
  background: url('../images/Lysette\ &\ Thomas\ Wedding\ -\ RCP-56_websize.jpg.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-hero-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.venue-hero-overlay {
  position: relative;
  text-align: center;
  padding: 90px 45px;
  color: #fff;
  max-width: 820px;
}

.venue-hero-overlay h1 {
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  font-weight: 600;
  margin-bottom: 18px;
}

.venue-hero-overlay p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* CTA button (reused across pages) */
.hero-cta {
  display: inline-block;
  margin-top: 38px;
  padding: 14px 44px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.85);
  border-radius: 40px;
  background: transparent;
  text-decoration: none;
  transition: all 0.4s ease;
}

.hero-cta:hover {
  background: #fff;
  color: #0A6F63;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .venue-hero-alt {
    height: 75vh;
  }

  .venue-hero-overlay {
    padding: 70px 28px;
  }
}


/* IMAGE TRAIN */
.venue-train {
  overflow-x: auto;
  padding: 60px 0 90px;
}

.train-track {
  display: flex;
  gap: 28px;
  padding: 0 8vw;
}

.train-image {
  position: relative;
  min-width: 320px;
  height: 420px;
  overflow: hidden;
  border-radius: 18px;
}

.train-image.large {
  min-width: 420px;
}

.train-image.tall {
  height: 520px;
}

.train-image.wide {
  min-width: 520px;
}

.train-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.train-image:hover img {
  transform: scale(1.08);
}

.train-image span {
  position: absolute;
  bottom: 20px;
  left: 22px;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 1px;
  background: rgba(0,0,0,0.35);
  padding: 6px 12px;
  border-radius: 20px;
}

/* FLOW SECTIONS */
.venue-flow {
  padding: 140px 8vw;
  display: flex;
  flex-direction: column;
  gap: 140px;
}

.flow-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.flow-row.reverse {
  grid-template-columns: 1fr 1fr;
}

.flow-row img {
  width: 100%;
  border-radius: 20px;
}

.flow-text h2 {
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.flow-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

/* IMPACT */
.venue-impact {
  position: relative;
  height: 90vh;
}

.venue-impact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-text {
  position: absolute;
  bottom: 80px;
  left: 8vw;
  max-width: 520px;
  color: #fff;
}

.impact-text h2 {
  font-size: 2.6rem;
  margin-bottom: 14px;
}

.impact-text p {
  font-size: 1.05rem;
  opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .flow-row {
    grid-template-columns: 1fr;
  }

  .venue-impact {
    height: 70vh;
  }
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  width: 100%;
  min-height: 100vh; /* fills full screen */
  background-image: url('../images/Lets Talk Bg 2.jpeg');
  background-position: center;
  background-size: cover; /* ensures the bg fully covers */
  background-repeat: no-repeat;
  background-attachment: fixed; /* optional: parallax effect */
  
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

/* CONTACT CARD */
.contact-wrap {
  display: flex;
  flex-direction: row;
  max-width: 1100px;
  width: 95%;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left h2 {
  font-size: 2.2rem;
  color: #0A6F63;
  margin-bottom: 18px;
  font-weight: 700;
  font-family: 'Le Jour Serif', serif;
}

.contact-left p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555;
}

.contact-item i {
  margin-right: 12px;
  font-size: 20px;
  color: #0A6F63;
  flex-shrink: 0;
}

/* SOCIAL ICONS IN LEFT PANEL */
.contact-socials {
  margin-top: 30px;
  display: flex;
  flex-direction: column; /* stacked vertically */
  gap: 12px;
}

.contact-socials .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0A6F63;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s, transform 0.3s;
}

.contact-socials .social-icon i {
  font-size: 20px;
}

.contact-socials .social-icon:hover {
  color: #08806d;
  transform: translateX(4px);
}

/* RIGHT SIDE */
.contact-right {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.email-instructions {
  max-width: 600px;
  text-align: left;
  color: #444;
  margin-bottom: 28px;
}

.email-instructions p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.email-instructions ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.email-instructions li {
  font-size: 0.95rem;
  margin: 6px 0;
  position: relative;
  padding-left: 20px;
}

.email-instructions li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0A6F63;
  font-weight: bold;
}

/* BUTTON */
.email-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  background-color: #0A6F63;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.email-btn:hover {
  background-color: #0e8b7c;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .contact-wrap {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    padding: 40px 30px;
  }

  .email-instructions {
    text-align: center;
  }

  .email-btn {
    margin-top: 25px;
  }
}

@media (max-width: 600px) {
  .contact-left h2 {
    font-size: 1.8rem;
  }

  .contact-left p,
  .email-instructions p {
    font-size: 0.95rem;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .email-btn {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}


/* =========================================================
   FOOTER
========================================================= */
footer {
    background: #0A6F63;
    color: #fff;
    text-align: center;
    padding: 40px 10%;
    margin-top: -1px;
}

footer .socials a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.4rem;
    transition: 0.3s;
}

footer .socials a:hover {
    color: #3BAA9A;
}