/* ==========================================
   1. RESET & GLOBAL STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* Common Buttons */
.btn-red {
  background-color: #b30000;
  color: #fff;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 1px;
  transition: background 0.3s;
}
.btn-red:hover {
  background-color: #e60000;
}
.btn-outline {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #fff;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 1px;
  transition: background 0.3s;
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   2. HEADER & NAV
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
}
.logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 1.5px;
}
.logo span {
  display: block;
  font-size: 0.65rem;
  color: #b30000;
  letter-spacing: 2px;
  font-weight: 800;
}
.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-links a:hover {
  color: #b30000;
}
.imdb-btn {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 5px 12px;
  border-radius: 2px;
}
.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  color: #fff;
}

/* ==========================================
   3. HERO SECTION
   ========================================== */
.hero {
  position: relative;
  height: 456px;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  padding: 0 40px 15px 40px;
  background: url('img/hero_bg.jpg') center/cover no-repeat;
}
.hero-content {
  max-width: 600px;
}
.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}
.hero-subtitle {
  color: #b30000;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.hero-info {
  font-size: 0.8rem;
  font-weight: 600;
  color: #cccccc;
  letter-spacing: 1px;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}
.hero-btns {
  display: flex;
  gap: 15px;
}
.scroll-down {
  position: absolute;
  right: 40px;
  bottom: 80px;
  writing-mode: vertical-rl;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #888888;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-down::after {
  content: '';
  width: 1px;
  height: 40px;
  background-color: #888888;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}

/* ==========================================
   4. ABOUT SECTION
   ========================================== */
.about-section {
  background-color: #f2f2f2;
  color: #111111;
  padding: 40px 40px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  scroll-margin-top: 30px;
}
.about-img {
  width: 350px;
  flex-shrink: 0;
}
.about-img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.about-content {
  flex: 1;
}
.section-label {
  font-size: 0.75rem;
  color: #b30000;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.about-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.about-desc {
  font-size: 0.95rem;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 600;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid #dddddd;
  padding-top: 30px;
}
.stat-item {
  display: flex;
  gap: 15px;
  align-items: center;
}
.stat-icon {
  font-size: 1.8rem;
  color: #b30000;
}
.stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}
.stat-text {
  font-size: 0.65rem;
  font-weight: 800;
  color: #666666;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================
   5. SHOWREEL & SLIDER SECTION
   ========================================== */
.showreel-section {
  padding: 40px 40px;
  background-color: #0d0d0d;
  scroll-margin-top: 30px;
}

.video-responsive-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
}

.video-responsive-wrapper .play-btn-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.play-btn-large {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.432);
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.video-responsive-wrapper:hover .play-btn-large {
  transform: translate(-50%, -50%) scale(1.1);
  background: #b30000;
  border-color: #b30000;
}

/* Grid Thumbnails */
.showreel-thumbs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}

.thumb-card {
  position: relative;
  background-color: #1a1a1a;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.thumb-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
}

.thumb-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.thumb-info {
  padding: 8px 5px;
}

.thumb-title {
  font-size: 0.65rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
}

.thumb-sub {
  font-size: 0.55rem;
  color: #888888;
  font-weight: 600;
}

/* Slider Styles */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #1a1a1a;
  border-radius: 8px;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  background-color: #1a1a1a;
  display: block;
}

.slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.slide-info {
  padding: 12px 14px;
  background-color: #1a1a1a;
  text-align: left;
}

.slide-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slide-sub {
  font-size: 0.8rem;
  color: #888888;
  font-weight: 600;
}

/* Slider Navigation Controls */
.slider-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  z-index: 10;
  transition: background 0.3s, transform 0.2s;
}

.slider-btn:hover {
  background: #b30000;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 12px; }
.next-btn { right: 12px; }

/* Dot Indicators */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0;
  background-color: #1a1a1a;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #444;
  cursor: pointer;
  transition: background-color 0.3s;
}
.dot.active {
  background-color: #b30000;
}

/* ==========================================
   6. WORKS & CONTENT CONTAINER
   ========================================== */
#works, #photos, #contact {
  scroll-margin-top: 30px;
}

.main-container {
  padding: 20px 40px 20px 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #222222;
  padding-bottom: 10px;
}

.pc-two-column {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
}

.sidebar-block {
  margin-bottom: 15px;
}
.sidebar-title {
  font-size: 0.75rem;
  color: #b30000;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.info-table {
  width: 100%;
  font-size: 0.75rem;
  border-collapse: collapse;
  font-weight: 600;
}
.info-table td {
  padding: 6px 0;
  border-bottom: 1px solid #1a1a1a;
}
.info-table td:first-child {
  color: #888888;
  width: 40%;
}

/* ==========================================
   7. FOOTER & CTA BANNER
   ========================================== */
.cta-banner {
  background-color: #080808;
  padding: 20px 20px;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  width: 100%;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-img-box {
  width: clamp(140px, 18vw, 220px); 
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}
.cta-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-center-text {
  flex: 1;
  text-align: center;
}
.cta-red-line {
  width: 30px;
  height: 2px;
  background-color: #b30000;
  margin: 0 auto 10px auto;
}
.cta-title {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
}
.cta-title span {
  color: #b30000;
}
.cta-name {
  font-size: 0.8rem;
  color: #aaaaaa;
  margin-top: 8px;
  font-weight: 700;
}

.cta-right-info {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-contact-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta-contact-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 4px;
}
.cta-contact-item .label {
  color: #888888;
  font-weight: 800;
}
.cta-contact-item .val {
  color: #cccccc;
  font-weight: 600;
}

footer {
  background-color: #030303;
  text-align: center;
  padding: 15px;
  font-size: 0.65rem;
  color: #555555;
  font-weight: 600;
}

/* ==========================================
   8. RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
  header {
    padding: 10px 20px;
  }
  
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    max-height: 350px;
    padding: 10px 0;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 1px 0;
    width: 100%;
    text-align: center;
    font-weight: 800;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }

  .hero {
    padding: 0 0px 20px 20px;
  }
  .hero-title {
    font-size: 2.9rem;
  }
  .scroll-down {
    display: none;
  }

  .about-section {
    flex-direction: column;
    padding: 50px 20px;
  }
  .about-img {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .showreel-section, .main-container {
    padding: 40px 20px;
  }
  .cta-banner {
    padding: 20px 15px;
  }
  .showreel-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
  .pc-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .showreel-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .cta-right-info {
    width: 100%;
  }
  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}

/* ==========================================
   9. LAYOUT
   ========================================== */
.site-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #0a0a0a;
}