/* Google Font (clean + elegant) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1f2a37;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.3px;
}


/* ===== NAVBAR ===== */
nav {
  height: 80px;                 /* LOCKED height */
  padding: 0 48px;
  display: flex;
  align-items: center;          /* vertical centering */
  justify-content: space-between;
  background-color: #1f3447;

  position: relative;           /* prevents layout shifts */
  z-index: 1000;
}

nav h1 {
  margin: 0;
  line-height: 1;
}




/* ===== LOGO ===== */
.logo-link {
  display: flex;
  align-items: center;

  text-decoration: none;
  background: none;
  border: none;
  outline: none;
}

.logo {
  max-height: 115px;
  width: auto;
  display: block;
  margin: 0;          /* prevents accidental shifts */
}


.logo-link:hover .logo {
  opacity: 0.9;
  transform: scale(1.02);
  transition: all 0.2s ease;
}

.nav-logo {
  max-height: 115px;          /* matches homepage scale */
  width: auto;
  display: block;
}

nav h1,
nav ul li a {
    color: #fdfefe;
}


nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
}

nav ul li a:hover {
    opacity: 0.8;
}


/* HERO SECTION */
.hero {
  width: 100%;
  height: 90vh;
  background-image: url("images/hero-event.jpg"); /* UPDATE PATH */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* subtle dark overlay */
  z-index: 1;
}

.hero img {
  filter: none !important;
  opacity: 1 !important;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* subtle dark overlay */
  z-index: 1;
}
/* Text container */
.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.2rem;
  max-width: 600px;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  padding: 60px 80px;
  border-radius: 20px;
  color: white;
}

.hero-box h1 {
  font-size: 52px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-box p {
  font-size: 18px;
  letter-spacing: 0.5px;
}

/* ===== TESTIMONIAL SECTION (BLUE SEA STYLE) ===== */
.testimonials-section {
  background: linear-gradient(180deg, #eaf3f9, #f5fbff);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.testimonial-card {
  background: #ffffff;
  max-width: 900px;
  width: 100%;
  padding: 40px 60px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 60, 100, 0.08);
  text-align: center;
  position: relative;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-text {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #1f3d5a;
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: #6b8aa6;
  letter-spacing: 0.5px;
}

.testimonial-dots {
  margin-top: 25px;
}

.testimonial-slide {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  position: absolute;
  width: 100%;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.dot {
  height: 8px;
  width: 8px;
  margin: 0 6px;
  background-color: #b7cfe3;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #5b89b5;
}



/* Sections */
section {
    padding: 5rem 2rem;
    text-align: center;
}

section h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #0f2a44;
}

section p {
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}


/* Button reuse (matches booking + homepage) */
.primary-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2.4rem;
  background-color: #163a52;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.primary-button:hover {
  background-color: #0f2b3f;
}

/* FULL-WIDTH CTA WRAPPER */
.cta-full-width {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 75px 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.primary-btn {
  min-width: 350px;
  text-align: center;
}


_______________________________________
/* Booking Section */
/* Hide booking section by default */
#booking {
    display: none;
}

/* Show booking section when active */
#booking.active {
    display: block;
}


/* Footer */
footer {
    background: #1f3447;
    color: #ffffff;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    font-weight: 300;
}

____________________________________
/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 12px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }
}

/* =========================
   BOOKING PAGE LAYOUT
========================= */

.booking-page {
    min-height: calc(100vh - 90px);
    display: flex;
    justify-content: center;   /* centers horizontally */
    align-items: center;       /* centers vertically */
    padding: 5rem 1.5rem;
    background: #f3ede7;
    align-items: flex-start;
    padding-top: 4rem;

}


.booking-page h2 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.booking-page p {
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

/* Card-style form */
.booking-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    width: 100%;
    max-width: 620px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 0 auto; /* THIS centers the card */
}


/* Inputs */
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ccd6df;
    font-size: 0.95rem;
    background: #ffffff;
}

