/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* BODY – FIXED BACKGROUND IMAGE */
body {
  color: #222;
  line-height: 1.6;

  background:
    linear-gradient(rgba(255,255,255,0.90), rgba(255,255,255,0.90)),
    url("../images/bg.jpg") center / cover no-repeat fixed;
}


/* ================= HEADER ================= */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.header {
  background: #0b3c5d;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

/* Header layout */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

/* Center title */
.logo {
  flex: 1;
  text-align: left;
}

.logo h1 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.logo p {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Right area (logos + menu) */
.right-area {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

/* Logos */
.top-logo {
  height: 50px;
  width: auto;
}

/* ================= NAVIGATION ================= */

.nav-wrapper {
  width: 100%;
}

.nav {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a.active {
  text-decoration: underline;
}

/* ================= HAMBURGER MENU ================= */

#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  background: #ffffff;
  height: 3px;
  width: 24px;
  margin: 4px 0;
  border-radius: 2px;
}

/* ================= MOBILE HEADER ================= */

@media (max-width: 768px) {

  .menu-icon {
    display: flex;
  }

  .nav-wrapper {
    display: none;
    position: absolute;
    top: 55px;
    right: 0;
    background: #0b3c5d;
    width: 90%;
    padding: 10px 0;
  }

  #menu-toggle:checked ~ .nav-wrapper {
    display: block;
  }

  .nav {
    flex-direction: column;
    text-align: center;
  }

  .nav li {
    margin: 10px 0;
  }

  .logo h1 {
    font-size: 1.3rem;
  }

  .logo p {
    font-size: 0.75rem;
  }
}







/* HERO (SEPARATE, NOT AFFECTED BY BODY BG) */
.hero {
  height: 380px;
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("../images/JU.jpeg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 10px;
}

/* SECTIONS */
.section {
  max-width: 1100px;
  margin: 90px auto;
  padding: 70px 20px;
  position: relative;

  background: rgba(255,255,255,0.88);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* LIGHT SECTIONS (ONLY SPACING DIFFERENCE) */
.section.light {
  padding: 90px 20px;
}

/* SECTION HEADINGS */
.section h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a237e;
  margin-bottom: 30px;
}

/* TEXT HELPERS */
.center {
  text-align: center;
}

.muted {
  color: #666;
}

/* BUTTONS */
.buttons {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  margin: 10px;
  background: #1a237e;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #0f155e;
}

.btn.outline {
  background: transparent;
  border: 2px solid #1a237e;
  color: #1a237e;
}

.btn.outline:hover {
  background: #1a237e;
  color: #ffffff;
}

/* IMPORTANT DATES */
.date-list {
  list-style: none;
  max-width: 500px;
  margin: auto;
}

.date-list li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

/* SCHEDULE TIMELINE */
.timeline {
  max-width: 700px;
  margin: auto;
}

.time-item {
  display: flex;
  justify-content: space-between;
  background: #ffffff;
  padding: 16px 20px;
  border-left: 5px solid #1a237e;
  margin-bottom: 14px;
  border-radius: 8px;
}

.time-item span {
  font-weight: 600;
  color: #1a237e;
}

/* FOOTER */
footer {
  background: #0d1b2a;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

/* SECTION DIVIDER (OPTIONAL) */
.section-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-divider svg {
  width: 100%;
  height: 90px;
}

.section-divider path {
  fill: rgba(255,255,255,0.85);
}

/* MOBILE SAFETY – DISABLE FIXED BG */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .section {
    margin: 60px 15px;
    padding: 50px 15px;
  }
}

/* FLYER LIVE VIEW */
.flyer-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.flyer-preview {
  max-width: 100%;
  width: 420px;
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
  transition: transform 0.3s ease;
}

.flyer-preview:hover {
  transform: scale(1.02);
}


/* PDF PREVIEW */
.pdf-container {
  margin: 30px auto;
  max-width: 900px;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
}

.pdf-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ================= IMPORTANT DATES – CENTERED ================= */

.section.important-dates-simple {
  background: transparent !important;
  box-shadow: none !important;
  text-align: center;
}

/* Title */
.dates-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 40px;
}

/* Center the whole list */
.dates-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;            /* CENTER ALL ITEMS */
}

/* Individual date item */
.date-item {
  display: flex;
  align-items: center;
  gap: 16px;

  justify-content: center;        /* CENTER ICON + TEXT */
  text-align: left;

  background: transparent !important;
  max-width: 620px;
  width: 100%;
}

/* Icon */
.date-icon {
  font-size: 1.5rem;
}

/* Text block */
.date-item div {
  text-align: left;
}

/* Text */
.date-item strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.date-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #374151;
}

/* Mobile */
@media (max-width: 600px) {
  .date-item {
    flex-direction: column;       /* STACK ICON ABOVE TEXT */
    text-align: center;
  }

  .date-item div {
    text-align: center;
  }
}


/* ================= VENUE – CENTERED & TRANSPARENT ================= */

.section.venue-simple {
  background: transparent !important;
  box-shadow: none !important;
  text-align: center;
}

.venue-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 36px;
}

.venue-content {
  display: flex;
  justify-content: center;
}

.venue-item {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  text-align: left;
  max-width: 620px;
  width: 100%;
}

.venue-icon {
  font-size: 1.6rem;
}

.venue-item strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.venue-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #374151;
}

/* Mobile */
@media (max-width: 600px) {
  .venue-item {
    flex-direction: column;
    text-align: center;
  }

  .venue-item div {
    text-align: center;
  }
}
/* Venue map link */
.venue-map-link {
  margin-top: 14px;
  text-align: center;
}

.venue-map-link a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.venue-map-link a:hover {
  text-decoration: underline;
}