﻿/* ========================
   HEADER
======================== */
.site-header {
  background: #dddddb;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ========================
   LOGO
======================== */
.logo img {
  height: 36px;
  display: block;
}

/* ========================
   NAVIGATION
======================== */
.nav {
  display: flex;
  gap: 30px;
  padding-right: 20px;
}

.nav a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.nav a:hover {
  opacity: 1;
}

.nav a.active {
  opacity: 1;
  border-bottom: 2px solid rgb(0, 0, 0);
  padding-bottom: 4px;
}

/* ========================
   BODY & CONTAINER
======================== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
}

/* ========================
   PLAY / FILM LAYOUT
======================== */
.play {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 2px solid #eee;
}

/* Remove default width for images and make them block */
.play img {
  border-radius: 10px;
  display: block;
}

/* Poster 22% width */
.play img.poster {
  flex: 0 0 22.5%;
  max-width: 22.5%;
  height: auto;
}

/* Landscape 50% width */
.play img.landscape {
  flex: 0 0 48%;
  max-width: 48%;
  height: auto;
}

/* Video styling */
.play iframe.video {
  flex: 0 0 48%;
  max-width: 48%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

/* Text / Info 28% width */
.play .info {
  flex: 0 0 22%;
  max-width: 22%;
}


/* ========================
   MOBILE LAYOUT
======================== */
@media (max-width: 768px) {
  .play {
    flex-direction: column;
    align-items: flex-start;
  }

  .play img,
  .play iframe,
  .play .info {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    gap: 15px;
  }

  .nav {
    gap: 20px;
  }
}