:root {
  --bg-dark: #1f1f1f;
  --bg-med: #2d2d2d;
  --bg-light: #3a3a3a;
  --text-light: #eef2f5;
  --accent: #fa5252;
  --radius: 12px;
  --gap: 16px;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Amaranth', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: #fff; }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px var(--gap);
  background: var(--bg-med);
  box-shadow: 0 4px 6px rgba(0,0,0,0.5);
}

.logo img { 
	max-height: 90px; 
	border-radius: 
	var(--radius); 
    transform: translateY(4px);
}

.site-nav ul { display: flex; gap: var(--gap); }
.site-nav li { list-style: none; }
.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--bg-light);
  font-weight: 500;
  transition: background 0.3s ease;
}
.site-nav a svg {
  margin-left: 6px;
  vertical-align: middle;
  width: 16px;
  height: 16px;
}
.site-nav a:hover { background: var(--accent); color: #000; }

main { flex: 1; padding: var(--gap); }

/* Center hero image */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--gap) 0;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  max-height: 325px;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}

.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}

.card {
  background: var(--bg-med);
  padding: var(--gap);
  border-radius: var(--radius);
  box-shadow: 0 4px 6px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-4px); }
.card-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 8px;
}

h5 { font-weight: 400; font-size: 0.9rem; text-align: center; }
footer {
  background: var(--bg-med);
  text-align: center;
  padding: var(--gap);
  font-size: 0.9rem;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap !important;
    width: max-content;
    gap: 4px;            /* ← shrink space between buttons */
    padding: 8px 4px;      /* ← optional: match UL padding to gap */
    margin: 0 auto;
    white-space: nowrap;
  }

  .site-nav li {
    list-style: none;
    flex: 0 0 auto;
    margin: 0;
  }

  /* extra small, fixed padding—no scaling */
  .site-nav a {
    padding: 4px 7px;      /* top/bottom 4px, left/right 8px */
    font-size: 0.9rem;     /* optional: shrink text a bit */
  }

  .logo img { 
	max-height: 90px; 
	border-radius: 
	var(--radius); 
    transform: translateY(1px);
}
}



  .site-nav ul { 
	flex-wrap: wrap; justify-content: center; 
}
