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

html, body {
  height: 100%;
}

body {
  background: #FFCFEA;
  color: #333333;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: #26F3DD;
  text-decoration: underline;
  transition: color 0.2s;
}

a:hover {
  color: #F4607A;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 48px;
  border-bottom: 1px solid #FEFFBE;
  background: #FFCFEA;
}

nav h1 {
  font-family: 'Big Shoulders Display', display;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #333333;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 16px;
  color: #333333;
}

nav a:hover {
  color: #F4607A;
}

/* Footer */
footer {
  padding: 48px;
  border-top: 1px solid #FEFFBE;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 96px;
  background: #FFCFEA;
}

footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333333;
}

footer a:hover {
  color: #F4607A;
}

/* Main content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px;
  background: #FFCFEA;
  color: #333333;
}

h1 {
  font-family: 'Big Shoulders Display', display;
  font-size: 96px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  line-height: 1.1;
  color: #333333;
}

h2 {
  font-family: 'Big Shoulders Display', display;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: #333333;
}

h3 {
  font-family: 'Big Shoulders Display', display;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #333333;
}

p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.accent {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #F4607A;
}

/* Homepage cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 96px;
}

.card {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #000494 0%, #01053D 100%);
  border: 2px solid #26F3DD;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(38, 243, 221, 0.3);
  border-color: #F4607A;
}

.card-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000494 0%, #01053D 100%);
}

.card-label {
  position: absolute;
  left: -40px;
  top: 0;
  height: 100%;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Big Shoulders Display', display;
  font-size: 12px;
  font-weight: 700;
  transform: rotate(-90deg);
  white-space: nowrap;
  transform-origin: center;
  color: #BFB9FF;
}

@media (max-width: 768px) {
  .card-label {
    position: static;
    left: auto;
    top: auto;
    height: auto;
    width: 100%;
    transform: none;
    padding: 12px;
    background: linear-gradient(135deg, #BFB9FF 0%, #AFE9FF 100%);
    border-bottom: 1px solid #FEFFBE;
  }
}

/* Button */
button, .btn {
  background: transparent;
  border: 2px solid #01053D;
  color: #01053D;
  padding: 16px 48px;
  font-family: 'Big Shoulders Display', display;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

button:hover, .btn:hover {
  background: #F4607A;
  border-color: #F4607A;
  color: #FFCFEA;
  transform: translateY(-4px);
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.two-col-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #BFB9FF 0%, #AFE9FF 100%);
  border: 2px solid #FEFFBE;
}

.two-col-text h2 {
  margin-top: 0;
}

.two-col-text p:last-of-type {
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Video embed */
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  margin: 32px 0;
  border: 2px solid #FEFFBE;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Film entries */
.film-entry {
  margin-bottom: 96px;
  padding-bottom: 96px;
  border-bottom: 1px solid #FEFFBE;
}

.film-entry:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.film-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #999999;
}

.film-subtitle {
  font-style: italic;
  color: #F4607A;
  margin-bottom: 32px;
}

.film-dedication {
  font-style: italic;
  color: #F4607A;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  margin-bottom: 96px;
}

.content-card {
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  cursor: pointer;
}

.content-card:hover {
  transform: translateY(-8px);
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #BFB9FF 0%, #AFE9FF 100%);
  border: 2px solid #FEFFBE;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.content-card:hover .card-img {
  border-color: #F4607A;
  box-shadow: 0 8px 16px rgba(244, 96, 122, 0.2);
}

.card-label-inline {
  font-family: 'Big Shoulders Display', display;
  font-size: 12px;
  font-weight: 700;
  color: #BFB9FF;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.card-title {
  font-family: 'Big Shoulders Display', display;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #333333;
}

.card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #999999;
}

/* Mobile nav */
@media (max-width: 768px) {
  nav {
    padding: 24px;
    flex-wrap: wrap;
    gap: 24px;
  }

  nav h1 {
    width: 100%;
  }

  nav ul {
    width: 100%;
    gap: 16px;
  }

  main {
    padding: 24px;
  }

  footer {
    padding: 24px;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  h1 {
    font-size: 48px;
    margin-bottom: 32px;
  }

  h2 {
    font-size: 40px;
    margin-bottom: 24px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
