body {
  font-family: "Segoe UI", sans-serif;
  background: #fff8f0;
  margin: 0;
  color: #333;
  text-align: center;
}

header {
  background: #e3b778;
  color: white;
  padding: 1em;
  font-size: 2em;
  font-weight: bold;
}

.landing-img {
  max-width: 80%;
  border-radius: 15px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

nav {
  margin: 20px;
}
nav button {
  background: #e3b778;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  font-size: 1em;
  border-radius: 10px;
  cursor: pointer;
  color: white;
  transition: background 0.3s;
}
nav button:hover {
  background: #d49c4a;
}

.content-section {
  display: none;
  margin: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.gallery img:hover {
  transform: scale(1.05);
}

.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
video {
  width: 320px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.pagination button {
  background: #e3b778;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  color: white;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s;
}

.pagination button:hover {
  background: #d49c4a;
}

.pagination span {
  font-weight: bold;
  font-size: 1.1em;
}
B
B
B
B
B
B
B
B
B
B
B
B
B
B
B
B
B
B
B
B
B

