/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background-color: #ffffff;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #111;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.navbar .logo {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.navbar .nav-links li a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}
.navbar .nav-links li a:hover {
  color: #d4af37; /* gold accent */
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)), url('https://images.unsplash.com/photo-1521424747578-74acc76d4322?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-content {
  z-index: 5;
  max-width: 700px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}
.hero h1 {
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: #d4af37;
  text-transform: uppercase;
}
.hero h2 {
  font-size: 3rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #d4af37;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #b9972f;
}

.btn-secondary {
  background-color: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
}

.btn-secondary:hover {
  background-color: #d4af37;
  color: #fff;
}

/* About Section */
.about {
  background-color: #f9f9f9;
}
.about h3 {
  text-align: center;
  margin-bottom: 2rem;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.about-text {
  flex: 1 1 50%;
}
.about-image {
  flex: 1 1 50%;
  text-align: center;
}

/* Details Section */
.details {
  background-color: #fff;
}
.details h3 {
  text-align: center;
  margin-bottom: 2rem;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.detail-item h4 {
  color: #d4af37;
  margin-bottom: 0.5rem;
}
.detail-item p {
  margin-bottom: 0.5rem;
}

/* Tickets Section */
.tickets {
  background-color: #f9f9f9;
}
.tickets h3 {
  text-align: center;
  margin-bottom: 1rem;
}
.tickets p {
  text-align: center;
  margin-bottom: 2rem;
}
.ticket-options {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.ticket-card {
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
  border-radius: 8px;
  width: 280px;
  text-align: center;
  background-color: #fff;
}
.ticket-card h4 {
  margin-bottom: 0.5rem;
}
.ticket-card .price {
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
}
.ticket-card button {
  margin-top: 1rem;
}

/* Request Section */
.request {
  background-color: #fff;
}
.request h3 {
  text-align: center;
  margin-bottom: 1rem;
}
.request p {
  text-align: center;
  margin-bottom: 2rem;
}
.request form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.form-group textarea {
  resize: vertical;
}
.form-response {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: #111;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}
.footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.footer a {
  color: #d4af37;
  font-size: 0.9rem;
}
.footer a:hover {
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-text, .about-image {
    flex: 1 1 100%;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar .nav-links {
    margin-top: 0.5rem;
  }
  .hero-content {
    width: 90%;
  }
}