* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: #ffffff;
  color: #000;
}

/* Header */
.site-header {
  background: #aabdf6;
  padding: 20px 0;
}

.header-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  /* Align logo and menu to bottom */
  justify-content: space-between;
}

.logo {
  height: 140px;
  /* Increased size (was 80px) */
}

.nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #000;
  font-size: 15px;
}

.nav a.active-link {
  color: #fff !important;
  text-decoration: underline;
}

/* Main */
.main {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}

.presents {
  font-size: 14px;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.show-title {
  max-width: 380px;
  margin: 0 auto 30px;
  display: block;
}

.show-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  text-align: left;
  margin-bottom: 40px;
}

.show-info p {
  font-size: 15px;
  line-height: 1.6;
}

.dates {
  font-size: 22px;
  font-weight: bold;
  color: #1f4b3a;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
}

/* Button */
.ticket-button {
  display: inline-block;
  background: #1f4b3a;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 60px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.ticket-button:hover {
  background: #2c6652;
}

/* Instagram */
.instagram {
  margin-top: 80px;
  text-align: center;
}

.instagram h2 {
  font-size: 18px;
  margin-bottom: 24px;
  color: #1f4b3a;
}

.insta-frame {
  background: #aabdf6;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.insta-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
  /* Make them square like insta posts */
}

