/* GENERAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

/* BACKGROUND IMAGE WITH FALLBACK AND ANIMATION */
body {
  background: url('Venues.jpg') no-repeat center center fixed, linear-gradient(to bottom, #000000, #1a1a1a);
  background-size: cover;
  position: relative;
  animation: sunrise 20s infinite linear;
}

@keyframes sunrise {
  0% { background-color: rgba(0, 0, 0, 0.6); }
  50% { background-color: rgba(26, 26, 26, 0.6); }
  100% { background-color: rgba(0, 0, 0, 0.6); }
}

/* HEADER MENU */
.site-header {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.menu {
  position: relative;
  display: inline-block;
}

.menu-button {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 12px 18px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.menu-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.menu-content {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  flex-direction: column;
  border-radius: 5px;
  min-width: 200px;
  z-index: 1001;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.menu-content a {
  padding: 12px 18px;
  color: white;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.menu-content a:hover {
  background-color: #ffd700;
  color: #1a1a1a;
}

/* VENUES SECTION */
.venues {
  position: relative;
  width: 100%;
  text-align: center;
  color: white;
  padding: 100px 20px;
  z-index: 1;
}

.content-container {
  display: inline-block;
  padding: 30px 50px;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.main-title {
  font-size: 4.5em;
  font-weight: bold;
  font-family: 'Cinzel', 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #FFD700, #FFFFFF, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
  animation: glow 2s infinite alternate;
  position: relative;
  z-index: 2;
}

@keyframes glow {
  0% { text-shadow: 0 0 5px #FFD700; }
  100% { text-shadow: 0 0 15px #FFD700, 0 0 20px #FFA500; }
}

.subtitle {
  font-size: 1.8em;
  font-style: italic;
  color: #f0e6d2;
  margin: 15px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.venues-text {
  font-size: 1.4em;
  color: #f0e6d2;
  margin: 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.region-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.region-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #ffd700;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.region-button:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

/* LOGO */
.peace-logo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: auto;
  z-index: 2;
}

/* FOOTER */
.site-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 0.9em;
  padding: 10px 0;
  z-index: 1;
}

.site-footer p {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* RESPONSIVE DESIGN */
@media (max-width: 600px) {
  .main-title {
    font-size: 3em;
  }
  .subtitle {
    font-size: 1.2em;
  }
  .venues-text {
    font-size: 1.2em;
  }
  .region-buttons {
    grid-template-columns: 1fr;
  }
  .region-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .content-container {
    padding: 20px;
  }
}