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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fafafa;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #d4463c;
}

.header nav {
  display: flex;
  gap: 32px;
}

.header nav a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.2s;
}

.header nav a:hover,
.header nav a.active {
  color: #d4463c;
}

.hero {
  position: relative;
  height: 600px;
  background: url('https://theaiautomationagency.ai/wp-content/uploads/2025/10/AI-automation-agency-image-scaled.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 70, 60, 0.85), rgba(26, 26, 26, 0.75));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.btn-primary {
  display: inline-block;
  background: #d4463c;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 70, 60, 0.3);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #d4463c;
  padding: 14px 32px;
  border: 2px solid #d4463c;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #d4463c;
  color: #fff;
}

.features {
  padding: 80px 0;
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: #d4463c;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
}

.venue {
  padding: 80px 0;
  background: #fafafa;
}

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

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

.venue-text p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.venue-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.program-hero {
  padding: 60px 0 40px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.program-hero h1 {
  font-size: 48px;
  margin-bottom: 12px;
}

.program-hero p {
  color: #666;
  font-size: 18px;
}

.program-grid-section {
  padding: 60px 0 80px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.film-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.film-card:hover {
  transform: translateY(-4px);
}

.film-poster {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: 8px;
  overflow: hidden;
  background: #e5e5e5;
  margin-bottom: 16px;
}

.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 70, 60, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.film-card:hover .film-overlay {
  opacity: 1;
}

.view-details {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.film-info h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.film-meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 4px;
}

.film-venue {
  color: #999;
  font-size: 14px;
}

.event-hero {
  padding: 40px 0 60px;
  background: #fff;
}

.back-link {
  display: inline-block;
  color: #666;
  text-decoration: none;
  margin-bottom: 32px;
  font-weight: 500;
  transition: color 0.2s;
}

.back-link:hover {
  color: #d4463c;
}

.event-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
}

.event-poster img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.event-details h1 {
  font-size: 44px;
  margin-bottom: 12px;
}

.event-director {
  color: #666;
  font-size: 16px;
  margin-bottom: 32px;
}

.event-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: #fafafa;
  border-radius: 8px;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  margin-bottom: 4px;
}

.meta-value {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.event-synopsis {
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
}

.trailer-section {
  padding: 60px 0;
  background: #fafafa;
}

.trailer-section h2 {
  font-size: 32px;
  margin-bottom: 32px;
}

.trailer-wrapper {
  max-width: 900px;
}

.trailer-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.trailer-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  transition: transform 0.2s;
}

.trailer-placeholder:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.event-info-section {
  padding: 60px 0 80px;
  background: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.info-card ul {
  list-style: none;
}

.info-card li {
  color: #666;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.info-card li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #d4463c;
  font-weight: bold;
}

.footer {
  background: #1a1a1a;
  color: #999;
  padding: 40px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .venue-grid, .event-layout, .info-grid { grid-template-columns: 1fr; }
  .event-poster { max-width: 400px; margin: 0 auto; }
  .program-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}