.insta-handle {
  margin-top: 18px;
  display: inline-block;
  background: #1f4b3a;
  color: #fff;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

/* Meme Banner */
.memes-banner {
  margin: 80px auto 0;
  max-width: 100%;
  display: block;
}

/* ---------- BODY ---------- */
body {
  font-family: 'Nunito', sans-serif;
  /* Body text */
  font-weight: 300;
  /* Light */
  font-size: 16px;
  line-height: 1.5em;
  color: #000;
  margin: 0;
  padding: 0;
}

/* Paragraphs & list items */
p,
li {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5em;
}

/* ---------- HEADINGS ---------- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: 'Fraunces', serif;
}

h1,
.h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2em;
}

h2,
.h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.25em;
}

h3,
.h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3em;
}

h4,
.h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35em;
}

h5,
h6 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4em;
}

/* ---------- NAVIGATION / MENU ---------- */
.nav {
  display: flex;
  align-items: flex-end;
  /* Align items to bottom */
}

.nav-menu,
nav a,
.header {
  font-family: 'Jost', sans-serif;
  /* Futura LT alternative */
  font-weight: 300;
  /* Light version */
  font-size: 16px;
  /* Slightly larger base */
  line-height: 1.4em;
  text-transform: none;
  /* Futura often looks good in sentence case too, but sticking to design */
  letter-spacing: 0.5px;
  color: #000;
  text-decoration: none;
}

/* Dropdown Container */
.dropdown {
  /* float: left;  <-- REMOVED: Caused incorrect ordering */
  position: relative;
  /* Needed for dropdown content positioning */
  margin-left: 24px;
  /* Same margin as links */
}

/* Dropdown Button */
.dropdown .dropbtn {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  /* Light version */
  font-size: 16px;
  /* Match nav links */
  border: none;
  outline: none;
  color: black;
  background-color: inherit;
  margin: 0;
  text-transform: none;
  letter-spacing: 0.5px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  margin-left: 0;
  /* Reset nav margin */
  font-size: 13px;
  /* Slightly smaller for submenu */
  text-transform: none;
  /* Keep natural case for submenu */
  font-weight: 500;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* ---------- BUTTONS ---------- */
button,
.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ---------- LINKS / ANCHORS ---------- */
a {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.dropdown-content a:hover {
  text-decoration: none;
  /* No underline in dropdown, just bg change */
}

/* ---------- FOOTER ---------- */
footer,
.footer {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4em;
  color: #555;
  padding: 40px 20px;
  text-align: center;
}

/* ---------- FORM ELEMENTS ---------- */
input,
textarea,
select {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5em;
  color: #000;
}

/* Optional small adjustments to match Wix spacing */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  margin-bottom: 1em;
}

/* Responsive Media Queries */
@media screen and (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    padding-bottom: 20px;
  }

  .logo {
    margin-bottom: 20px;
    height: 60px;
    /* Smaller logo on mobile */
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav a,
  .dropdown {
    margin: 0 10px 10px 10px;
    /* Closer spacing on mobile */
  }

  .show-info {
    grid-template-columns: 1fr;
    /* Stack into one column */
    gap: 20px;
  }

  .insta-frame {
    grid-template-columns: 1fr;
    /* Stack images */
    padding: 10px;
  }
}

/* ---------- CAST & CREW ---------- */
.cast-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.cast-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.cast-intro h1 {
  margin-bottom: 20px;
}

.cast-intro p {
  font-size: 18px;
  line-height: 1.6;
}

.cast-quote {
  font-style: italic;
  margin-top: 20px;
  color: #1f4b3a;
  font-weight: 400;
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.cast-member {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cast-member img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  object-fit: cover;
  aspect-ratio: 403 / 334;
}

.member-info h3 {
  margin-bottom: 5px;
  color: #1f4b3a;
}

.member-role {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #555;
}

.member-bio {
  font-size: 15px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .cast-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CONTEST PAGE ---------- */
.contest-section {
  max-width: 1000px;
  /* Increased for 3-column layout */
  margin: 0 auto;
  padding: 20px 20px;
  text-align: center;
}

.contest-header-img {
  max-width: 450px;
  margin: 0 auto 20px;
  display: block;
}

.contest-section h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 42px;
  margin-bottom: 30px;
}

.contest-intro-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 3-Column Grid Container */
.contest-main-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  /* Split into Winners area and Sidebar */
  gap: 40px;
  text-align: left;
}

.winners-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.winner-entry {
  display: grid;
  grid-template-columns: 220px 1fr;
  /* Text Column | Image Column */
  gap: 60px;
  align-items: flex-start;
}

.winner-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

.winner-img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contest-sidebar {
  position: sticky;
  top: 40px;
  height: fit-content;
}

.contest-card {
  background-color: #f0f4ff;
  border: 1px solid #c8d6ff;
  padding: 30px;
  border-radius: 4px;
}

.contest-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  margin-bottom: 20px;
  color: #000;
}

.contest-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.vi-info {
  display: flex;
  flex-direction: column;
  /* Stacked in sidebar */
  gap: 20px;
  align-items: center;
}

.vi-img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.vi-text {
  width: 100%;
}

.contest-footer-band {
  padding-top: 20px;
  background-color: #aabdf6;
  height: 60px;
  width: 100%;
  margin-top: 80px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .contest-main-content {
    grid-template-columns: 1fr;
    /* Stack sidebar on tablet */
  }
}

@media screen and (max-width: 768px) {
  .winner-entry {
    grid-template-columns: 1fr;
    /* Stack text and image on mobile */
  }
}

/* ---------- BLOG PAGES ---------- */
.blog-page {
  background-color: #aabdf6;
  /* Light blue background */
  min-height: 100vh;
}

.blog-banner {
  background-color: #f4ebd7;
  /* Cream background */
  padding: 60px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-banner-img {
  width: 200px;
  height: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-banner-text h1 {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  margin-bottom: 10px;
  color: #000;
}

.blog-banner-text p {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  color: #014235;
  /* Dark green */
  font-weight: 400;
  margin: 0;
}

.blog-container {
  max-width: 1000px;
  margin: -40px auto 80px;
  /* Overlap with banner slightly */
  background: #fff;
  padding: 60px 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.blog-post-title {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 500;
}

.blog-post-content {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.blog-post-content p {
  margin-bottom: 25px;
}

.speaker-name {
  color: #d11212;
  /* Red for speaker */
  font-weight: 600;
  display: block;
}

.speech-text {
  font-style: normal;
}

.blog-post-img {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-post-img.small {
  max-width: 25%;
}

.blog-post-img.medium {
  max-width: 50%;
}

.blog-separator {
  border: 0;
  height: 1px;
  background: #eee;
  margin: 40px 0;
}

/* New style for side-by-side content in blog posts */
.blog-side-by-side {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 21px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.blog-side-by-side .blog-post-img {
  margin: 0;
}

.side-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-self: stretch;
  /* Take full height to allow vertical centering */
}

.blog-button {
  display: inline-block;
  background: #333;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #333;
  margin: 20px;
}

.blog-button.uppercase {
  text-transform: uppercase;
}

.blog-button:hover {
  background: #fff;
  color: #333;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .blog-side-by-side {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.blog-post-content h2,
.blog-post-content h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #014235;
}

@media screen and (max-width: 768px) {
  .blog-banner {
    flex-direction: column;
    padding: 40px 20px;
  }

  .blog-container {
    margin-top: 20px;
    padding: 40px 20px;
  }
}

strong {
  font-weight: 800;
}