/* Reset margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease, padding 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  padding: 15px 40px;
}

nav .nav-logo {
  display: flex;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  position: relative;
  left: 0;
}

nav .nav-logo a {
  display: flex;
  align-items: center;
}

nav .nav-logo img {
  height: 32px;
  width: auto;
  opacity: 1;
  transition: transform 0.3s ease, height 0.3s ease;
}

nav.scrolled .nav-logo img {
  height: 28px;
}

nav .nav-logo:hover img {
  transform: scale(1.05);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  nav {
    padding: 20px;
  }
  nav ul {
    gap: 20px;
    flex-wrap: wrap;
  }
  nav a {
    font-size: 14px;
  }
}

/* Hero Section with Video Background */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

#background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.logo-container {
  margin-bottom: 40px;
}

.logo-container svg {
  width: 350px;
  max-width: 90%;
  height: auto;
  transition: width 0.5s ease;
}

@media (max-width: 768px) {
  .logo-container svg {
    width: 250px;
  }
}

/* Content Sections */
section {
  position: relative;
  z-index: 10;
  padding: 100px 50px;
  background: #000;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 64px;
  margin-bottom: 50px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
}

@media (max-width: 768px) {
  h2 {
    font-size: 42px;
  }
  h3 {
    font-size: 32px;
  }
  .hero-content h1 {
    font-size: 56px;
  }
  .project-title {
    font-size: 42px;
  }
  section {
    padding: 60px 30px;
  }
  .social-proof h2,
  .recognition-section h2,
  .press-section h2,
  .making-of-section .section-heading {
    font-size: 42px;
  }
  .credits-section h3 {
    font-size: 32px;
  }
}

/* About Section */
.about-text {
  font-size: 20px;
  line-height: 1.8;
  max-width: 800px;
  color: #e0e0e0;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .about-text {
    font-size: 18px;
  }
}

/* Projects/Work Section */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

.project-item {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: #111;
  will-change: transform;
  contain: layout style paint;
  border-radius: 12px;
}

.project-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: 0 0 12px 12px;
}

.project-item:hover {
  transform: scale(1.02);
}

.project-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  will-change: opacity;
}

.project-item:hover .project-thumbnail {
  opacity: 0;
}

.project-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  will-change: opacity;
}

.project-item:hover .project-video-container {
  opacity: 1;
}

.project-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.project-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 20px 20px;
  z-index: 2;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-title {
  opacity: 1;
}

.project-title h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.project-category {
  display: none;
}

/* Social Proof Section */
.social-proof {
  padding: 120px 50px;
  background: #fff;
}

.social-proof h2 {
  margin-bottom: 80px;
  color: #000;
  text-align: center;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  margin-top: 0;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.social-proof-item:nth-child(4),
.social-proof-item:nth-child(5),
.social-proof-item:nth-child(6) {
  grid-column: span 1;
}

/* Logo size adjustments */
.social-proof-item:nth-child(2) img {
  /* Lode King - smaller */
  transform: scale(0.8);
}

.social-proof-item:nth-child(3) img {
  /* Saturation - slightly smaller */
  transform: scale(0.85);
}

.social-proof-item:nth-child(4) img {
  /* Steinbach - very lightly smaller */
  transform: scale(0.95);
}

.social-proof-item:nth-child(5) img {
  /* Manitoba - even larger */
  transform: scale(3.5);
}

.social-proof-item {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.social-proof-item img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: 50px;
  filter: brightness(0);
  opacity: 1;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.social-proof-item img:hover {
  opacity: 1;
}

.social-proof-item:hover img {
  opacity: 1;
}

.social-proof-item p {
  margin-top: 15px;
  color: #999;
  font-size: 14px;
}

/* Press Section */
.press-section {
  padding: 120px 50px;
  background: #fff;
}

.press-section h2 {
  text-align: center;
  margin-bottom: 80px;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #000;
}

.press-section .awards-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.press-section .award-item {
  display: block;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.press-section .award-item:hover {
  transform: scale(1.05);
}

.press-section .award-item img {
  max-width: 50px;
  height: auto;
}

.press-section .award-item-large img {
  max-width: 80px;
  height: auto;
}

.press-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  margin-top: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 120px;
}

.press-link {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.6;
  transition: color 0.3s ease;
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.press-link:last-child {
  border-bottom: none;
}

.press-link:hover {
  color: #000;
}

.press-link strong {
  display: block;
  color: #000;
  margin-bottom: 4px;
  font-weight: 600;
}

@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
  }
  nav.scrolled {
    padding: 12px 20px;
  }
  nav ul {
    gap: 24px;
  }
  nav a {
    font-size: 11px;
  }
  nav .nav-logo img {
    height: 20px;
  }
  nav.scrolled .nav-logo img {
    height: 18px;
  }
  .social-proof {
    padding: 60px 30px;
  }
  .social-proof-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    justify-items: center;
  }
  .social-proof-item {
    height: 60px;
  }
  .social-proof-item img {
    height: 40px;
    max-height: 40px;
    opacity: 1;
  }
  /* Logo size adjustments for mobile */
  .social-proof-item:nth-child(2) img {
    /* Lode King - smaller */
    transform: scale(0.8);
  }
  .social-proof-item:nth-child(3) img {
    /* Saturation - slightly smaller */
    transform: scale(0.85);
  }
  .social-proof-item:nth-child(4) img {
    /* Steinbach - very lightly smaller */
    transform: scale(0.95);
  }
  .social-proof-item:nth-child(5) img {
    /* Manitoba - even larger */
    transform: scale(3.0);
  }
  .press-section {
    padding: 60px 30px;
  }
  .press-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
  }
  .press-links {
    grid-template-columns: 1fr;
    padding: 0 60px;
  }
  .press-link {
    padding: 14px 0;
  }
  .contact-content {
    flex-direction: column;
  }
  .social-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact Section */
