@font-face {
    font-family: 'Norwester';
    src: url('fonts/norwester.otf') format('opentype');
}
@font-face {
    font-family: 'Hangyaboly';
    src: url('fonts/Hangyaboly.ttf') format('truetype');
}

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

body {
  background: linear-gradient(to right, #1b7b82, #0c2d49);
  color: #fff;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  margin: 0;
  padding-top: 100px;
  text-align: center;
}

/* HAMBURGER-ONLY NAVBAR (half size + menu from top) */
.navbar {
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Smaller hamburger */
.navbar-toggler {
  border: none;
  outline: none;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 9999;
  background: transparent;
  cursor: pointer;
}

/* White 3-line icon */
.navbar-toggler-icon {
  width: 80px;
  height: 80px;
  background-size: 80px 80px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='8' stroke-linecap='round' d='M15 30h70M15 50h70M15 70h70'/%3E%3C/svg%3E");
}

/* HAMBURGER HOVER ANIMATION */
.navbar-toggler {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.navbar-toggler:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.navbar-toggler-icon {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
  transform: rotate(5deg);
  filter: drop-shadow(0 0 6px #ff6b00);
}

/* Make dropdown appear from the very top */
.navbar-collapse {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 0;
  text-align: center;
  padding: 30px 20px;
  z-index: 9998;
  margin-top: 0; /* overrides old offset */
}

/* NAVBAR LINK STYLE — SMALLER + CLEANER */
.navbar a {
  color: white !important;
  font-family: 'Norwester', sans-serif;
  font-size: 1.2rem;        /* was 1.8rem */
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin: 12px 0;
  transition: color 0.3s ease, transform 0.2s ease;
}

.navbar a:hover {
  color: #ff6b00 !important;
  transform: scale(1.05);
}

.navbar-collapse {
  padding: 20px 10px;
}

/* HERO SECTION */
.hero-section {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.strapline {
  font-family: 'Hangyaboly', cursive;
  font-size: 3rem;
  margin-bottom: 60px;
}
.hero-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
}
.logo-img {
  max-width: 380px;
  border: 3px solid #fff;
  border-radius: 5px;
}
.event-links {
  font-family: 'Norwester', sans-serif;
}
.event-link {
  font-size: 2.6rem;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  margin: 15px 25px;
  display: inline-block;
  transition: 0.3s ease;
}
.event-link:hover {
  color: #ff6b00;
  transform: scale(1.05);
}

/* INFO SECTION */
.info-section {
  max-width: 900px;
  font-size: 1.4rem;
  line-height: 1.8;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  padding: 45px;
  text-align: left;
}
.section-title {
  font-family: 'Norwester', sans-serif;
  font-size: 2.3rem;
  margin-bottom: 25px;
  color: #ff6b00;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .navbar-toggler, .navbar-toggler-icon {
    width: 120px;
    height: 120px;
  }
  .strapline { font-size: 2.4rem; }
  .event-link { font-size: 2rem; display: block; }
}
@media (max-width: 768px) {
  .navbar-toggler, .navbar-toggler-icon {
    width: 100px;
    height: 100px;
  }
  .strapline { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .navbar-toggler, .navbar-toggler-icon {
    width: 80px;
    height: 80px;
  }
  .strapline { font-size: 1.4rem; }
}

/* EVENT BOX STYLE */
.event-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  margin: 40px auto;
  max-width: 1000px;
  gap: 30px;
  transition: all 0.3s ease;
}
.event-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.event-photo {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.event-content {
  color: #fff;
  text-align: left;
  flex: 1;
}

.event-content h3 {
  font-family: 'Norwester', sans-serif;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.price {
  font-size: 1.3rem;
  color: #ff6b00;
  font-weight: bold;
  margin-bottom: 12px;
}

.event-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* TICKET BUTTON ANIMATION */
.ticket-btn {
  background: #ff6b00;
  color: white;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(255, 107, 0, 0.4);
}

.ticket-btn:hover {
  background: #ff944d;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
}

.ticket-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.4);
}

/* Gentle pulse to attract attention */
@keyframes ticketPulse {
  0% { box-shadow: 0 0 0 rgba(255, 107, 0, 0.0); }
  50% { box-shadow: 0 0 15px rgba(255, 107, 0, 0.5); }
  100% { box-shadow: 0 0 0 rgba(255, 107, 0, 0.0); }
}

.ticket-btn {
  animation: ticketPulse 3s infinite;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .event-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .event-photo {
    width: 100%;
    height: 320px;
  }
  .event-content {
    text-align: center;
  }
  .event-content h3 {
    font-size: 1.5rem;
  }
}

/* VENUE PAGE STYLING */
.venue-item h3 {
  font-family: 'Norwester', sans-serif;
  font-size: 1.8rem;
  color: #ff6600;
  margin-bottom: 15px;
}

.venue-item p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #fff;
}

.footer {
  background: rgba(255, 255, 255, 0.05);
  color: #ccc;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.opening-line {
  font-family: 'Hangyaboly', cursive;
  font-size: 2rem;
  text-align: left;
  color: #fff;
  margin-bottom: 40px;
}

/* BACK TO TOP BUTTON */
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #ff6b00;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  display: none;
  transition: all 0.3s ease;
  z-index: 9999;
}

#backToTop:hover {
  background-color: #ff944d;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.6);
}

