/* Global Styles */
body {
  font-family: 'Shentox', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header Styles */
.main-header {
  background-color: #333;
  color: white;
  padding: 20px 40px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
}

.main-header nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Header Text Colors */
.eve {
  color: white;
}

.bg {
  color: #28a745; /* green */
}

.con {
  color: #dc3545; /* red */
}


.main-header nav ul li {
  font-size: 1.2rem;
}

.main-header nav ul li a {
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  padding: 5px 10px;
}

.main-header nav ul li a:hover {
  background-color: #dc143c;
  border-radius: 4px;
}

.lang-toggle {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.lang-toggle:hover {
  background-color: #dc143c;
}

/* Hero Section */
.hero {
  background: url('https://images.ctfassets.net/1gqwxa4vbed9/4a6q8z97XtnnZzZrBJ2Ycy/859f9b89c73dace503cb0d6ef8c3326d/empires-category-bg__4_.jpg?w=1600&fm=jpg&fl=progressive&q=80') center/cover no-repeat;
  color: white;
  padding: 60px 20px;
  text-align: center;
}


.hero h2 {
  font-size: 2.5rem;
  margin: 20px 0;
}

.hero p {
  font-size: 1.1rem;
  margin: 10px 0;
}

.hero .btn {
  padding: 14px 30px;
  background-color: #4CAF50;
  color: white;
  border: none;
  font-size: 1.2rem;
  border-radius: 30px;
  text-transform: uppercase;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.hero .btn:hover {
  background-color: #dc143c;
}

/* Section Styles */
.info-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.info-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.info-section p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.info-section ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  text-align: left;
}

.info-section ul li {
  padding: 8px 0;
}

.info-section ul li strong {
  font-weight: bold;
}

.info-section .btn {
  padding: 12px 30px;
  background-color: #4CAF50;
  color: white;
  border: none;
  font-size: 1rem;
  border-radius: 30px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.info-section .btn:hover {
  background-color: #dc143c;
}

/*Map Location */

/* Centering the Event Location */
.map-section h2 {
  text-align: center;  /* Centers the text */
}

/* Centering the Map */
.map-section iframe {
  display: block;
  margin: 20px auto; /* Centers the iframe */
  max-width: 100%; /* Ensures responsiveness */
  border: none; /* Removes the iframe border */
}

/* Ensuring the Event Location Text is Centered */
.date-location {
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 20px 0;
}




/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer .disclaimer {
  font-size: 0.9rem;
  color: #bbb;
  margin-top: 20px;
}

.footer a {
  color: white;
  text-decoration: underline;
}

/* Button Styles */
.btn {
  padding: 14px 30px; /* Ensures consistent padding */
  background-color: #4CAF50;
  color: white;
  border: none;
  font-size: 1.2rem;
  border-radius: 30px;
  text-transform: uppercase;
  margin-top: 20px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: auto; /* Ensures the width adjusts based on content */
}

.btn:hover {
  background-color: #dc143c;
}

/* Adjust buttons inside .hero and .info-section */
.hero .btn,
.info-section .btn {
  width: 100%; /* Makes both buttons take up the full width available */
  max-width: 300px; /* Optional: You can set a maximum width */
  margin: 20px auto; /* Centers the buttons */
}


/* Media Queries */
@media (max-width: 768px) {
  .main-header h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .info-section {
    padding: 20px;
  }

  .footer {
    font-size: 0.9rem;
  }
}
