/* ===== Fonts ===== */

@font-face {
  font-family: 'Mr Dafoe';
  src: url('../assets/fonts/MrDafoe-Regular.woff2') format('woff2'),
       url('../assets/fonts/MrDafoe-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.pr-hero__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.57em;
    color: #fff;
    text-transform: uppercase;
}

.pr-hero__title {
    font-weight: 300;
    font-size: 80px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
    text-transform: uppercase;
}

.pr-hero__intro {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hero_year {
    font-family: 'Mr Dafoe', cursive;
    font-weight: 400;
    font-size: 30px;
    line-height: 0.7;
    color: #fff;
}

.hero_year__accent {
    font-size: 100px;
    color: #e3c1a7;
}

/* ==========================================================================
   Project detail (meta + description + slider)
   ========================================================================== */
.project {
    position: relative;
    padding: 130px 0 200px;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

/* Background glow */
.project::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("../assets/img/about-us-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}

.project > * {
    position: relative;
    z-index: 1;
}

/* Top: meta tags + inset border */
.project__top {
    display: flex;
    align-items: center;
    gap: 85px;
    padding: 0 0px 40px;
    margin: 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.project__tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 300;
    font-size: 25px;
    line-height: 176%;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.4);
}

.project__tag--active {
    color: #fff;
}

.project__dot {
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: currentColor;
}

/* Description */
.project__desc {
    max-width: 1250px;
    margin-top: 240px;
    padding-left: 50px;
    font-weight: 400;
    font-size: 45px;
    line-height: 127%;
    letter-spacing: -0.03em;
    background: linear-gradient(96.31deg, #fff 4.98%, #cfbfb4 118.79%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Slider nav (reuse .reviews__arrow look) */
.project__nav {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
    margin-top: 90px;
    margin-bottom: 28px;
    padding-right: 50px;
}

.project__prev img {
    transform: scaleX(-1);
}

/* Slider */
.project__slider {
    overflow: visible; /* section clips instead → cards can peek */
    margin-left: 30%;
}

.project__slider .swiper-slide {
    width: 488px;
    height: 243px;
}

.project__slide {
    overflow: hidden;
    border-radius: 6px;
}

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

/* portfolio */
/* Tag (shared by both card types) */
.portfolio .case-card__tag {
    top: 30px;
    left: 50px;
    position: absolute;
    gap: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 27px;
    background: rgba(255, 255, 255, 0.01);
    z-index: 2;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    padding: 11px 28px 11px 13px;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #fff;
    text-transform: uppercase;
}

.portfolio__caption--project {
    bottom: 90px;
}

.portfolio__slide--project {
    position: relative;
}

/* .footer */
.footer {
    margin-top: -18px;
}