/* Gallery Section Styles */
.gallery-section {
  padding: 5rem 0;
  background: #1a2e1a;
}
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fade-in 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .gallery-title { font-size: 3rem; }
}
.gallery-title-underline {
  width: 6rem;
  height: 5px;
  background: #eab308;
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}
.gallery-lead {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: #e5e7eb;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.gallery-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.13);
  background: #232d23;
  transition: box-shadow 0.4s, transform 0.4s;
  animation: scale-in 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.gallery-card:hover {
  box-shadow: 0 12px 36px rgba(234,179,8,0.13);
  transform: translateY(-6px) scale(1.02);
  z-index: 2;
}
.gallery-img-aspect {
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}
.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  z-index: 2;
}
.gallery-card:hover .gallery-hover {
  opacity: 1;
}
.gallery-hover-inner {
  text-align: center;
  color: #fff;
}
.gallery-plus {
  width: 3rem;
  height: 3rem;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem auto;
  font-size: 1.5rem;
}
.gallery-hover-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
/* Modal Styles */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.gallery-modal.open {
  display: flex;
}
.gallery-modal-content {
  position: relative;
  max-width: 900px;
  max-height: 90vh;
  margin: 0 auto;
  background: transparent;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-modal-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 1rem;
  object-fit: contain;
  background: #232d23;
}
.gallery-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.gallery-modal-close:hover {
  color: #eab308;
}
/* Animations */
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}

