/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/venue/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--off-white);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-meta-item {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
}

.hero-meta-divider {
  width: 1px;
  height: 16px;
  background: #555;
}

.hero-scroll { display: none; }

/* ── A24-style film list (bottom-right of hero) ── */
.hero-films {
  position: absolute;
  bottom: 60px;
  right: 40px;
  z-index: 1;
  width: 300px;
}

.hero-film {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: opacity 0.25s;
}

.hero-film:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-film-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  transition: color 0.3s;
  line-height: 1.2;
}

.hero-film-date {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  transition: color 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.hero-film.active .hero-film-name {
  color: #fff;
  font-style: italic;
}

.hero-film.active .hero-film-date {
  color: rgba(255,255,255,0.65);
}

.hero-film:hover .hero-film-name { color: rgba(255,255,255,0.75); }
.hero-film:hover .hero-film-date { color: rgba(255,255,255,0.5); }

/* ── PROGRAM / FILMS ── */
#program { background: var(--black); }

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

a.film-card, a.workshop-feature { display: block; text-decoration: none; color: inherit; }

.film-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.film-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.film-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: brightness(0.7);
}

.film-card:hover img {
  transform: scale(1.03);
  filter: brightness(0.5);
}

.film-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 80px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
}

.film-card-type {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.film-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 4px;
}

.film-card:first-child .film-card-title {
  font-size: 32px;
}

.film-card-director {
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
}

.film-card-date {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  margin-top: 8px;
}

/* ── ABOUT ── */
#about { background: #050505; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.about-image-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.about-text .section-label {
  margin-bottom: 20px;
  display: block;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 32px;
}

.about-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #aaa;
  margin-bottom: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

/* ── GUESTS ── */
#guests { background: var(--black); }

.guests-scroll-wrapper {
  position: relative;
  margin-top: 40px;
}

.guests-scroll {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.guests-scroll:active { cursor: grabbing; }
.guests-scroll::-webkit-scrollbar { display: none; }

.guest-card {
  flex: 0 0 calc(25% - 1.5px);
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  scroll-snap-align: start;
}

.guest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) grayscale(20%);
  transition: filter 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

.guest-card:hover img {
  filter: brightness(0.45) grayscale(0%);
  transform: scale(1.03);
}

.guest-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 40%, transparent);
}

.guest-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 5px;
  line-height: 1.2;
}

.guest-role {
  font-size: 11px;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.06em;
}

.guest-award {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
}

.guests-scroll-hint {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.guests-scroll-hint button {
  background: none;
  border: 1px solid #333;
  color: var(--white);
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 16px;
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guests-scroll-hint button:hover { border-color: var(--white); }

@media (max-width: 900px) {
  .guest-card { flex: 0 0 calc(50% - 1px); }
}

/* ── LOCATION ── */
#location, #lokacija {
  background: #050505;
  padding: 0;
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.location-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/venue/location.jpg');
  background-size: cover;
  background-position: center 60%;
  filter: brightness(0.55);
}

#location::after, #lokacija::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
  z-index: 0;
}

.location-content {
  position: relative;
  z-index: 1;
  padding: 60px 40px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.location-text .section-label {
  display: block;
  margin-bottom: 16px;
}

.location-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
}

.location-title em {
  font-style: italic;
  color: var(--off-white);
}

.location-detail {
  font-size: 14px;
  font-weight: 300;
  color: #888;
  margin-top: 16px;
  max-width: 340px;
  line-height: 1.7;
}

.location-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

/* ── WORKSHOPS ── */
#workshops { background: var(--black); }

.workshops-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.workshop-feature {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.workshop-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
  transition: filter 0.7s ease, transform 0.7s ease;
}

.workshop-feature:hover img {
  filter: brightness(0.3);
  transform: scale(1.03);
}

.workshop-feature-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.workshop-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.workshop-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}

.workshop-desc {
  font-size: 14px;
  font-weight: 300;
  color: #999;
  line-height: 1.6;
  max-width: 360px;
}

/* ── NEWSLETTER ── */
#newsletter {
  background: #050505;
  text-align: center;
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}

.newsletter-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}

.newsletter-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 48px;
}
