/* Reset and Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: 'Arial', sans-serif;
  background: #f2f2f2;
  color: #262626;
  height: 100%;
  overflow-y: auto;
}
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.site-header {
  background: #262626;
  padding: 15px 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.logo {
  height: 50px;
  width: auto;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-list li a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 16px;
  border-radius: 6px;
  transition: background 0.3s;
}
.nav-list li a.active,
.nav-list li a:hover {
  background-color: #cdd855;
  color: #262626;
}

/* Gallery Section */
.gallery-section {
  padding: 40px 20px;
  text-align: center;
}
.gallery-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}
.gallery-card img {
  width: 100%;
  border-radius: 8px;
  height: auto;
}

.site-footer {
  background: #262626;
  color: #fff;
  padding: 20px;
  text-align: center;
  margin-top: auto;
}

.site-footer p {
  margin-bottom: 12px;
  font-size: 14px;
}

.site-footer .social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.site-footer .social a {
  display: inline-block;
  width: 24px;
  height: 24px;
  overflow: hidden;
}

.site-footer .social a img {
  width: 24px !important;
  height: 24px !important;
  filter: brightness(0) invert(1); /* Makes black icons white */
  object-fit: contain;
  display: block;
}

/* Responsive Mobile Header */
@media (max-width: 768px) {
  .site-header {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list li a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
}