/* playfair-display-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/poppins-v24-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ---
Global Styles
--- */
:root {
  --peacock-green: #0f6b63;
  --light-grey: #f4f6f6;
  --white: #ffffff;
  --text-color: #222222;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Applied to html */
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden; /* And to body */
}

body.nav-open {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 4.5rem;
  color: var(--white);
}

h2 {
  font-size: 3rem;
  color: var(--peacock-green);
}

h3 {
  font-size: 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  text-align: center;
  font-size: 1.1rem;
  color: #666;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--peacock-green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: transparent;
  border-color: var(--peacock-green);
  color: var(--peacock-green);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--text-color);
}

.content-section {
  padding: 3rem 0;
}

.bg-light-grey {
  background-color: var(--light-grey);
}

/* ---
Reveal Animation
--- */
.reveal {
  opacity: 0;
}

/* ---
Preloader (Homepage)
--- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader img {
  width: 100px;
}

/* ---
Header & Navigation (Global)
--- */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.4s ease, padding 0.4s ease;
  background-color: rgba(255, 255, 255, 0); /* Default transparent for homepage */
}

/* This is the "scrolled" state for the homepage AND the default state for all other pages */
#main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  transition: padding 0.4s ease;
}

#main-header.scrolled .navbar {
  padding: 0.8rem 2rem;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--white); /* Default white text for homepage */
  font-weight: 600;
  position: relative;
  padding-bottom: 0.3rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--peacock-green);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* When header is scrolled (or on any page other than home), text becomes dark */
#main-header.scrolled .nav-links a {
  color: var(--text-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--white); /* Default white for homepage */
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* When header is scrolled (or on any page other than home), hamburger becomes dark */
#main-header.scrolled .hamburger span {
  background: var(--text-color);
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}

/* ---
Footer (Global)
--- */
footer {
  background-color: #222222;
  color: #ccc;
  padding: 3rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

footer h3 {
  color: var(--peacock-green);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

footer p,
footer a {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

footer a:hover {
  color: var(--peacock-green);
}

.social-icons a {
    display: inline-flex; justify-content: center; align-items: center;
    margin-right: 0.8rem; width: 40px; height: 40px;
    background: #333; border-radius: 50%;
    transition: all 0.3s ease;
}

/* This is the new part */
.social-icons a img {
    width: 20px;
    height: 20px;
    filter: invert(1); /* This trick inverts the black SVG to be white */
}

/* Keep these background colors */
.social-icons .whatsapp { background-color: #25D366; }
.social-icons .facebook { background-color: #3b5998; }
.social-icons .instagram {
    background: linear-gradient(45deg, #405DE6, #833AB4, #E1306C);
}

.social-icons a:hover {
  transform: translateY(-3px);
}

.social-icons .whatsapp {
  background-color: #25D366;
}

.social-icons .facebook {
  background-color: #3b5998;
}

.social-icons .instagram {
  background: linear-gradient(45deg, #405DE6, #833AB4, #E1306C);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #888;
}

/* ---
WhatsApp Float (Global)
--- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
    filter: invert(1);
}

/* ---
Responsive (Mobile Nav)
--- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  /* Hamburger state when mobile menu is open */
  .hamburger.active span {
    background: var(--text-color); /* Always dark when open */
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 1.5rem 0;
  }

  .nav-links a {
    color: var(--text-color); /* Always dark in mobile menu */
    font-size: 1.2rem;
  }
}

/* ---
Page: index.html
--- */
#hero {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* This styles the new <picture> element and the <img> inside it */
.hero-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-background-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This is the new 'background-size: cover' */
}

/* .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/index-image/HeroWedding.webp') no-repeat center center/cover;
  z-index: 1;
} */

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  margin-top: 382px;
  position: relative;
  z-index: 3;
  opacity: 0;
}

.hero-content p {
  color: var(--white);
  font-size: 1.2rem;
  margin: 1rem 0 2.5rem;
}

.hero-buttons .btn {
  margin: 0 0.5rem;
}

#content-wrapper {
  position: relative;
  z-index: 5;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  border-radius: 8px;
}

/* Homepage services grid */
#services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

#services .service-card {
  text-align: center;
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#services .service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

#services .service-card h3 {
  color: var(--peacock-green);
  margin-bottom: 1rem;
}

#services .service-card p {
  color: #666;
  line-height: 1.6;
}

#gallery.content-section {
  background-color: #f4f4f4;
}

.gallery-wavy-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px 0;
}

.card-link-wrapper {
  text-decoration: none;
}

.gallery-wavy-container .card {
  position: relative;
  width: 300px;
  height: 400px;
  margin: 30px;
  transition: transform 0.4s ease;
}

.card-link-wrapper:hover .card {
  transform: scale(1.05);
}

.gallery-wavy-container .card .image {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: translate(10px, 10px);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.image1 {
  background-image: url("images/index-image/preview/preview1.webp");
}

.image2 {
  background-image: url("images/index-image/preview/preview2.webp");
}

.image3 {
  background-image: url("images/index-image/preview/preview3.webp");
}

.image4 {
  background-image: url("images/index-image/preview/preview4.webp");
}

.image5 {
  background-image: url("images/index-image/preview/preview5.webp");
}

.image6 {
  background-image: url("images/index-image/preview/preview6.webp");
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
}

.testimonial-card blockquote {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-card cite {
  font-weight: 600;
  color: var(--peacock-green);
}

#cta {
  background-color: var(--peacock-green);
  text-align: center;
}

#cta h2 {
  color: var(--white);
  margin-bottom: 2rem;
}

