* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: white;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.goldColor {
    color: #ffc61c !important;
}

/*
HERO EDITING
*/
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 3rem;
  color: white;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Mobile */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2.9rem;
  }

  .hero-overlay p {
    font-size: 1.3rem;
    padding: 0 1rem;
  }

}

@media (max-width: 426px) {
  .hero-overlay h1 {
    font-size: 2.1rem;
  }

    .hero-overlay p {
    font-size: 1.3rem;
    padding: 0 1rem;
  }
}

@media (max-width: 321px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }

    .hero-overlay p {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}



/*
GALLERY STYLING
*/

.gallery-section {
  padding: 3rem 1rem;
  background-color: #fff;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border: 2px solid #b42e2e;
  background-color: transparent;
  color: #b42e2e;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s ease;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #b42e2e;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  justify-items: center;
}

.gallery-grid img {
  width: 100%;
  max-width: 700px;
  height: 100%;
  max-height: 300px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  max-width: 350px;
  margin: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: scale(1.02);
}

.image-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  color: #fff;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.image-card:hover .overlay {
  opacity: 1;
}

.overlay-content {
  line-height: 1.5;
}

.overlay-content i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  margin: 0;
  font-weight: bold;
}

.overlay-content h3 {
  margin: 0.5rem 0 0;
  font-size: 1rem;
}

/* Make tiles look clickable and ensure overlay doesn't block clicks */
.gallery-grid .image-card,
.gallery-grid .gallery-item > img { cursor: pointer; }

.image-card .overlay { pointer-events: none; }

/* ===== Lightbox (Gmail-style) ===== */
html.lb-lock, body.lb-lock { overflow: hidden; }

.lb {
  position: fixed; inset: 0; z-index: 99999;
  display: none;
  font-family: inherit;
}
.lb.open { display: block; }

.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.86);
  opacity: 0; transition: opacity .18s ease;
}
.lb.open .lb-backdrop { opacity: 1; }

.lb-stage {
  position: absolute;
  inset: 4rem 5rem;            /* frame space around the image */
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 640px){ .lb-stage { inset: 3rem 1rem; } }

.lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  background: transparent;
}

.lb-close {
  position: absolute; top: 12px; right: 16px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 0; border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff; font-size: 22px; cursor: pointer;
  backdrop-filter: blur(3px);
}

.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; display: grid; place-items: center;
  background: rgba(255,255,255,.12);
  color: #fff; border-radius: 999px; cursor: pointer;
  user-select: none; backdrop-filter: blur(3px);
}
.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }
.lb-nav[disabled] { opacity: .35; pointer-events: none; }

.lb-hit { /* large invisible hit areas for easy nav */
  position: absolute; top: 0; bottom: 0; width: 40%;
  cursor: pointer;
}
.lb-hit.left  { left: 0; }
.lb-hit.right { right: 0; }

.lb-counter {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%);
  color: #fff; font-size: 13px; opacity: .8;
}

/* Tiles should feel clickable, overlay shouldn’t block clicks in grid */
.gallery-grid .image-card,
.gallery-grid .gallery-item > img,
.gallery-grid .gallery-item img { cursor: pointer; }
.image-card .overlay { pointer-events: none; }



/*
Awards Section
*/

/* ===== Awards (transparent PNG friendly) ===== */
.awards-section {
  background: #f8f9fb;
  padding: 4rem 1rem;
  margin: 3rem auto;
  max-width: 1200px;
  border: 3px solid #e0e0e0;
  border-radius: 20px;
}

.awards-container { text-align: center; color: #333; }
.awards-container h2 { font-size: 2rem; font-weight: 700; margin-bottom: .5rem; }
.awards-container p { font-size: 1.1rem; margin-bottom: 2rem; color: #555; }
.gold-icon { color: #f1c40f; margin-right: .5rem; }

.awards-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;               /* a bit tighter than 3rem for balance with framed photos */
}

.award {
  text-align: center;
  max-width: 240px;
  width: 100%;
}

/* --- TROPHY PHOTO FIX: always centered, never cropped --- */
.award .media { margin-bottom: .75rem; }

.award .photo{
  height: 260px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;                 
  border-radius: 12px;
  border: 1px solid #e6e9ee;
  background: linear-gradient(180deg,#ffffff,#f3f6fa);
  box-shadow: inset 0 6px 16px rgba(0,0,0,.08);
  overflow: hidden;               /* safe, since we constrain the img below */
}

.award .photo img{
  max-height: 100%;
  max-width: 100%;
  width: auto;                    /* maintain natural aspect ratio */
  height: auto;                   /* maintain natural aspect ratio */
  object-fit: contain;            /* guarantees the whole trophy stays visible */
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.18));
}

/* hide the icon when the photo loads; show icon only if image fails */
.award .icon{ display:none; }
.award.no-photo .photo{ display:none; }
.award.no-photo .icon{
  display:flex;
  width: 86px; height: 86px;
  margin: 0 auto .5rem;
  border-radius: 999px;
  align-items:center; justify-content:center;
  font-size: 28px;
  background:#fff; border:1px solid #e6e9ee;
  box-shadow: inset 0 6px 16px rgba(0,0,0,.08);
}


/* Icon accent color rings */
.award .icon.red    { color: #c0392b; box-shadow: 0 0 0 6px rgba(192,57,43,0.10) inset; }
.award .icon.orange { color: #f39c12; box-shadow: 0 0 0 6px rgba(243,156,18,0.12) inset; }
.award .icon.green  { color: #27ae60; box-shadow: 0 0 0 6px rgba(39,174,96,0.12) inset; }

.award h3 {
  font-size: 1.06rem;
  font-weight: 700;
  margin: .6rem 0 .25rem;
  color: #222;
}

.award .award-meta {
  font-size: .93rem;
  color: #6b7280;
  margin-bottom: .35rem;
}

.award .award-desc {
  font-size: .95rem;
  color: #374151;
}

/* Hover: gentle lift of the trophy image */
.award .photo:hover img {
  transform: translateY(-2px);
  transition: transform .25s ease;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .awards-grid { gap: 1.25rem; }
  .award { max-width: 280px; }
  .award .photo { aspect-ratio: 16 / 11; }
}
