.elementor-960 .elementor-element.elementor-element-a19c3ca{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:-80px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:80px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-960 .elementor-element.elementor-element-0f2bc16{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}@media(max-width:767px){.elementor-960 .elementor-element.elementor-element-a19c3ca{--margin-top:-145px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-960 .elementor-element.elementor-element-0f2bc16{margin:-110px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}/* Start custom CSS for shortcode, class: .elementor-element-0f2bc16 */@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

.gallery-section {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #1a3d2e 0%, #2d5537 50%, #1a3d2e 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?w=1600') center/cover;
  opacity: 0.1;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-club-name {
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 8vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
}

.gallery-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 4vw, 24px);
  font-style: italic;
  color: #c9a86c;
  margin-top: 10px;
  margin-bottom: 40px;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: #c9a86c;
  color: #1a3d2e;
  border-color: #c9a86c;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
  border: 1px solid rgba(201,168,108,0.2);
  aspect-ratio: 3 / 2;
  background: #000;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 15px 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #fff;
  margin: 0;
}

.gallery-item-category {
  font-size: 10px;
  color: #c9a86c;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.gallery-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,108,0.3);
  flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #c9a86c;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .gallery-section { 
    /* Added 160px Top Padding for Mobile */
    padding: 160px 20px 80px 20px; 
  }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* --- LIGHTBOX & STICKY HEADER FIX --- */

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.98); 
  z-index: 9999999 !important;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

body.lightbox-open .elementor-element-476a57a,
body.lightbox-open .elementor-sticky__spacer {
  display: none !important;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border: 2px solid #c9a86c;
  cursor: default;
  box-shadow: 0 10px 50px rgba(0,0,0,0.8);
  position: relative;
  z-index: 10000000;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 50px;
  font-weight: 200;
  cursor: pointer;
  z-index: 10000001;
}/* End custom CSS */