                        body{margin:0;font-family:Poppins,Arial;background:#f8faf8}

.site-title {
font-size: 22px;
color: #1B5E20;
font-weight: bold;
vertical-align: middle;
}

.hero{text-align:center;padding:80px 20px}
.btn{background:#1b5e20;color:#fff;padding:14px 28px;border-radius:30px;text-decoration:none;display:inline-block}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;padding:40px}
.card{background:#fff;padding:18px;border-radius:14px;box-shadow:0 6px 18px rgba(0,0,0,.08)}
.card img{width:100%;border-radius:10px}
.tag{font-size:12px;background:#e8f5e9;color:#1b5e20;padding:4px 10px;border-radius:10px}
.page,.detail{max-width:900px;margin:40px auto;padding:20px;background:#fff;border-radius:16px;box-shadow:0 8px 20px rgba(0,0,0,.08)}
footer{text-align:center;padding:18px;background:#0f3d18;color:#fff}

/* ===== FINAL RESPONSIVE GALLERY ===== */

.gallery-container {
max-width: 1200px;
margin: 0 auto;
padding: 16px;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
gap: 14px;
}

.gallery-grid img {
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
border-radius: 12px;
display: block;
background: #f4f4f4;
}

/* Tablet */
@media (min-width: 600px) {
.gallery-grid {
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
}

/* Desktop */
@media (min-width: 1024px) {
.gallery-grid {
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
}
/* ===== International Header Standard ===== */

.site-header {
background: #ffffff;
border-bottom: 1px solid #e6e6e6;
}

.header-inner {
max-width: 1200px;
margin: 0 auto;
padding: 14px 22px;

display: flex;
align-items: center;
justify-content: space-between;
}

.brand {
display: flex;
align-items: center;
gap: 10px;
}

.brand img {
max-height: 48px;   /* key fix */
width: auto;
display: block;
}

/* Menu links */
.main-nav a {
color: #2F3E2F;      /* menu default */
font-size: 15px;
font-weight: 500;
text-decoration: none;
transition: color 0.2s ease;
}

.main-nav a:hover,
/* Menu – active/selected */
.main-nav a.active {
  color: #1B5E20;       /* brand green */
  font-weight: 600;
  border-bottom: 2px solid #1B5E20;
  padding-bottom: 2px;
}
/* Mobile behavior (still simple, no hamburger) */
@media (max-width: 768px) {
.header-inner {
flex-wrap: wrap;
gap: 10px;
}

.main-nav {
flex-wrap: wrap;
gap: 14px;
}
}

/* ===== Gallery Card Layout (International Style) ===== */

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
margin-top: 20px;
}

.gallery-card {
background: #ffffff;
border-radius: 14px;
padding: 12px;
box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.gallery-card img {
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
border-radius: 10px;
display: block;
}

/* Tablet */
@media (max-width: 900px) {
.gallery-grid {
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
}

/* Mobile */
@media (max-width: 480px) {
.gallery-grid {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
}

.header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 22px;
background: #ffffff;
border-bottom: 1px solid #eef2ee;
}

.header img {
height: 100%;        /* 🔥 Increase from current */
width: auto;
}
.header a {
color: #2f3e2f;   /* dark olive */
}   

    