@charset "UTF-8";

/* =========================
   GALLERY SECTION
========================= */

.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(214,174,112,0.16) 0%, rgba(214,174,112,0) 30%),
    radial-gradient(circle at bottom left, rgba(139,90,43,0.12) 0%, rgba(139,90,43,0) 34%),
    linear-gradient(180deg, #fffdfb 0%, #f6eee5 100%);
}

.gallery-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.gallery-bg-shape-1 {
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(192,138,75,0.20) 0%, rgba(192,138,75,0) 72%);
}

.gallery-bg-shape-2 {
  bottom: -120px;
  left: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(139,90,43,0.14) 0%, rgba(139,90,43,0) 74%);
}

.gallery-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.gallery-section .eyebrow {
  color: rgba(78,49,27,0.70);
}

.gallery-head h2 {
  margin-bottom: 16px;
  color: #4e311b;
  font-family: "Bellosa DEMO";
  font-size: 48px;
  line-height: 1.08;
}

.gallery-head p {
  color: rgba(47,36,28,0.76);
  line-height: 1.85;
}

/* =========================
   FEATURE BLOCK
========================= */

.gallery-feature {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
  margin-bottom: 28px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(78,49,27,0.10);
  box-shadow: 0 20px 48px rgba(78,49,27,0.08);
}

.gallery-feature-image {
  overflow: hidden;
  border-radius: 24px;
  min-height: 420px;
  background: rgba(11,15,20,0.03);
}

.gallery-feature-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.gallery-feature-content {
  padding: 10px 6px 10px 0;
}

.gallery-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f2e0cb;
  color: #8b5a2b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.gallery-feature-content h3 {
  margin-bottom: 14px;
  color: #4e311b;
  font-size: 34px;
  line-height: 1.18;
}

.gallery-feature-content p {
  color: rgba(47,36,28,0.76);
  line-height: 1.85;
}

.gallery-feature-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.gallery-section .btn-primary {
  background: linear-gradient(135deg, #c08a4b 0%, #8b5a2b 100%);
  color: #ffffff;
}

.gallery-section .btn-secondary {
  background: rgba(139,90,43,0.10);
  color: #4e311b;
  border: 1px solid rgba(139,90,43,0.18);
}

/* =========================
   CATEGORY CHIPS
========================= */

.gallery-category-row {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 26px;
}

.gallery-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(78,49,27,0.12);
  color: rgba(78,49,27,0.80);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  box-shadow: 0 10px 24px rgba(78,49,27,0.05);
}

/* =========================
   GRID
========================= */

.gallery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 240px;
  border-radius: 24px;
  border: 1px solid rgba(78,49,27,0.10);
  box-shadow: 0 18px 40px rgba(78,49,27,0.08);
  text-decoration: none;
  background: #ffffff;
}

.gallery-card--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 100%;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(31,23,18,0.72);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  backdrop-filter: blur(6px);
}

/* =========================
   ANIMATION
========================= */

.gallery-animate {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.gallery-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (min-width: 1920px) {
  .gallery-head h2 {
    font-size: 60px;
  }

  .gallery-feature-image,
  .gallery-feature-image img {
    min-height: 500px;
    height: 500px;
  }
}

@media screen and (max-width: 1200px) {
  .gallery-feature {
    grid-template-columns: 1fr;
  }

  .gallery-feature-content {
    padding: 0;
  }

  .gallery-head h2 {
    font-size: 42px;
  }

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

  .gallery-card--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-feature-image,
  .gallery-feature-image img {
    min-height: 360px;
    height: 360px;
  }
}

@media screen and (max-width: 768px) {
  .gallery-head h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .gallery-feature-content h3 {
    font-size: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card--large {
    grid-column: span 1;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 260px;
  }
}

@media screen and (max-width: 480px) {
  .gallery-head h2 {
    font-size: 30px;
  }

  .gallery-feature {
    padding: 18px;
    border-radius: 24px;
  }

  .gallery-feature-image,
  .gallery-feature-image img {
    min-height: 260px;
    height: 260px;
  }

  .gallery-feature-content h3 {
    font-size: 24px;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 220px;
  }
}

@media screen and (max-width: 300px) {
  .gallery-head h2 {
    font-size: 26px;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 180px;
  }
}