@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

html {
  font-size: 16px;
}

body {
  font-family: 'Roboto Mono', sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  background-color: rgb(255, 192, 0);
  color: rgb(86, 1, 85);
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Header Image */
.header-img {
  display: block;
  margin: 20px auto;
  width: 50%;
  max-width: 800px;
  height: auto;
}

/* Main Photo */
.photo-img {
  display: block;
  margin: 20px auto;
  width: 70%;
  max-width: 800px;
  height: auto;
}

/* ---------------- Single Column Layout ---------------- */
.content-section {
  display: block;
  margin: 20px auto;
  width: 90%;
  max-width: 800px;
}

.left-column,
.right-column {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

/* ---------------- Section Labels ---------------- */
.section-label {
  background-color: rgb(86, 1, 85);
  color: rgb(255, 192, 0);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 1.25rem;
  margin-bottom: 10px;
  display: inline-block;
  text-align: center;
}

.section-label a {
  color: rgb(255, 192, 0);
  text-decoration: none;
}

.section-label a:hover,
.section-label a:visited {
  color: rgb(255, 192, 0);
  text-decoration: none;
}

/* ---------------- Links ---------------- */
.left-column a,
.right-column a {
  color: rgb(255, 192, 0);
  text-decoration: none;
}

.left-column a:hover,
.right-column a:hover,
.left-column a:visited,
.right-column a:visited {
  color: rgb(255, 192, 0);
  text-decoration: none;
}

/* ---------------- Widgets ---------------- */
.widget {
  margin: 15px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.responsive-iframe {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
}

.instagram-widget .responsive-iframe,
.facebook-widget .responsive-iframe {
  padding-bottom: 80%;
}

.spotify-widget .responsive-iframe {
  padding-bottom: 0;
  height: 400px;
}

.youtube-widget .responsive-iframe {
  padding-bottom: 0;
  height: 300px;
}

.responsive-iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* ---------------- Upcoming Gigs ---------------- */
.gigs-label {
  display: block;
  text-align: left;
  font-size: 1.1rem;
  margin-bottom: 8px;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  color: rgb(86, 1, 85);
  font-weight: 700;
}

.gigs-timeline {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
  font-size: 1rem;
}

.gig-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.2);
  border-left: 4px solid rgb(86, 1, 85);
  border-radius: 6px;
}

.gig-date {
  font-weight: 700;
  color: rgb(86, 1, 85);
  min-width: 90px;
  text-align: right;
}

.gig-details {
  flex: 1;
  text-align: left;
  line-height: 1.4;
}

/* ---------------- Ticket Section ---------------- */
.ticket-section {
  text-align: center;
  margin-top: 20px;
}

.ticket-img {
  display: block;
  margin: 20px auto;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
}

.ticket-section a {
  color: rgb(255, 192, 0);
  text-decoration: none;
}

.ticket-section a:hover {
  text-decoration: none;
}

/* ---------------- Contact Form ---------------- */

.email-address {
  font-size: 1.5rem;
  font-weight: 600;
}

.form-container {
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
}

.form-iframe {
  padding-bottom: 0;
  height: 100vh;
  max-width: 100%;
}

.form-iframe iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 767px) {

  html {
    font-size: 14px;
  }

  body {
    font-size: 1.125rem;
  }

  .header-img {
    width: 80%;
  }

  .photo-img {
    width: 90%;
  }

  .responsive-iframe {
    max-width: 100%;
  }

  .gig-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .gig-date {
    text-align: left;
    min-width: auto;
    margin-bottom: 5px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {

  body {
    font-size: 1.375rem;
  }

  .header-img {
    width: 40%;
  }

  .photo-img {
    width: 50%;
  }
}

@media (min-width: 1024px) and (max-width: 1599px) {

  .header-img {
    width: 30%;
  }

  .photo-img {
    width: 40%;
  }
}

@media (min-width: 1600px) {

  .header-img {
    width: 25%;
  }

  .photo-img {
    width: 35%;
  }
}