.booking-form textarea {
    resize: none;
    min-height: 120px;
}

/* Button */
.booking-form button {
    margin-top: 1.5rem;
    background: #6fa3c7;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.booking-form button:hover {
    background: #5b90b5;
    transform: translateY(-2px);
}

/* Mobile spacing */
@media (max-width: 600px) {
    .booking-form {
        padding: 2rem;
    }

    .booking-page h2 {
        font-size: 2rem;
    }
}

/* Contact Page */

.contact-card h1 {
  color: #0f2a44;
  margin-bottom: 20px;
}

.contact-card .tagline {
  color: #5c7a99;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.contact-card .email {
  font-size: 1rem;
  color: #333;
  margin-bottom: 2rem;
}

.email-button {
  display: inline-block;
  background: #78a9c9;
  color: white;
  padding: 0.8rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.email-button:hover {
  background: #5e95bb;
  transform: translateY(-2px);
}

/* Contact Page Layout */
.contact-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px);
}

/* =========================
   Business Card
========================= */
.contact-card h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 16px;
  color: #6f7f8f;
  margin-bottom: 40px;
  text-align: center;
  max-width: 400px;
  line-height: 1.7;
}

.contact-section h1 {
  font-weight: 500;
  letter-spacing: 0.5px;
}


.contact-section h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.7
}

.contact-divider {
  font-size: 36px
  width: 80px;
  margin: 40px auto;
  border: none;
  border-top: 1px solid #dbe2ea;
}


/* Logo inside card */
.contact-logo {
  width: 400px;              /* controls logo size */
  max-height: 175px;
  object-fit: contain;
  margin-top: -2.0rem
  margin-bottom: 2.0rem;

}

/* Email text */
.contact-email {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.2rem;
}

/* Email Us Button */
.email-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.9rem 2.5rem;

    background-color: #6fa6c9; /* same blue as booking button */
    color: white;
    font-size: 1rem;
    font-weight: 500;

    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-btn:hover {
    background-color: #5b93b7;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}


/* SERVICES PAGE */
/* SERVICES SIDE-BY-SIDE LAYOUT */
.services-layout {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left text block */
.services-text-block h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 500;   /* ← un-bolds it */
  color: #0f2a44;
  margin-bottom: 0.6rem;
}

.services-text-block .services-subtitle {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.services-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
}

.services-text p {
  margin-bottom: 1.6rem;
}

/* Right Instagram block */
.services-instagram h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;          /* same as Our Services */
  font-weight: 500;
  color: #0f2a44;
  margin-bottom: 0.6rem;
}


.services-instagram p {
  color: #666;
  margin-bottom: 1.5rem;
}

.services-text-block h1,
.services-instagram h2 {
  letter-spacing: 0.3px;
}


/* Mobile */
@media (max-width: 900px) {
  .services-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .services-instagram {
    text-align: center;
  }
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  max-width: 800px;
  width: 90%;
  position: relative;
  text-align: center;
}

.modal-content h2 {
  margin-bottom: 2rem;
  color: #0f2a44;
}

.close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Gallery placeholders */
.modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.placeholder {
  background: #e6eef4;
  height: 160px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b8fb1;
  font-weight: 600;
}

/* Instagram Preview Section */
/* Instagram Preview Section */
.instagram-preview {
  margin-top: 6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.instagram-preview h2 {
  font-size: 5rem;
  color: #0f2a44;
  margin-bottom: 0.5rem;
}

.instagram-preview p {
  color: #555;
  margin-bottom: 2rem;
}

.instagram-embed {
  max-width: 540px;
  margin: 0 auto;
}

/* BOOKING PAGE */
.booking-wrapper {
  max-width: 700px;
  margin: 80px auto;
  padding: 40px;
  text-align: center;
}

.progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  font-size: 14px;
  color: #aaa;
}

