/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@400;500;700&display=swap');

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    color: #6EC7C6;
    line-height: 1.6;
}/* ===== HEADER BASE ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0b0b0b;
  color: #fff;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}


/* NAV LINKS */
header nav ul {
  list-style: none;
  display: flex;
  gap: 50px;
  margin: 0;
  padding: 0;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

header nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #00bcd4;
  transition: width 0.3s ease;
}

header nav a:hover {
  color: #00bcd4;
}

header nav a:hover::after {
  width: 100%;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
  header {
    padding: 15px 25px;
  }

  header nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: #0b0b0b;
    text-align: center;
    transition: left 0.3s ease;
    padding: 20px 0;
  }

  header nav ul {
    flex-direction: column;
    gap: 25px;
  }

  .hamburger {
    display: flex;
  }

  /* Active menu slide-in */
  header nav.active {
    left: 0;
  }

  /* Burger to X animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 80px 40px;
  background: #fff;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.3rem;
  color: #1e1e2f;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  position: relative;
  padding-top: 30px;
}

.gallery-section h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #1e1e2f;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ===== GALLERY GRID ===== */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== IMAGES ===== */
.gallery-container img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ===== LIGHTBOX ===== */
#lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

#lightbox img {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

#lightbox .close {
  position: absolute;
  top: 50px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

#lightbox .close:hover {
  color: #bbb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .gallery-section {
    padding: 50px 10px;
  }

  .gallery-section h2 {
    font-size: 1.8rem;
  }

  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-container img {
    height: 120px;
  }

  #lightbox img {
    max-width: 90%;
  }
}


.location-images img {
  width: 100%;
  max-width: 1280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-images {
  padding-top: 80px;
}