#contact {
  padding: 120px 50px;
  background: #000;
}

.contact-cta {
  font-size: 20px;
  line-height: 1.6;
  color: #ccc;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-weight: 300;
}

.contact-content {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-group-centered {
  text-align: center;
}

.contact-group h3 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
}

.contact-role {
  font-size: 16px;
  color: #999;
  margin-bottom: 24px;
  font-weight: 300;
}

.contact-info {
  margin-bottom: 16px;
  color: #ccc;
  line-height: 1.6;
  font-size: 16px;
}

.contact-group a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-group a:hover {
  opacity: 0.7;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.email-link:hover {
  opacity: 0.7;
}

.email-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
}

.email-link span {
  display: none;
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 0;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 300;
}

.social-links a:hover {
  opacity: 0.7;
}

.social-links a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .social-links {
    gap: 16px;
  }
  .social-links a {
    font-size: 16px;
  }
}

/* Image Gallery Section */
.image-gallery {
  position: relative;
  width: 100%;
  min-height: 70vh;
  padding: 100px 50px;
  background: #000;
  overflow: hidden;
}

.gallery-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-image {
  position: absolute;
  width: auto;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease, z-index 0.5s ease;
  cursor: pointer;
}

/* Hide any images beyond the 3rd one - multiple selectors to ensure it works */
.gallery-image:nth-child(n+4),
.gallery-container > .gallery-image:nth-child(4),
.gallery-container > .gallery-image:nth-child(5),
.gallery-container > .gallery-image:nth-child(6),
.gallery-container > .gallery-image:nth-child(7),
.gallery-container > .gallery-image:nth-child(8) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

.gallery-image:hover {
  transform: scale(1.05);
  z-index: 10;
}

.gallery-image:nth-child(1) {
  top: 40px;
  left: calc(50% - 580px);
  width: 320px;
  height: 420px;
  z-index: 1;
  transform: rotate(-3deg);
}

.gallery-image:nth-child(1):hover {
  transform: rotate(-3deg) scale(1.05);
}

.gallery-image:nth-child(2) {
  top: 20px;
  left: calc(50% - 190px);
  width: 380px;
  height: 450px;
  z-index: 3;
  transform: rotate(2deg);
}

.gallery-image:nth-child(2):hover {
  transform: rotate(2deg) scale(1.05);
}

.gallery-image:nth-child(3) {
  top: 60px;
  left: calc(50% + 200px);
  width: 320px;
  height: 420px;
  z-index: 2;
  transform: rotate(-2deg);
}

.gallery-image:nth-child(3):hover {
  transform: rotate(-2deg) scale(1.05);
}

@media (max-width: 1024px) {
  .gallery-container {
    height: 450px;
  }
  
  .gallery-image {
    height: 320px;
  }
  
  .gallery-image:nth-child(1) {
    width: 240px;
    left: calc(50% - 500px);
    top: 30px;
  }
  
  .gallery-image:nth-child(2) {
    width: 300px;
    left: calc(50% - 150px);
    top: 10px;
  }
  
  .gallery-image:nth-child(3) {
    width: 260px;
    left: calc(50% + 150px);
    top: 50px;
  }
}