@media (max-width: 1200px) {
  .gallery-wavy-container {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  #hero h1 {
    font-size: 3.5rem;
  }

  #hero h2 {
    font-size: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  /* .hero-background {
    background: url('images/index-image/HeroMobile.webp') no-repeat center center/cover;
  } */

  html {
    font-size: 15px;
  }

  #hero h1 {
    font-size: 2.8rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .content-section {
    padding: 2rem 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wavy-container .card {
    width: 280px;
    height: 350px;
    margin: 20px 0;
  }
}

/* ---
Page: about.html
--- */
.about-hero {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('images/about-hero.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.about-hero h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
}

.about-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-section p {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
}

.philosophy {
  background-color: #e9f0ea;
  padding: 80px 20px;
  text-align: center;
}

.philosophy h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.philosophy p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
}

/* These team styles are here if you add them back */
.team {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.team h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member h3 {
  color: var(--peacock-green);
  margin-top: 15px;
  font-size: 1.4rem;
}

.team-member p {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 20px;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
  .about-section, .philosophy, .team {
    margin: 60px auto;
    padding: 40px 20px;
  }
}

/* ---
Page: service.html
--- */
.page-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
}

.page-hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -2;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.page-hero h1 {
  font-size: 3.5rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

/* Services page grid */
#services-page .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

#services-page .service-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services-page .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#services-page .service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

#services-page .service-card-content {
  padding: 2rem;
}

#services-page .service-card-content h3 {
  color: var(--peacock-green);
  margin-bottom: 1rem;
}

#services-page .service-card-content p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .page-hero h1 {
    font-size: 3.5rem;
  }
  .page-hero h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.8rem;
  }
}

/* ---
Page: portfolio.html
--- */
.page-header {
  position: relative;
  height: 50vh;
  overflow: hidden;
  color: var(--white);
}

.carousel-background {
  display: flex;
  width: 500%; /* 5 slides */
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.carousel-slide {
  width: 20%; /* 100% / 5 slides */
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.carousel-slide.video-slide video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
}

.header-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  z-index: 1;
}

.header-content-overlay h1 {
  font-size: 3rem;
  font-family: var(--font-heading);
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-content-overlay p {
  font-size: 1.1rem;
  margin-top: 10px;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
  left: 1.5rem;
}

.carousel-btn.next {
  right: 1.5rem;
}

/* .gallery {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 15px;
   padding: 30px;
   opacity: 0;
   margin-top: 30px;
 }

.gallery img,
.gallery video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}   */


.gallery {
  /* This creates a 4-column masonry layout */
  column-count: 3;
  column-gap: 15px;
  
  padding: 30px;
  opacity: 0;
  margin-top: 30px;
}

.gallery img,
.gallery .gallery-video-wrapper {
  width: 100%;
  height: auto;
  margin-bottom: 15px; 
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  break-inside: avoid;
  position: relative; 
}

.gallery video {
  width: 100%;
  height: auto;
  border-radius: 10px; /* Keep the rounded corners on the video */
  display: block; /* Fixes any small spacing issues */
}

/*
  NEW: This creates the play button icon.
*/
.gallery-video-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  
  /* Create the circle */
  width: 60px;
  height: 60px;
  background-color: rgba(240, 239, 239, 0.75);
  border-radius: 50%;
  
  /* Create the triangle */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23222222' d='M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z'/%3E%3C/svg%3E");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-position-x: 23px; /* Fine-tune triangle position */
  transform: translate(-50%, -50%);
  opacity: 0.85;
  transition: all 0.3s ease;
  pointer-events: none; 
}

.gallery-video-wrapper:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery img:hover,
.gallery video:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img,
.lightbox video {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .page-header {
    height: 60vh;
  }
  .header-content-overlay h1 {
    font-size: 2.5rem;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .carousel-btn.prev {
    left: 1rem;
  }
  .carousel-btn.next {
    right: 1rem;
  }
 /* .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px;
  }*/
  
  .gallery {
    /* Change to 2 columns for mobile */
    column-count: 2; 
    gap: 10px;
    padding: 6px;
  }
  .gallery-video-wrapper::after {
    width: 35px;
    height: 35px;
    background-size: 15px 15px;
    background-position-x: 12px;
  }
  
}

/* ---
Page: contact.html
--- */
.contact-page-header {
  height: 40vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1596526131083-e8c633c948d2?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
  color: var(--white);
}

.contact-page-header .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-page-header .container {
  position: relative;
  z-index: 2;
}

.contact-page-header h1 {
  font-size: 3.5rem;
}

.contact-flex {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  color: var(--peacock-green);
  margin-bottom: 1rem;
}

.contact-info a {
  display: block;
  color: var(--peacock-green);
  text-decoration: none;
  transition: color 0.3s;
}

.form-group {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--peacock-green);
  box-shadow: 0 0 5px rgba(15, 107, 99, 0.3);
}

.contact-form h3 {
  color: var(--peacock-green);
  margin-bottom: 1rem;
}



.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--peacock-green);
  background-color: var(--peacock-green);
  color: var(--white);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background: transparent;
  color: var(--peacock-green);
}

#form-result {
  margin-top: 1rem;
  font-weight: 600;
  padding: 1rem;
  border-radius: 5px;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
  .contact-flex {
    flex-direction: column;
  }
  .contact-page-header h1 {
    font-size: 2.8rem;
  }
  .contact-page-header h2 {
    font-size: 2.5rem;
  }
}

/* ---
Footer SVG Icon Styles
--- */
.social-icons a svg {
  width: 22px; /* Or your preferred size */
  height: 22px;
  fill: currentColor; /* This makes the icon color white */
  transition: all 0.3s ease;
}