.progress .active {
  color: #16324f;
  font-weight: 600;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.option-grid button {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #d6d6d6;
  background: white;
  font-size: 16px;
  cursor: pointer;
}

.option-grid button:hover {
  background: #f4efe9;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}

.form-grid input,
textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

textarea {
  width: 100%;
  height: 120px;
  margin: 20px 0;
}

.primary-btn {
  margin-top: 30px;
  padding: 16px 40px;
  border-radius: 999px;
  background: #1f3b57;
  color: white;
  border: none;
  font-size: 22px;
  cursor: pointer;
  text-decoration: none; 
  min-width: 350px;
  text-align: center;
}

.primary-btn:hover {
  background: #1b324a;
  transform: translateY(-2px);
}


/* STEP BAR */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  color: #aaa;
}

.step {
  font-weight: 500;
}

.step.active {
  color: #1f3344;
  font-weight: 600;
}

.line {
  width: 80px;
  height: 2px;
  background: #ddd;
  margin: 0 15px;
}

/* OPTIONS */
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 50px 0;
}

.option-card {
  background: white;
  border: 2px solid #ddd;
  border-radius: 14px;
  padding: 35px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.option-card span {
  margin-top: 10px;
}

.option-card:hover {
  border-color: #7faecd;
  transform: translateY(-3px);
}

.option-card.selected {
  border-color: #7faecd;
  background: #f2f7fb;
}

/* NEXT BUTTON */
.next-btn {
  width: 320px;
  padding: 18px;
  border-radius: 999px;
  border: none;
  font-size: 1.1rem;
  background: #7faecd;
  color: white;
  cursor: pointer;
}

.next-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.about-instagram {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* About text */
.about-content {
  text-align: left;
}

.section-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #7fa9c6;
  font-weight: 600;
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 16px 0;
  color: #0f2a44;
}

.about-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

/* Instagram card */
.instagram-preview {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  max-width: 420px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.ig-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ig-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.ig-header p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #7a7a7a;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ig-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.ig-grid img:hover {
  transform: scale(1.05);
}



/* Responsive */
@media (max-width: 900px) {
  .about-instagram {
    grid-template-columns: 1fr;
    text-align: center;
  }

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


}
@media (max-width: 900px) {
  .about-instagram {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.booking-container {
  flex: 1; /* pushes footer down */
}

.site-footer {
  background-color: #7faecb;
  color: white;
  text-align: center;
  padding: 25px 10px;
  font-size: 14px;
}

.submit-btn {
  margin-top: 30px;
  padding: 14px 40px;
  background-color: #1f4f6b; /* deep navy blue */
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #163c52;
  transform: translateY(-1px);
}

body {
  font-family: 'Inter', sans-serif;
  color: #2c2c2c;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.form-card {
  max-width: 700px;
  margin: 60px auto;
  padding: 50px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

textarea {
  width: 100%;
  padding: 18px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #cfdbe5;
  resize: vertical;
  font-family: 'Inter', sans-serif;
}

textarea:focus {
  outline: none;
  border-color: #7faecb;
}

/* ABOUT + SERVICES SPLIT SECTION */
.about-services-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 40px;
}

/* Shared aesthetic */
.about-services-wrapper h2 {
  font-family: "Playfair Display", serif;
  font-size: 35px;
  color: #1f3447;
  margin-bottom: 30px;
  line-height: 2.0;
}

.about-services-wrapper p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 2.0;
  color: #5f6f7f;
  margin-bottom: 22px;
}

/* Small label text (ABOUT US / OUR SERVICES) */
.section-label {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #7fa6c7;
  margin-bottom: 14px;
}

/* Alignment rules */
.services-block {
  text-align: left;
}

.about-block {
  text-align: left;
}

/* Responsive (mobile) */
@media (max-width: 900px) {
  .about-services-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-block,
  .services-block {
    text-align: left;
  }
}

.services-text {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  text-align: left;
}

.services-text p {
  margin-bottom: 1.6rem;
}
