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

/* ================= BASE ================= */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #020c18;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* ================= BACKGROUND CANVAS ================= */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

/* ================= LAYOUT ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 16px;
}

.center {
  text-align: center;
}

.content,
.hero {
  padding: 60px 20px;
}

/* ================= NAVBAR ================= */
.topnav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #03152b;
  position: sticky;
  top: 0;
  z-index: 10;
}

.topnav a {
  color: #ffffff;
  padding: 14px 18px;
  text-decoration: none;
}

/* ================= HEADER ================= */
.header {
  background: #003366;
  color: #fff;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

/* ================= MENU ================= */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(180deg, #03152b, #020c18);
  text-align: center;
}

.hero h1 {
  font-size: 2.2rem;
}

.hero p {
  margin-top: 10px;
  font-size: 1.1rem;
}

/* ================= LOGOS ================= */
.logos {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  justify-content: center;
  gap: 20px;
}

.logos img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
}

/* ================= BUTTONS ================= */
.btn {
  padding: 15px 28px;
  background: #00c6ff;
  color: #001;
  border-radius: 40px;
  text-decoration: none;
  margin: 10px;
  display: inline-block;
}

.btn.alt {
  background: #00ffd5;
}

/* ================= EVENT LIST ================= */
.event-list {
  list-style: none;
  margin: 20px auto;
  max-width: 500px;
}

.event-list li {
  padding: 12px 20px;
  margin: 10px 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 1.05rem;
}

/* ================= GRID & CARDS ================= */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 300px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-align: center;
}

/* ================= SOCIAL ================= */
.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 15px;
}

.social-btn {
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}

.social-btn.facebook {
  background: #1877f2;
}

.social-btn.instagram {
  background: linear-gradient(
    45deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );
}

/* ================= VENUE ================= */
.venue-section {
  padding: 40px 0;
  background: #0b1c2e;
}

.venue-center {
  text-align: center;
}

.map-wrapper {
  max-width: 800px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}

/* ================= EVENTS TABLE ================= */
.events-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 15px;
  text-align: center;
}

.events-section h2 {
  color: #00c6ff;
  margin-bottom: 8px;
}

.event-info {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #d0d7e2;
}

/* CENTER TABLE */
.table-wrapper {
  display: flex;
  justify-content: center;
  overflow-x: auto;
}

.events-table {
  width: auto;
  min-width: 900px;
  border-collapse: collapse;
  background: #ffffff;
  color: #000000;
  border-radius: 8px;
  overflow: hidden;
}

.events-table th,
.events-table td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: center;
}

.events-table th {
  background: #003366;
  color: #ffffff;
  font-weight: 600;
}

.events-table tr:nth-child(even) {
  background: #f5f8fc;
}

.events-table tr:hover {
  background: #e6eef9;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 30px;
  background: #000;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: #003366;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .map-wrapper iframe {
    height: 280px;
  }

  .events-table {
    min-width: 700px;
  }
}
