/* ==========================================================
   PROJECTS PAGE - FULL STANDALONE STYLESHEET
========================================================== */


/* ==========================================================
   COLOR PALETTE
========================================================== */

:root {

  --black:
    #090909;

  --black-soft:
    #11100f;

  --panel:
    #171311;

  --panel-light:
    #211a17;

  --burgundy:
    #3d1017;

  --burgundy-light:
    #601923;

  --gold:
    #c69b4b;

  --gold-light:
    #eed28a;

  --cream:
    #efe5d2;

  --muted:
    #aa9d8c;

  --border:
    rgba(198, 155, 75, 0.42);

}


/* ==========================================================
   RESET
========================================================== */

* {

  box-sizing:
    border-box;

  margin:
    0;

  padding:
    0;

}


html {

  scroll-behavior:
    smooth;

}


body {

  min-height:
    100vh;

  margin:
    0;

  color:
    var(--cream);

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  background-image:

    linear-gradient(
      rgba(5, 4, 4, 0.74),
      rgba(5, 4, 4, 0.9)
    ),

    url("images/projects-background.jpg");

  background-size:
    cover;

  background-position:
    center;

  background-repeat:
    no-repeat;

  background-attachment:
    fixed;

}


/* ==========================================================
   FILM GRAIN OVERLAY
========================================================== */

body::before {

  content:
    "";

  position:
    fixed;

  inset:
    0;

  z-index:
    9999;

  pointer-events:
    none;

  opacity:
    0.05;

  background-image:

    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.7'/%3E%3C/svg%3E");

}


/* ==========================================================
   MAIN WRAPPER
========================================================== */

.site-wrapper {

  width:
    min(1050px, 92%);

  margin:
    35px auto 60px;

  box-shadow:

    0 30px 80px
    rgba(0, 0, 0, 0.72);

}


/* ==========================================================
   HEADER
========================================================== */

.cinema-header {

  position:
    relative;

  padding:
    42px 30px 36px;

  text-align:
    center;

  overflow:
    hidden;

  color:
    var(--gold-light);

  background:

    radial-gradient(
      circle at center,
      rgba(100, 26, 34, 0.68),
      rgba(25, 10, 11, 0.97) 68%
    );

  border:
    1px solid
    var(--gold);

  border-bottom:
    none;

}


/* inner border */

.cinema-header::before {

  content:
    "";

  position:
    absolute;

  inset:
    9px;

  border:
    1px solid
    rgba(198, 155, 75, 0.42);

  pointer-events:
    none;

}


/* little marquee bulbs */

.cinema-header::after {

  content:
    "•  •  •  •  •  •  •  •  •  •  •  •  •  •  •  •  •  •";

  position:
    absolute;

  left:
    20px;

  right:
    20px;

  bottom:
    7px;

  overflow:
    hidden;

  white-space:
    nowrap;

  color:
    var(--gold-light);

  font-size:
    11px;

  letter-spacing:
    11px;

  opacity:
    0.72;

}


.header-small {

  margin-bottom:
    6px;

  color:
    var(--gold);

  font-size:
    0.62rem;

  font-weight:
    600;

  letter-spacing:
    5px;

  text-transform:
    uppercase;

}


.cinema-header h1 {

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    clamp(3.2rem, 7vw, 5.6rem);

  font-weight:
    600;

  line-height:
    0.95;

  letter-spacing:
    1px;

  text-shadow:

    0 3px 10px
    rgba(0, 0, 0, 0.8),

    0 0 20px
    rgba(198, 155, 75, 0.13);

}


.header-subtitle {

  margin-top:
    10px;

  color:
    var(--muted);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    1.1rem;

  font-style:
    italic;

  letter-spacing:
    3px;

}


/* ==========================================================
   MAIN NAVIGATION
========================================================== */

.main-nav {

  display:
    grid;

  grid-template-columns:
    repeat(5, 1fr);

  background:

    linear-gradient(
      #251d18,
      #15110f
    );

  border-left:
    1px solid
    var(--gold);

  border-right:
    1px solid
    var(--gold);

  border-bottom:
    1px solid
    var(--gold);

}


.main-nav a {

  position:
    relative;

  display:
    block;

  padding:
    16px 5px;

  color:
    var(--cream);

  text-align:
    center;

  text-decoration:
    none;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    1.2rem;

  font-weight:
    700;

  letter-spacing:
    1px;

  border-right:
    1px solid
    rgba(198, 155, 75, 0.18);

  text-shadow:
    0 2px 3px
    #000;

  transition:
    color 0.2s ease,
    background 0.2s ease;

}


.main-nav a:last-child {

  border-right:
    none;

}


.main-nav a::after {

  content:
    "";

  position:
    absolute;

  bottom:
    7px;

  left:
    50%;

  width:
    0;

  height:
    1px;

  background:
    var(--gold);

  transform:
    translateX(-50%);

  transition:
    width 0.25s ease;

}


