body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: #181818;
  /* Dark background for that "adult" feel */
  color: #eee;
}

header {
  background-color: #222;
  padding: 1rem 0;
  border-bottom: 1px solid #333;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff4d4d;
  /* A suggestive color */
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #fff;
}

.vip-button a {
  background-color: #ff4d4d;
  color: #fff !important;
  padding: 0.7rem 1.2rem;
  border-radius: 5px;
}

.vip-button a:hover {
  background-color: #e04040;
}

main {
  padding: 2rem;
}

.hero {
  text-align: center;
  padding: 4rem 0;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.hero p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.explore-button {
  background-color: #ff4d4d;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.explore-button:hover {
  background-color: #e04040;
}

.gallery-preview {
  margin-top: 3rem;
  text-align: center;
}

.gallery-preview h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

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

.thumb-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.thumb-item img {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  /* Ensure square thumbnails */
  object-fit: cover;
  filter: grayscale(80%);
  /* A slightly "artistic" touch */
}

.thumb-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.thumb-item:hover .overlay {
  opacity: 1;
}

.view-all-button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-all-button:hover {
  background-color: #444;
}

.about-us-brief {
  margin-top: 4rem;
  text-align: center;
  color: #ccc;
}

.about-us-brief h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-us-brief a {
  color: #ff4d4d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-us-brief a:hover {
  color: #fff;
}

footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #333;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}

.footer-links li {
  margin: 0 1rem;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #fff;
}