@charset "utf-8";
body.gallery-page {
margin: 0;
font-family: sylfaen, sans-serif;
background: #ffffff;
}

.gallery-header {
text-align: center;
font-size: 1.2em;
font-weight: lighter;
color: #4a752c;
padding: 10px;
}

/* 🔗 დროებითი ნავიგაცია */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 12px;
    background-color: #FFFFF2;
    font-size: 0.95em;
    font-weight: bold;
    border-top: 2px solid #d8b213;
}

.nav-links a {
color: #2c2c2c;
text-decoration: none;
transition: color 0.2s ease;
}

.nav-links a:hover {
color: #4a752c;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 12px;
padding: 16px;
}

.gallery-item {
position: relative;
overflow: hidden;
border-radius: 12px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
width: 100%;
height: auto;
display: block;
transition: transform 0.3s ease;
}

.gallery-item:hover img {
transform: scale(1.05);
}

.gallery-caption {
position: absolute;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
color: white;
width: 100%;
text-align: center;
font-size: 0.85em;
padding: 4px 0;
opacity: 0;
transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
opacity: 1;
}

/* 🌿 თაფლოვანი მცენარეების სექცია — ვარიანტი 2 სტილი (caption მუდმივად ჩანს, ქვემოთ) */
.gallery-grid--plants {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.gallery-grid--plants .gallery-item {
  border-radius: 12px;
  box-shadow: none;
  background: #fff;
  border: 1px solid var(--border, #e8dfc8);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.gallery-grid--plants .gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  border-color: var(--gold, #f4c430);
}
.gallery-grid--plants .gallery-item:hover img {
  transform: none;
}
.gallery-grid--plants .gallery-caption {
  position: static;
  background: none;
  color: var(--brown, #3d200a);
  opacity: 1;
  text-align: left;
  font-family: 'BPGExtra', Georgia, serif;
  font-size: 13px;
  padding: 10px 12px;
  line-height: 1.4;
}

/* 🔻 Footer Mini — გალერეისთვის, დიდი 4-სვეტიანი Footer-ის ნაცვლად */
.footer-mini {
  padding: 24px 0 0;
}
.footer-mini-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-bottom: 16px;
}
.footer-mini-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-mini-links a {
  color: #e3d6c9;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-mini-links a:hover {
  color: var(--gold, #f4c430);
}

/*-----------------გალერეა აქამდე--------------------*/
.fb-sharer {
max-width: 100%;
/* ზღუდავს სიგანეს */
overflow: hidden;
/* ჭარბი კონტენტის დამალვა */
width: auto;
height: 50px;
min-height: 50px;
padding-top: 12px;
padding-left: 3%;
}


/* Social / Footer icons */
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 17px 0;
}

.footer-icons span {
  font-size: 14px;
  margin-right: 3px;
}

.footer-icons a {
  color: #ffcc00;
  font-size: 27px;
  transition: color 0.3s ease;
}

/* Hover individual brand colors */
.footer-icons a[href*="youtube"]:hover {
  color: #FF0000; /* YouTube წითელი */
}

.footer-icons a[href*="facebook"]:hover {
  color: #1877F2; /* Facebook ლურჯი */
}

.footer-icons a[href*="instagram"]:hover {
  color: #E4405F; /* Instagram ვარდისფერი */
}

.footer-icons a[href*="tiktok"]:hover {
  color: #000000; /* TikTok შავი */
}

.footer-icons a[href*="pinterest"]:hover {
  color: #E60023; /* Pinterest-ის ოფიციალური წითელი */
}
