/* Base layout */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #05060a;          /* deep dark */
    color: #f5f5f5;                     /* soft white */
}

.filmography{
    display: flex;
    justify-content: center;
    margin:120px 0 60px;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
}
.container h2{
    text-align: center;
    margin-bottom: 20px;
    color: yellow;
}

.filmography-page {
    min-height: 100vh;
    padding: 40px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: radial-gradient(circle at top, #1a1b23 0, #05060a 55%, #000000 100%);
}

.filmography-container {
    width: 100%;
    max-width: 1200px;
}

/* Heading / intro */
.filmography-title {
    margin: 0 0 12px;
    font-size: 2rem;
    line-height: 1.2;
    color: #ffe06b;                     /* warm yellow */
    letter-spacing: 0.03em;
    text-align: center;
}

.filmography-note {
    margin: 0 0 32px;
    max-width: 760px;
    color: #e4e4e4;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.filmography-note strong {
    color: #fff6a3;
}

/* Timeline grid */
.filmography-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

/* Responsive columns */
@media (max-width: 1024px) {
    .filmography-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .filmography-timeline {
        grid-template-columns: 1fr;
    }
}

/* Period card */
.timeline-period {
    background: linear-gradient(145deg, #10121a, #05060a);
    border-radius: 14px;
    padding: 18px 16px 14px;
    border: 1px solid #26293a;
    box-shadow:
        0 18px 32px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    height: 374px;
}

/* Subtle glow on hover */
.timeline-period::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top, rgba(255, 224, 107, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.timeline-period:hover::before {
    opacity: 1;
}

.timeline-period h3{
    color: yellow;
}


.timeline-period-heading {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffda3d;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid #292b3a;
    padding-bottom: 8px;
}

.timeline-period-content{
    /* padding: 10px; */
    overflow: auto;
}


.timeline-period-content li{
    padding: 5px;
    font-size: 13px;
    list-style-type: disc;
    color: #dad9d9cc;
    font-weight: 400;
}
.timeline-period-content li::marker{
    border-left:2px solid white;
}

/* Scrollable list container */
.timeline-period-body {
    flex: 1 1 auto;
    max-height: 220px;              /* fixed height – card doesn’t grow */
    overflow: auto;                 /* scroll when content exceeds height */
    padding-right: 4px;             /* room for scrollbar */
}

/* Custom scrollbar (WebKit) */
.timeline-period-body::-webkit-scrollbar {
    width: 6px;
}

.timeline-period-body::-webkit-scrollbar-track {
    background: transparent;
}

.timeline-period-body::-webkit-scrollbar-thumb {
    background-color: #444a5f;
    border-radius: 10px;
}

.timeline-period-body::-webkit-scrollbar-thumb:hover {
    background-color: #f1c232;
}

/* Movies list */
.timeline-movie-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.timeline-movie-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 6px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: #f8f8f8;
    border-bottom: 1px dashed #282a3b;
}

.timeline-movie-item:last-child {
    border-bottom: none;
}

.timeline-movie-item.empty {
    justify-content: flex-start;
    color: #9c9fb1;
    font-style: italic;
}

.movie-name {
    color: #ffffff;
}

.movie-year {
    color: #ffd966;
}

/* "More" button – visual only, card size fixed */
.more-btn {
    margin-top: 4px;
    align-self: flex-end;
    padding: 6px 12px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid #ffd966;
    background: transparent;
    color: #ffd966;
    cursor: default;               /* no JS; purely visual */
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.15s ease;
}

.more-btn:hover {
    background-color: #ffd966;
    color: #111216;
    border-color: #ffd966;
    transform: translateY(-1px);
}

@media (max-width: 480px) {
  .filmography{
      padding: 15px;
      margin-top:80px;
  }
}

/*=======================================================================*/


/* Awards Section */
.awards {
  background: radial-gradient(
    circle at top,
    #1a1b23 0,
    #05060a 55%,
    #000000 100%
  );
  padding: 5rem 0;
}
.section-title {
  text-align: center;
}
.section-subtitle {
  text-align: center;
}
.awards-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.award-showcase-img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.award-showcase-img:hover {
  transform: scale(1.1) ;
  filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.3));
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.award-card {
  background: transparent;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(214, 236, 74, 0.205);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.award-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    135deg,
    rgb(179, 165, 16) 0%,
    rgb(247, 138, 14) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.award-card:hover {
  border-color: rgb(180, 180, 15);
  transform: translateY(-15px);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.25);
}

.award-card:hover::before {
  transform: scaleX(1);
}

.award-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.4s ease;
}

.award-card:hover .award-icon {
  transform: scale(1.2) rotate(10deg);
}

.award-card h3 {
  color: #cd9f16;
  font-size: 1.4rem;
  margin: 0 0 1rem 0;
  font-weight: 800;
  line-height: 1.4;
}

.award-detail {
  color: #dfdcdc;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
  text-align: center;
}

/* Responsive Awards */
@media (max-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .awards {
    padding: 3rem 0;
  }

  .awards-showcase {
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .award-showcase-img {
    width: 150px;
    height: 150px;
  }

  .awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .award-card {
    padding: 2rem;
  }

  .award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .award-card h3 {
    font-size: 1.2rem;
  }

  .award-detail {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .awards {
    padding: 1rem 1rem 5rem 1rem ;
  }

  .awards-showcase {
    flex-direction: column;
    gap: 1rem;
  }

  .award-showcase-img {
    width: 300px;
    height: 200px;
  }

  .awards-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    /* padding: 15px; */
  }

  .award-card {
    padding: 1rem;
  }

  .award-icon {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }

  .award-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .award-detail {
    font-size: 0.8rem;
  }
}

/* ========================================== */
/* Odyssey */
.odyssey{
    margin:120px 0 60px;
    font-family: 'Sans-Serif';
}
.section-title{
    color: rgb(227, 227, 47);
    font-size: 34px;
    font-weight: 800;
}

.odyssey .section-subtitle {
    max-width: 1000px;
    margin: 0 auto;
  padding:  2rem 0;
  font-size: 17px;
}
.odyssey-cont {
  
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.odyssey-card {
  background: transparent;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(175, 204, 69, 0.295);
  transition: all 0.4s ease;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  padding-right: 0.87rem;
  
}

.odyssey-card:hover {
  transform: translateY(-5px);
  border: 1px solid yellow;
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.25);
}

.odyssey-card .img-cont {
  width: 600px;
  height: 250px;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.4s ease;
  object-fit: cover;
}

.img-cont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.odyssey-card:hover img {
  transform: scale(1.01);
}

.od-cont {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.od-cont h3{
    font-size: 20px;
    color: yellow;
    /*margin: 90px 0;*/
}
.od-cont p{
    line-height: 22px;
}
@media(max-width: 768px){
    .img-cont img {
        object-fit: contain;
    }
  .odyssey-card .img-cont {
      height: auto;
      width: 100%;
      object-fit: contain;
  }
}
@media (max-width: 480px) {
  .odyssey {
    padding: 15px;
    margin: 80px 0 50px;
  }
  .section-title{
    font-size: 24px;
    color: #caad07;
  }
  .odyssey .section-subtitle {
    padding: 8px;
    font-size: 17px;
    text-align: start;
  }
  .odyssey-card {
    flex-direction: column;
    padding-right: 0;
    margin:0.5rem;
    /* padding: 1rem; */
  }
  
  .od-cont{
    gap: 0;
    padding: 0.81rem;
  }
  .od-cont h3{
    text-align: center;
  }
  .od-cont p{
    text-align: center;
    padding: 10px;
  }
}
/*======================================================*/