@media (max-width: 768px) {
  .image-gallery {
    padding: 60px 30px;
    min-height: 50vh;
  }
  
  .gallery-container {
    height: 400px;
  }
  
  .gallery-image {
    height: 220px;
  }
  
  .gallery-image:nth-child(1) {
    width: 180px;
    left: calc(50% - 280px);
    top: 20px;
  }
  
  .gallery-image:nth-child(2) {
    width: 220px;
    left: calc(50% - 110px);
    top: 0;
  }
  
  .gallery-image:nth-child(3) {
    width: 200px;
    left: calc(50% + 100px);
    top: 30px;
  }
}

/* Footer */
/* Footer */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 50px 40px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: 120px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-logo:hover img {
  opacity: 1;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}

.footer-copyright {
  color: #666;
  font-size: 14px;
  margin: 0;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  font-weight: 300;
}

.footer-social a:hover {
  color: #fff;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 1024px) {
  .contact-content {
    gap: 60px;
  }
  .footer-content {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  #contact {
    padding: 80px 30px;
  }
  .contact-cta {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-group h3 {
    font-size: 24px;
  }
  .site-footer {
    padding: 50px 30px 30px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-info {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Project/Work Detail Page Styles */
.project-container {
  margin-top: 80px;
  padding: 0;
}

.video-embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

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

/* Custom Video Player */
.custom-video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.custom-video-player.playing .video-controls {
  opacity: 0;
}

.custom-video-player.playing:hover .video-controls {
  opacity: 1;
}

.play-pause-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.play-pause-btn:hover {
  background: rgba(255, 255, 255, 1);
}

.play-pause-btn svg {
  width: 24px;
  height: 24px;
  stroke: #000;
  fill: none;
}

.video-progress {
  flex: 1;
  height: 4px;
}

.progress-bar {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.progress-filled {
  height: 100%;
  background: #fff;
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.video-time {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
}

.fullscreen-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.fullscreen-btn:hover {
  opacity: 0.7;
}

.fullscreen-btn svg {
  width: 20px;
  height: 20px;
}

.project-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 50px;
}

.project-title {
  font-size: 64px;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.project-description {
  font-size: 18px;
  line-height: 1.8;
  color: #e0e0e0;
  max-width: 800px;
  margin-bottom: 50px;
}

.project-description a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.project-description a:hover {
  opacity: 0.7;
}

/* Film Poster Layout */
.film-poster-section {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 50px;
}

.film-poster-container {
  position: sticky;
  top: 100px;
}

.film-poster-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.film-info-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.film-synopsis {
  font-size: 20px;
  line-height: 1.8;
  color: #e0e0e0;
}

.film-synopsis p {
  margin-bottom: 20px;
}

.film-synopsis strong {
  color: #ffd700;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .film-poster-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .film-poster-container {
    position: relative;
    top: 0;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Credits Section */
.credits-section {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.credits-section h3 {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #fff;
}

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

.credit-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.credit-role {
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

.credit-name {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
}

.back-link-container {
  padding: 40px 50px;
  text-align: center;
  background: #000;
}

.back-link {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.back-link:hover {
  opacity: 0.7;
}

.watch-button-container {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.watch-button {
  display: inline-block;
  padding: 16px 40px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.watch-button:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.loading {
  text-align: center;
  padding: 100px 20px;
  font-size: 18px;
  color: #999;
}

/* Recognition Section */
.recognition-section {
  padding: 60px 50px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.recognition-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.awards-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.award-item {
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.award-item:hover {
  transform: scale(1.05);
  opacity: 1;
}

.award-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.recognition-link {
  text-align: center;
  margin-top: 20px;
}

.recognition-link a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.recognition-link a:hover {
  opacity: 0.7;
}

/* Making Of Section */
.making-of-section {
  padding: 60px 50px;
  background: #000;
  display: none;
}

.making-of-section.active {
  display: block;
}

.making-of-section .section-heading {
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 40px;
  text-align: center;
}

.making-of-video {
  margin-bottom: 50px;
}

.making-of-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

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

.bts-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.bts-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}

.bts-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}

.bts-photo:hover img {
  transform: scale(1.08);
}

.client-logo-section {
  margin-bottom: 40px;
  text-align: center;
}

.client-logo-section img {
  max-width: 200px;
  height: auto;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .project-info {
    padding: 40px 30px;
  }
  .project-title {
    font-size: 32px;
  }
  .project-description {
    font-size: 16px;
  }
  .making-of-section {
    padding: 40px 30px;
  }
  .recognition-section {
    padding: 40px 30px;
  }
  .awards-grid {
    gap: 20px;
  }
  .award-item img {
    width: 40px;
    height: 40px;
  }
  .bts-photos-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
  }
  .credits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .back-link-container {
    padding: 30px 20px;
  }
}