.main-nav a:hover {

  color:
    var(--gold-light);

  background:
    rgba(94, 24, 32, 0.28);

}


.main-nav a:hover::after {

  width:
    45%;

}


/* ==========================================================
   PROJECTS MAIN AREA
========================================================== */

.projects-page {

  padding:
    48px 45px 72px;

  background:
    rgba(11, 10, 9, 0.96);

  border-left:
    1px solid
    var(--gold);

  border-right:
    1px solid
    var(--gold);

}


/* ==========================================================
   INTRO SECTION
========================================================== */

.projects-intro {

  max-width:
    760px;

  margin:
    0 auto 45px;

  text-align:
    center;

}


.projects-intro-small {

  margin-bottom:
    7px;

  color:
    var(--gold);

  font-size:
    0.6rem;

  font-weight:
    600;

  letter-spacing:
    4px;

  text-transform:
    uppercase;

}


.projects-intro h2 {

  color:
    var(--cream);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    clamp(2.5rem, 5vw, 4rem);

  font-weight:
    600;

  line-height:
    1;

}


.projects-intro p {

  color:
    var(--muted);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    1.2rem;

  line-height:
    1.6;

}


.projects-divider {

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  gap:
    12px;

  width:
    min(420px, 80%);

  margin:
    20px auto;

}


.projects-divider::before,
.projects-divider::after {

  content:
    "";

  flex:
    1;

  height:
    1px;

  background:
    linear-gradient(
      to right,
      transparent,
      var(--gold)
    );

}


.projects-divider::after {

  background:
    linear-gradient(
      to left,
      transparent,
      var(--gold)
    );

}


.projects-divider span {

  color:
    var(--gold);

}


/* ==========================================================
   PROJECT CATEGORY GRID
========================================================== */

.project-category-grid {

  display:
    grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap:
    20px;

  margin-bottom:
    55px;

}


/* ==========================================================
   PROJECT CARDS
========================================================== */

.project-category-card {

  position:
    relative;

  min-height:
    300px;

  padding:
    36px 34px 30px;

  overflow:
    hidden;

  color:
    var(--cream);

  text-decoration:
    none;

  background:
    linear-gradient(
      145deg,
      rgba(35, 27, 23, 0.97),
      rgba(16, 13, 12, 0.98)
    );

  border:
    1px solid
    rgba(198, 155, 75, 0.38);

  box-shadow:
    0 15px 35px
    rgba(0, 0, 0, 0.4);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;

}


/* inner border */

.project-category-card::before {

  content:
    "";

  position:
    absolute;

  inset:
    8px;

  border:
    1px solid
    rgba(198, 155, 75, 0.12);

  pointer-events:
    none;

}


/* big faded number */

.project-card-number {

  position:
    absolute;

  top:
    10px;

  right:
    20px;

  color:
    rgba(198, 155, 75, 0.08);

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    7rem;

  font-weight:
    700;

  line-height:
    1;

}


.project-card-symbol {

  position:
    relative;

  z-index:
    2;

  margin-bottom:
    25px;

  color:
    var(--gold);

  font-size:
    1.6rem;

}


.project-card-label {

  position:
    relative;

  z-index:
    2;

  margin-bottom:
    5px;

  color:
    var(--muted);

  font-size:
    0.52rem;

  font-weight:
    600;

  letter-spacing:
    3px;

  text-transform:
    uppercase;

}


.project-category-card h3 {

  position:
    relative;

  z-index:
    2;

  margin-bottom:
    13px;

  color:
    var(--gold-light);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    2.8rem;

  font-weight:
    600;

  line-height:
    1;

}


.project-category-card p {

  position:
    relative;

  z-index:
    2;

  max-width:
    340px;

  color:
    var(--muted);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    1.08rem;

  line-height:
    1.45;

}


.project-card-link {

  position:
    absolute;

  left:
    34px;

  bottom:
    28px;

  z-index:
    2;

  display:
    flex;

  align-items:
    center;

  gap:
    8px;

  color:
    var(--gold);

  font-size:
    0.6rem;

  font-weight:
    600;

  letter-spacing:
    2px;

  text-transform:
    uppercase;

}


.project-card-link span {

  transition:
    transform 0.25s ease;

}


/* hover effect */

.project-category-card:hover {

  transform:
    translateY(-6px);

  border-color:
    var(--gold);

  background:
    linear-gradient(
      145deg,
      rgba(49, 35, 27, 0.99),
      rgba(18, 14, 12, 0.99)
    );

  box-shadow:

    0 22px 45px
    rgba(0, 0, 0, 0.55),

    0 0 25px
    rgba(198, 155, 75, 0.08);

}


