:root {
  --primary: #3e6cc0;
  --accent: #7A0C1A;
  --bg: #F0ECC9ff;
  --text: #222;
  --border-radius: 8px;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

header {
  background: var(--primary);
  color: #F0ECC9ff;
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
}

.banner-img {
  display: block;
  margin: 0 auto 1.5rem auto;
  max-width: 800px; /* Add or adjust this line */
  width: 100%;      /* Ensures responsiveness */
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: -1px;
}

.subtitle {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: #F0ECC9ff;
}

main {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
}

section {
  margin-bottom: 2.5rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  background: #fff;
}

.disclaimer {
  font-size: 0.95rem;
  color: #888;
  margin-top: 1rem;
}

.construction-img {
  display: block;
  margin: 1.5rem auto 0 auto;
  max-width: 350px;
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

footer {
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  background: #f5f5f5;
  color: #888;
  font-size: 0.95rem;
  margin-top: 3rem;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.5rem;
  }
  main {
    padding: 0 0.5rem;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
}
