/* layout.css */
@import url('https://fonts.googleapis.com/css2?family=Buenard:wght@400;700&family=Lora:ital,wght@0,400..700;1,400..700&family=Slackey&display=swap');
/* Reset & container */
* { box-sizing: border-box; margin:0; padding:0; }
body { font-family: Arial, sans-serif; color: #333; line-height:1.4; }
.container { width:90%; max-width:1200px; margin:0 auto; }

/* NAVBAR */
.navbar {
  background: #ff6f3c;
  padding: 1rem 0;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  font-family: "Slackey", serif;
  font-weight: 600;
  font-style: normal;
  text-align:center;
}
.brand span {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
}
.nav-links a:hover {
  text-decoration: underline;
}

/* HERO */
.hero {
  background: #fff;
  padding: 4rem 0;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hero-text {
  flex: 1;
}
.hero-text h1 {
  font-size: 2.5rem;
  color: #ff6f3c;
  margin-bottom: 1rem;
}
.hero-text p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.btn {
  display: inline-block;
  background: #ff6f3c;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}
.btn:hover {
  opacity: 0.9;
}

/* HERO IMAGE */
.hero-image {
  flex: 1;
  text-align: right;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-image {
    margin-top: 2rem;
    text-align: center;
  }
  .nav-links {
  display:none;
}
}

/* ==========================================================================
   SECTION HEADINGS (reuse across sections)
   ========================================================================== */
section h2 {
  font-size: 2rem;
  color: #ff6f3c;          /* match hero accent */
  text-align: center;
  margin: 3rem 0 1.5rem;
}

/* ==========================================================================
   UPDATES SECTION
   ========================================================================== */
#updates {
  background: #fff5f0;     /* very light orange tint */
  border-left: 4px solid #ff6f3c;
  padding: 2rem 0;
}
#updates ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
#updates li {
  margin: .75rem 0;
  font-size: 1.125rem;
}
.wrap {
	padding:20px;
}

/* ==========================================================================
   ACTIVITIES GRID
   ========================================================================== */
.lineup .artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.artist-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.artist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.artist-card .icon {
  font-size: 2.5rem;
  margin-bottom: .75rem;
  color: #ff6f3c;
}
.artist-card h3 {
  margin-bottom: .5rem;
  font-size: 1.25rem;
}
.artist-card p {
  font-size: 1rem;
  color: #666;
}

/* ==========================================================================
   SCHEDULE (single‐block)
   ========================================================================== */
.schedule .tab-content {
  max-width: 800px;
  margin: 0 auto 2rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 1.5rem;
}
.schedule .tab-content ul {
  list-style: none;
  padding: 0;
}
.schedule .tab-content li {
  display: flex;
  justify-content: space-between;
  padding: .75rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.schedule .tab-content li:last-child {
  border-bottom: none;
}
.schedule .tab-content .time {
  font-weight: 600;
  width: 20%;
}
.schedule .tab-content .stage {
  width: 30%;
  text-align: center;
  color: #888;
}
.schedule .tab-content .artist {
  width: 45%;
  text-align: right;
  font-weight: 500;
}

/* ==========================================================================
   TICKETS CTA
   ========================================================================== */
.tickets {
  background: #ff6f3c;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.tickets h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}
.tickets .btn-lg {
  background: #fff;
  color: #ff6f3c;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  border-radius: 4px;
}
.tickets .btn-lg:hover {
  background: #ffe6e0;
}

/*===========================================================================
	DOWNLOAD FORMS
	========================================================================= */

.downloads .downloads-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align:center;
}
.download-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 1.25rem;
  text-align: center;
}
.download-item p {
  margin-bottom: 1rem;
  color: #666;
}
.download-item .btn-lg {
  background: #ff6f3c;
  color: #fff;
}
.download-item .btn-lg:hover {
  background: #e64a00;
}
#downloads {
  background: #ff6f3c;
  padding: 3rem 2rem;
}
#downloads h2 {
  color: #fff;
}


/* ==========================================================================
   GALLERY GRID
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: .75rem;
  margin-bottom: 3rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 6px;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .2s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact {
  padding: 3rem 0;
  background: #f9f9f9;
}
.contact h2 {
  margin-bottom: 1.5rem;
}
.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
  padding: .75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.contact button {
  align-self: flex-start;
  background: #ff6f3c;
  color: #fff;
  border: none;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}
.contact button:hover {
  background: #e64a00;
}
.contact .success {
  color: #0a7f3a;
  background: #e6ffed;
  padding: .75rem;
  border-left: 4px solid #0a7f3a;
  margin-bottom: 1rem;
}
.contact .error {
  color: #a10a0a;
  background: #ffe6e6;
  padding: .75rem;
  border-left: 4px solid #a10a0a;
  margin-bottom: 1rem;
}

/* ==========================================================================
   RESPONSIVE TWEAKS
   ========================================================================== */
@media (max-width: 768px) {
  /* ensure Activities grid stacks tighter */
  .lineup .artists-grid {
    grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
  }
  /* Schedule padding */
  .schedule .tab-content {
    padding: 1rem;
  }
}
/* ===== Footer ===== */
.site-footer {
  background: #222;
  color: #ccc;
  padding: 2rem 0;
  text-align: center;
}
.site-footer a {
  color: #ff5500;
  text-decoration: none;
}
.site-footer a:hover {
  opacity: 0.8;
}

/* Hamburger icon (hidden on desktop) */
.nav-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Positioning context for absolute menu */
.navbar .container {
  position: relative;
}

/* Mobile styles */
@media (max-width: 768px) {
  /* Show hamburger */
  .nav-toggle {
    display: block;
  }

  /* Hide links by default */
  .nav-links {
    display: none;
    flex-direction: column;
    background: #ff6f3c;
    position: absolute;
    top: 100%;   /* just below the header */
    left: 0;
    width: 100%;
    z-index: 999;
  }

  /* When open, show menu */
  .nav-links.open {
    display: flex;
  }

  /* Stack links vertically */
  .nav-links a {
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #fff;
  }

  /* Adjust brand and spacing */
  .navbar .brand {
    flex: 1;
  }
  .nav-links a:first-child {
    border-top: none;
  }
}