.project-category-card:hover
.project-card-link span {

  transform:
    translateX(5px);

}


/* ==========================================================
   SECTION HEADING
========================================================== */

.section-heading {

  display:
    flex;

  align-items:
    center;

  gap:
    18px;

  margin-bottom:
    24px;

}


.section-heading h2 {

  flex-shrink:
    0;

  color:
    var(--cream);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    clamp(2rem, 4vw, 2.7rem);

  font-weight:
    600;

}


.heading-line {

  height:
    1px;

  flex:
    1;

  background:
    linear-gradient(
      to right,
      transparent,
      var(--gold),
      transparent
    );

}


/* ==========================================================
   CURRENTLY IN PRODUCTION
========================================================== */

.current-projects {

  margin-top:
    20px;

}


.production-board {

  border:
    1px solid
    rgba(198, 155, 75, 0.3);

  background:
    rgba(26, 21, 18, 0.8);

}


.production-item {

  display:
    grid;

  grid-template-columns:
    115px 1fr;

  border-bottom:
    1px solid
    rgba(198, 155, 75, 0.18);

}


.production-item:last-child {

  border-bottom:
    none;

}


.production-status {

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  padding:
    20px 12px;

  color:
    var(--gold);

  background:
    rgba(61, 16, 23, 0.28);

  border-right:
    1px solid
    rgba(198, 155, 75, 0.2);

  font-size:
    0.55rem;

  font-weight:
    600;

  letter-spacing:
    2px;

  text-transform:
    uppercase;

}


.production-info {

  padding:
    18px 22px;

}


.production-info h3 {

  color:
    var(--cream);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    1.35rem;

  font-weight:
    600;

}


.production-info p {

  margin-top:
    4px;

  color:
    var(--muted);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    1rem;

}


/* ==========================================================
   RETURN HOME LINK
========================================================== */

.projects-home-link {

  margin-top:
    40px;

  text-align:
    center;

}


.projects-home-link a {

  color:
    var(--gold);

  font-size:
    0.6rem;

  font-weight:
    600;

  letter-spacing:
    2px;

  text-decoration:
    none;

  text-transform:
    uppercase;

  transition:
    color 0.2s ease;

}


.projects-home-link a:hover {

  color:
    var(--gold-light);

}


/* ==========================================================
   FOOTER
========================================================== */

.site-footer {

  padding:
    22px;

  text-align:
    center;

  background:
    #0d0b0a;

  border:
    1px solid
    var(--gold);

  border-top:
    1px solid
    rgba(198, 155, 75, 0.4);

}


.footer-decoration {

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  gap:
    10px;

  margin-bottom:
    8px;

  color:
    var(--gold);

}


.footer-decoration span {

  width:
    70px;

  height:
    1px;

  background:
    linear-gradient(
      to right,
      transparent,
      var(--gold)
    );

}


.footer-decoration span:last-child {

  background:
    linear-gradient(
      to left,
      transparent,
      var(--gold)
    );

}


.site-footer p {

  color:
    var(--muted);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    0.9rem;

  letter-spacing:
    1px;

}


.footer-dot {

  margin:
    0 8px;

  color:
    var(--gold);

  font-size:
    0.5rem;

}


/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar {

  width:
    8px;

}


::-webkit-scrollbar-track {

  background:
    #0c0a09;

}


::-webkit-scrollbar-thumb {

  background:
    #6d512b;

  border:
    2px solid
    #0c0a09;

}


::-webkit-scrollbar-thumb:hover {

  background:
    var(--gold);

}


/* ==========================================================
   ACCESSIBILITY
========================================================== */

a:focus-visible {

  outline:
    2px solid
    var(--gold-light);

  outline-offset:
    4px;

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 750px) {

  body {

    background-attachment:
      scroll;

  }


  .site-wrapper {

    width:
      95%;

    margin-top:
      20px;

  }


  .cinema-header {

    padding:
      35px 15px 30px;

  }


  .cinema-header h1 {

    font-size:
      3rem;

  }


  .header-subtitle {

    font-size:
      0.9rem;

  }


  .main-nav {

    grid-template-columns:
      repeat(5, 1fr);

  }


  .main-nav a {

    padding:
      13px 2px;

    font-size:
      0.9rem;

  }


  .projects-page {

    padding:
      35px 20px 55px;

  }


  .projects-intro h2 {

    font-size:
      2.5rem;

  }


  .projects-intro p {

    font-size:
      1.08rem;

  }


  .project-category-grid {

    grid-template-columns:
      1fr;

  }


  .project-category-card {

    min-height:
      275px;

  }


  .project-category-card h3 {

    font-size:
      2.4rem;

  }


  .production-item {

    grid-template-columns:
      85px 1fr;

  }


  .production-status {

    font-size:
      0.45rem;

    letter-spacing:
      1px;

  }

}