/* public/styles/main.css */

/* 1. Reset ================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. Typography =========================================================== */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
               Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #282222;
  color: #333333;
}

/* 3. Layout Helpers ====================================================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 4. Site Navigation ===================================================== */
.site-nav {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 2rem;
  background-color: #222222;
}
.site-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}
.site-nav a.active {
  text-decoration: underline;
}
.site-nav a:hover {
  opacity: 0.8;
}

/* 5. Home Page =========================================================== */
.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}
.logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

/* 6. Gallery ============================================================= */
.gallery-page {
  padding: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.gallery-item {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* 7. Utility Classes ===================================================== */
.text-center { text-align: center; }
.mt-1       { margin-top: 1rem; }
.mb-1       { margin-bottom: 1rem; }
.pt-1       { padding-top: 1rem; }
.pb-1       { padding-bottom: 1rem; }
