body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #333;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #e0e0e0;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.navbar.shrink {
  padding: 8px 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.logo {
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Dark mode toggle */
.dark-toggle {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: 15px;
}

/* Mobile menu button */
.menu-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  display: none;
  cursor: pointer;
}

/* Hero */
.hero {
  background: url('../images/hero.jpg') center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: white;
}

.hero-content {
  background: rgba(0,0,0,0.55);
  padding: 30px 40px;
  border-radius: 10px;
  display: inline-block;
}

.btn-primary {
  background: #0077cc;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

/* Sections */
.page-header {
  text-align: center;
  padding: 40px 20px;
}

.about {
  padding: 30px 20px;
  text-align: center;
}

/* Acts */
.acts {
  display: grid;
  gap: 20px;
  padding: 20px;
}

.act-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* Side-by-side layout */
.side-by-side {
  display: flex;
  align-items: center;
  gap: 20px;
}

.side-by-side img.thumb {
  width: 150px;
  height: auto;
  flex-shrink: 0;
}

.act-text {
  flex: 1;
}

/* Thumbnails */
.thumb {
  border-radius: 8px;
}

/* Future acts */
.future-acts {
  background: #fff;
  padding: 25px;
  margin: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.future-acts h2 {
  margin-top: 0;
}

.future-acts ul {
  list-style: none;
  padding: 0;
}

.future-acts li {
  padding: 8px 0;
  font-size: 1.1rem;
}

/* Future events */
.future-events {
  background: #fff;
  padding: 25px;
  margin: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.event-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.event-image {
  width: 200px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.event-text {
  flex: 1;
}

/* Contact grid */
.contact-grid {
  display: grid;
  gap: 30px;
  padding: 20px;
}

/* Room hire */
.room-gallery.single-image {
  display: block;
  padding: 20px;
}

.room-gallery.single-image .room-image img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.room-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  text-align: center;
}

.enquire {
  text-align: center;
  margin: 20px 0;
}

/* Buttons */
.btn-secondary {
  background: #555;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

/* Contact box */
.contact-box {
  background: #fff;
  padding: 20px;
  margin: 25px auto;
  max-width: 500px;
  border-radius: 8px;
  border: 1px solid #ddd;
  text-align: center;
}

.contact-box a {
  color: #0077cc;
  font-weight: bold;
  text-decoration: none;
}

/* Footer */
footer {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-top: 2px solid #e0e0e0;
  margin-top: 40px;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark mode */
body.dark-mode {
  background: #1e1e1e;
  color: #eaeaea;
}

body.dark-mode .navbar {
  background: #2a2a2a;
  border-bottom-color: #444;
}

body.dark-mode .act-card,
body.dark-mode footer,
body.dark-mode .future-acts,
body.dark-mode .future-events,
body.dark-mode .info-card,
body.dark-mode .contact-box {
  background: #2a2a2a;
  border-color: #444;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #fff;
    flex-direction: column;
    padding: 30px;
    gap: 15px;
    transition: right 0.3s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .room-info {
    grid-template-columns: 1fr;
  }

  .room-gallery.single-image .room-image img {
    max-width: 100%;
  }

  .side-by-side {
    flex-direction: column;
    text-align: center;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
  }

  .event-image {
    width: 100%;
    max-width: 300px;
  }
}