/*------ My Styles ------*/

body {
    
}

@media only all and (max-width: 768px) {
    
}

body {
    background-color: #ffffff;
}

/* GLOBAL RESET */

/* === GLOBAL BACKGROUND === */

body {
    background-color: #ffffff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f5f5;
    color: #111111;
}

a {
    text-decoration: none;
}

/* HEADER */
.site-header {
    width: 100%;
}

.logo-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: 0.04em;
}

/* HEADER */

.site-logo {
    height: 40px;
    width: auto;
    display: block;
}

.site-header {
    width: 100%;
}

.logo-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: 0.04em;
}

.header-nav a {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: #777777;
    text-decoration: none;
}

.header-nav a.active {
    color: #111111;
    font-weight: 600;
}

.header-nav a:hover {
    color: #111111;
}

.insta-icon {
    font-size: 1.2rem;
    color: #333333;
}

.insta-icon:hover {
    color: #111111;
}

.header-line {
    width: 100%;
    height: 1px;
    background-color: #d4d4d4;
}

/* MOBILE MENU BUTTON */
.mobile-menu-button {
    display: none;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #111111;
    cursor: pointer;
    padding: 0;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    padding-top: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav a {
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: #777777;
}

.mobile-nav a.active {
    color: #111111;
    font-weight: 600;
}

.mobile-nav a:hover {
    color: #111111;
}

/* RESPONSIVE HEADER */
@media (max-width: 767px) {
    .desktop-nav,
    .desktop-icon {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .logo-link {
        font-size: 1.2rem;
    }
}

.header-nav a {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: #777777;
}

.header-nav a.active {
    color: #111111;
    font-weight: 600;
}

.header-nav a:hover {
    color: #111111;
}

.insta-icon {
    font-size: 1.2rem;
    color: #333333;
}

.insta-icon:hover {
    color: #111111;
}

.header-line {
    width: 100%;
    height: 1px;
    background-color: #d4d4d4;
}

/* WORK GRID */

img[src*="rivella-thumb"] {
    object-fit: contain;

    padding: 10px;
}

/* === WORK GRID === */

body {
    background-color: #f5f5f2;
}

.work-grid {
    padding-top: 50px;
    padding-bottom: 50px;
}

.work-item {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.work-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: transparent;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* default hover zoom for normal items */
.work-item:hover .work-image {
    transform: scale(1.04);
}

/* === SWAP ITEMS === */

.work-item.swap .default,
.work-item.swap .hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.work-item.swap .default {
    opacity: 1;
    z-index: 1;
}

.work-item.swap .hover {
    opacity: 0;
    z-index: 2;
}

.work-item.swap:hover .default {
    opacity: 0;
    transform: none;
}

.work-item.swap:hover .hover {
    opacity: 1;
    transform: none;
}

/* === SCALE ITEMS === */

.work-item.scale {
    overflow: visible;
}

.work-item.scale .work-image {
    position: relative;
    z-index: 1;
}

.work-item.scale:hover .work-image {
    transform: scale(1.15);
    z-index: 10;
}

/* === ABSTRACT HOVER FIX === */

img[src*="abstract-space-thumb2"] {
    object-fit: contain;   /* prevents zoom crop */
    transform: scale(0.9); /* shrink slightly */
    /* background: #ffffff;   optional: fills empty space cleanly */
}
/* === HATCHET HOVER FIX === */

img[src*="hatchet-thumb2"] {
    object-fit: contain;
    transform: scale(0.9);
    /* background: #ffffff; optional */
}

/* === POTATO BIG POP === */

.work-item.potato {
    overflow: visible;
}

.work-item.potato .work-image {
    position: relative;
    z-index: 1;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.work-item.potato:hover .work-image {
    transform: scale(1.3) translateY(-10px);
    z-index: 20;
    /* box-shadow: 0 25px 60px rgba(0,0,0,0.25); */
}
/* HEALTH POSTER — custom behavior */
.work-item.health-poster {
    overflow: visible; /* lets it grow outside the grid */
}

.work-item.health-poster .work-image {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

/* 🔥 BIGGER POP THAN EVERYTHING ELSE */
.work-item.health-poster:hover .work-image {
    transform: scale(10);
    z-index: 50;
}

/* FOOTER */
.site-footer {
    padding-top: 30px;
    padding-bottom: 50px;
}

.footer-nav a {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: #777777;
}

.footer-nav a.active {
    color: #111111;
    font-weight: 600;
}

.footer-nav a:hover {
    color: #111111;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .logo-link {
        font-size: 1.2rem;
    }

    .header-nav a,
    .footer-nav a {
        font-size: 0.75rem;
    }

    .insta-icon {
        font-size: 1rem;
    }

    .work-grid {
        padding-top: 35px;
        padding-bottom: 35px;
    }
}

/* ABOUT PAGE */

.about-intro {
    padding-top: 30px;
    padding-bottom: 40px;
}

.about-intro p {
    font-size: 1rem;
    line-height: 1.15;
    color: #111111;
    margin-bottom: 32px;
}

/* PORTRAIT + DETAILS CONNECTION */

.about-portrait {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1050px;
}

.about-portrait .row,
.about-portrait .col-12 {
    margin: 0;
    padding: 0;
}

.about-portrait-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.about-details {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1050px;
}

.about-details .row,
.about-details .col-12 {
    margin: 0;
    padding: 0;
}

.details-panel {
    width: 100%;
    max-width: none;
    margin: 0;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 56px 30px;
}

/* DETAILS TEXT */

.details-group {
    margin-bottom: 24px;
}

.details-group:last-child {
    margin-bottom: 0;
}

.details-group h2 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.details-group p {
    font-size: 0.95rem;
    line-height: 1.35;
    margin-bottom: 4px;
}
/* CONTACT PAGE */
.contact-page {
    padding-top: 40px;
    padding-bottom: 20px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 24px;
    color: #111111;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #111111;
    margin-bottom: 0;
}

.contact-info-section {
    padding-bottom: 180px;
}

.contact-info-block p {
    font-size: 1rem;
    color: #111111;
    margin-bottom: 22px;
}

.mailing-section {
    padding-bottom: 140px;
}

.mailing-text {
    font-size: 1rem;
    line-height: 1.25;
    color: #111111;
    margin-bottom: 0;
}

.contact-image-section {
    padding-bottom: 100px;
}

.contact-image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    background-color: #dfdfdf;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777777;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.footer-line {
    width: 100%;
    height: 1px;
    background-color: #7a7a7a;
    margin-bottom: 24px;
}

.footer-logo-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: 0.04em;
    text-decoration: none;
}

/* CONTACT MOBILE */
@media (max-width: 767px) {
    .contact-page {
        padding-top: 24px;
        padding-bottom: 12px;
    }

    .contact-title {
        font-size: 2.5rem;
        margin-bottom: 18px;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-info-section {
        padding-bottom: 80px;
    }

    .contact-info-block p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .mailing-section {
        padding-bottom: 70px;
    }

    .mailing-text {
        font-size: 0.95rem;
    }

    .contact-image-section {
        padding-bottom: 60px;
    }

    .footer-logo-link {
        font-size: 1.2rem;
    }
}

/* PROJECT PAGE */
.project-page {
    padding-top: 36px;
    padding-bottom: 50px;
}

.project-title {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 24px;
    color: #111111;
}

.project-description {
    font-size: 1rem;
    line-height: 1.2;
    color: #111111;
    max-width: 420px;
    margin-bottom: 28px;
}

.project-meta {
    font-size: 0.95rem;
    color: #111111;
    margin-bottom: 12px;
}

.project-hero-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #dfdfdf;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777777;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.project-slides {
    padding-top: 30px;
}

.slide-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #dfdfdf;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777777;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}

.slide-placeholder:last-child {
    margin-bottom: 0;
}

.project-nav-section {
    padding-top: 10px;
}

.project-nav-line {
    width: 100%;
    height: 1px;
    background-color: #7a7a7a;
    margin-bottom: 20px;
}

.project-nav-link {
    text-decoration: none;
    color: #222222;
    font-size: 1rem;
    font-weight: 400;
}

.project-nav-link:hover {
    color: #000000;
}

/* PROJECT PAGE MOBILE */
@media (max-width: 767px) {
    .project-page {
        padding-top: 24px;
        padding-bottom: 36px;
    }

    .project-title {
        font-size: 1.9rem;
        margin-bottom: 18px;
    }

    .project-description {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .project-meta {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .project-slides {
        padding-top: 20px;
    }

    .slide-placeholder {
        margin-bottom: 18px;
    }

    .project-nav-link {
        font-size: 0.9rem;
    }
}

.project-slide-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto 28px auto;
}

.project-hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* olympic page */

.hero-crop-right {
    width: 100%;
    overflow: hidden;
}

.hero-crop-right img {
    width: 110%;
    height: auto;
    transform: translateX(-5%);
}
/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 95%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.project-slide-image {
    cursor: zoom-in;
}

/* Contact page */

.contact-image-section {
    padding: 80px 0;
}

.contact-image {
    width: 100%;
    max-width: 700px; /* 🔥 controls size */
    height: auto;
    display: block;
    margin: 0 auto;

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* 🔥 hover effect */
.contact-image:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* about page */

.about-portrait {
    background: #000;
    padding: 0;
    margin: 0;
    overflow: hidden;

    /* 🔥 This makes it crop like a frame */
    display: flex;
    justify-content: center;
}

.about-portrait-image {
    width: 110%; /* 👈 slightly bigger so edges don’t show */
    max-width: none;
    height: auto;
    display: block;

    /* 🎯 your shift */
    transform: translateX(40px);
}

.about-feature {
    background: #000;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 80px;
}

.about-portrait {
    padding-bottom: 0;
    margin-bottom: 0;
}

.about-portrait-image {
    width: 100%;
    max-width: 1050px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.about-details {
    padding-top: 50px;
    padding-bottom: 0;
}

.details-panel {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.details-group {
    margin-bottom: 48px;
}

.details-group h2 {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    color: #ffffff;
}

.details-group p {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 6px;
    color: #f2f2f2;
}

/* Hero Image */
.project-hero-image-wrap {
    width: 100%;
}

.project-hero-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* === PDF PROJECT VIEW === */

.project-pdf-section {
    padding-top: 30px;
}

.project-pdf-wrapper {
    width: 100%;
    height: 95vh; /* 🔥 almost full screen */
    border: 1px solid #e0e0e0;
    overflow: hidden;
    background: #ffffff;
}

.project-pdf-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* button under PDF */
.pdf-button {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: #111111;
    text-decoration: none;
    border-bottom: 1px solid #111111;
    transition: opacity 0.2s ease;
}

.pdf-button:hover {
    opacity: 0.6;
}

/* =========================
   PDF PROJECT SECTION
========================= */

.project-pdf-section {
    padding-top: 30px;
}

/* wrapper */
.project-pdf-wrapper {
    position: relative;
    width: 100%;
    height: 95vh;
    overflow: hidden;
    background: #ffffff;
}

/* iframe (hidden at first) */
.project-pdf-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.6s ease;
}

/* reveal PDF */
.project-pdf-wrapper iframe.show-pdf {
    opacity: 1;
    visibility: visible;
}

/* =========================
   LOADER
========================= */

.pdf-loader {
    position: absolute;
    inset: 0;
    z-index: 9999;

    background: #f5f5f2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 16px;

    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* loader mark */
.loader-mark {
    width: 70px;
    height: 70px;
    border: 1px solid #111;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0.9rem;
    letter-spacing: 0.08em;

    animation: pulse 1.4s ease-in-out infinite;
}

/* loader text */
.pdf-loader p {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111;
}

/* hide loader */
.hide-loader {
    opacity: 0;
    visibility: hidden;
}

/* animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

/* =========================
   BUTTON
========================= */

.pdf-button {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: #111111;
    text-decoration: none;
    border-bottom: 1px solid #111111;
    transition: opacity 0.2s ease;
}

.pdf-button:hover {
    opacity: 0.6;
}

/* === ABOUT PAGE SPACE FIX === */

.about-portrait,
.about-details,
.about-brand-guide {
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
    max-width: 1050px;
}

.about-portrait .row,
.about-details .row,
.about-brand-guide .row {
    margin: 0;
}

.about-portrait .col-12,
.about-details .col-12,
.about-brand-guide .col-12 {
    padding-left: 0;
    padding-right: 0;
}

.about-portrait-image {
    width: 100%;
    max-width: 1050px;
    height: auto;
    display: block;
    margin: 0;
}

.details-panel {
    width: 100%;
    max-width: 1050px;
    margin: 0;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 60px 30px;
}

.about-brand-guide {
    margin-top: 60px;
}
/* === ABOUT FEATURE BLOCK === */

.about-feature {
    background: #000;
    padding: 0;
}

.about-feature-inner {
    max-width: 1050px;
    margin: 0 auto;
}

/* IMAGE */
.about-feature-image {
    width: 100%;
    display: block;
}

/* TEXT PANEL */
.details-panel {
    color: #fff;
    text-align: center;
    padding: 60px 30px;
}

/* spacing */
.details-group {
    margin-bottom: 32px;
}

.details-group:last-child {
    margin-bottom: 0;
}

.details-group h2 {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.details-group p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 6px;
}

/* PDF */
.project-pdf-wrapper {
    height: 90vh;
}

/* optional spacing under PDF */
.brand-guide-pdf {
    padding-top: 40px;
    padding-bottom: 60px;
}

/* === CONTACT PAGE: BETTER VIBE === */

.contact-page-vibe {
    padding: 90px 0 120px;
}

.contact-statement {
    max-width: 980px;
    margin-bottom: 70px;
}

.contact-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 18px;
}

.contact-statement h1 {
    font-size: clamp(4rem, 9vw, 9rem);
    line-height: 0.85;
    font-weight: 400;
    letter-spacing: -0.08em;
    color: #111;
    max-width: 1000px;
    margin-bottom: 30px;
}

.contact-statement p {
    max-width: 560px;
    font-size: 1.1rem;
    line-height: 1.35;
    color: #333;
}

.contact-vibe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.contact-vibe-card {
    min-height: 260px;
    background: #050505;
    color: #fff;
    padding: 28px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s ease, background 0.35s ease;
}

.contact-vibe-card.big {
    grid-column: span 2;
}

.contact-vibe-card.wide {
    grid-column: span 2;
}

.contact-vibe-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 32%);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    transform: translateY(20px);
}

.contact-vibe-card:hover {
    transform: translateY(-8px);
    background: #000;
}

.contact-vibe-card:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.contact-vibe-card span,
.contact-vibe-card h2,
.contact-vibe-card p {
    position: relative;
    z-index: 2;
}

.contact-vibe-card span {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #aaa;
}

.contact-vibe-card h2 {
    font-size: clamp(1.35rem, 2.5vw, 2.4rem);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.04em;
    max-width: 420px;
}

.contact-vibe-card p {
    font-size: 0.9rem;
    color: #ddd;
    margin: 0;
}

@media (max-width: 900px) {
    .contact-vibe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-vibe-card.big,
    .contact-vibe-card.wide {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .contact-page-vibe {
        padding: 55px 0 80px;
    }

    .contact-statement h1 {
        font-size: 4rem;
    }

    .contact-vibe-grid {
        grid-template-columns: 1fr;
    }

    .contact-vibe-card,
    .contact-vibe-card.big,
    .contact-vibe-card.wide {
        grid-column: span 1;
        min-height: 220px;
    }
}

/* PDF WRAPPER */
.project-pdf-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 140%; /* controls height ratio */
    overflow: hidden;
}

/* PDF IFRAME */
.project-pdf-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* MOBILE SWITCH */
.mobile-pdf {
    display: none;
}

/* RESPONSIVE RULE */
@media (max-width: 768px) {

    .desktop-pdf {
        display: none;
    }

    .mobile-pdf {
        display: block;
        text-align: center;
        margin-top: 40px;
    }

    .pdf-button {
        display: inline-block;
        padding: 14px 24px;
        background: #000;
        color: #fff;
        text-decoration: none;
        font-size: 0.9rem;
        letter-spacing: 0.05em;
    }
}
/* === PDF MODAL SYSTEM === */

.pdf-open-btn {
    padding: 14px 28px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: 0.3s ease;
}

.pdf-open-btn:hover {
    background: #222;
}

.pdf-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    display: none;
    z-index: 9999;
}

.pdf-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.pdf-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}
/* mobile menu hidden by default */
.mobile-menu {
    display: none;
}

/* when active */
.mobile-menu.active {
    display: block;
}

.insta-icon,
.insta-icon:visited,
.insta-icon:hover,
.insta-icon:active {
    color: #000 !important;
}

.insta-icon i {
    color: inherit !important;
}

.pdf-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    padding: 60px 20px;
}

.pdf-modal.active {
    display: block;
}

.pdf-modal iframe {
    width: 100%;
    height: 85vh;
    border: none;
    background: white;
}

.pdf-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.pdf-open-btn {
    display: inline-block;
    text-decoration: none;
}

.project-flipbook-section {
    padding-bottom: 80px;
}

.fp-iframe {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* MOBILE */
@media (max-width: 768px) {
    .fp-iframe {
        height: 420px !important;
    }
}