/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  line-height: 1.5;
  color: #000000;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4 {
  font-family: Didot, serif;
  font-weight: normal;
}

/* Header */
header {
  text-align: center;
  padding: 24px 0;
  width: 100%;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-text h2 {
  font-size: 36px;
  letter-spacing: -0.4px;
}

.header-text h1 {
  font-size: 134px;
  letter-spacing: -1.2px;
  line-height: 1.2;
}

.logo {
  width: 100px;
  height: auto;
  display: none; /* Hide in header as per design */
}

/* Middle Section */
.middle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
  gap: 48px;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  opacity: 0.4;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eee8d8;
  padding: 9px 29px;
  border-radius: 80px;
  width: 950px;
  height: 45px;
}

nav a {
  font-size: 24px;
  color: #000000;
  text-decoration: none;
  text-transform: lowercase;
  font-variant: small-caps;
}

nav a:hover {
  text-decoration: underline;
}

/* Main Content */
main {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 950px;
}

/* Section Styling */
.shows-section,
.info-box {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 22px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.section-title h3 {
  font-size: 24px;
  font-family: Georgia, serif;
  font-weight: normal;
}

hr {
  border: none;
  height: 1px;
  background-color: #000000;
  width: 100%;
}

/* Card Container */
.card-container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

/* Card Styling */
.card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h4 {
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 20px;
  margin-top: 10px;
}

.card p {
  font-size: 20px;
  line-height: 1.13;
}

.card .highlight {
  font-size: 16px;
}

/* Info Section */
.info-section {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  width: 100%;
}

.info-box {
  flex: 1;
}

.info-box img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.1px;
}

/* Mission Section */
.mission-section {
  display: flex;
  padding: 0 36px;
  width: 100%;
}

.mission-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding: 48px 0;
  gap: 36px;
}

.mission-container h2 {
  font-size: 56px;
  line-height: 1.25;
}

.mission-container div {
  padding-top: 10px;
}

.mission-container p {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.5%;
  max-width: 600px;
}

/* Footer */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background-color: rgba(255, 45, 85, 0.1);
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: flex-end;
  gap: 48px;
  width: 950px;
}

.footer-section {
  padding: 20px 0;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.3;
}

.footer-section.wide {
  width: 530px;
}

.logo-section {
  width: 96px;
  display: flex;
  justify-content: flex-end;
}

.footer-logo {
  width: 80px;
  height: auto;
}

.copyright {
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.copyright p {
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1000px) {
  .header-text h1 {
    font-size: 100px;
  }

  nav,
  main,
  .footer-content {
    width: 90%;
  }

  .info-section {
    flex-direction: column;
  }

  .mission-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .header-text h1 {
    font-size: 70px;
  }

  .header-text h2 {
    font-size: 28px;
  }

  nav {
    flex-wrap: wrap;
    gap: 15px;
    height: auto;
    justify-content: center;
  }

  .card-container {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-section.wide {
    width: 100%;
  }

  .logo-section {
    width: 100%;
    justify-content: center;
  }
}
