/* Reset and base styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #1a1a1a;
  color: #f0f0f0;
}

header {
  background: linear-gradient(to right, #8b0000, #4b0082);
  color: white;
  text-align: center;
  padding: 4em 1em;
  background-image: url('images/header.jpg');
  background-size: cover;
  background-position: center;
}

header h1 {
  font-size: 3em;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

nav {
  background-color: #2e2e2e;
  display: flex;
  justify-content: center;
  gap: 2em;
  padding: 1em;
}

nav a {
  color: #f0e68c;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffffff;
}

section {
  padding: 2em;
  display: none;
}

.tab.active {
  display: block;
}

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

.gallery img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.03);
}

footer {
  text-align: center;
  background-color: #111;
  color: #ccc;
  padding: 1em;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 0.5em 0;
}

ul a {
  color: #f0e68c;
  text-decoration: none;
}

ul a:hover {
  color: white;
}
