body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #F8F7F5;
    overflow-x: hidden;
}

/* Left Panel (Fixed) */
.left-panel {
    background-color: #F8F7F5;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 40%;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #ddd;
    z-index: 100;
}

.top-nav {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    flex-wrap: wrap;
}

.top-nav a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-nav a:hover {
    opacity: 0.6;
}

.top-nav a.active {
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
}

h1 {
    font-family: 'Forum';
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 3.5vw, 4rem);
}

.sub-text {
    font-style: italic;
    color: #555;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.3;
}

.right-panel {
    margin-left: 40%;
    width: 60%;
    min-height: 100vh;
    padding-bottom: 0;
}

/* General Content Styles */
.info-image, .work {
    width: 100%;
    display: block;
    margin: 0;
    transition: transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-wrapper {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.img-zoom {
    transform: scale(1.05);
}

.content-block {
    padding: 6rem 4rem;
    background-color: #F8F7F5;
    text-align: center;
}

.content-block.dark {
    background-color: #1a1a1a;
    color: #fff;
}

.content-block h2 {
    font-family: 'Forum', serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.content-block p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.content-block.dark p {
    color: #ccc;
}

.content-block .subtitle {
    font-family: 'Forum', serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.content-block.dark .subtitle {
    border-color: #444;
    color: #888;
}

/* Publications list */
.pub-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pub-list li {
    font-family: 'Forum', serif;
    font-size: 1.8rem;
    border-bottom: 1px solid #ddd;
    padding: 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.pub-list li:last-child {
    border-bottom: none;
}

/* Quote block */
.quote-block {
    text-align: center;
    padding: 8rem 4rem;
    background-color: #e5e3de;
}

.quote-block h3 {
    font-family: 'Forum', serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.quote-block p {
    font-size: 1.2rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Pricing: price badge */
.price-badge {
    font-family: 'Forum', serif;
    font-size: 1.8rem;
    color: #888;
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Pricing: package features list */
.package-features {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.package-features li {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 1rem 0;
    font-size: 1.3rem;
    color: #333;
    display: flex;
    align-items: center;
}

.package-features li::before {
    content: "—";
    margin-right: 1rem;
    color: #888;
}

.content-block.dark .package-features li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #eee;
}

/* Film Posters Grid */
.poster-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 4rem 6rem 4rem;
    background-color: #1a1a1a;
}

.poster-grid img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 992px) {
    .poster-grid {
        padding: 0 2rem 4rem 2rem;
        gap: 0.5rem;
    }
}

/* Grid & Masonry (Used across pages) */
.masonry-grid {
    column-count: 2;
    column-gap: 1rem;
    padding: 0 4rem 4rem 4rem;
    background-color: #F8F7F5;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.4s ease;
}

.masonry-item img:hover {
    filter: brightness(0.8);
}

/* Index Overlay styling */
.overlay-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    font-family: 'Forum', serif;
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Full Screen CTA */
.final-cta {
    width: 166.6666%;
    margin-left: -66.6666%;
    position: relative;
    z-index: 500;
    padding: 6rem 2rem;
    text-align: center;
    background-color: #1a1a1a;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    border-top: 1px solid #333;
}

.final-cta h2 {
    font-family: 'Forum';
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.btn-custom {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    margin-bottom: 5rem;
}

.btn-custom:hover {
    background-color: #fff;
    color: #000;
}

.footer-grid-dark {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    width: 100%;
    max-width: 1000px;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 4rem;
}

.footer-col h5 {
    font-family: 'Forum', cursive;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.4);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 0.6;
}

.final-logo {
    width: 120px;
    margin-bottom: 3rem;
  
    opacity: 0.9;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    will-change: opacity, transform;
}

.fade-up.visible, .overlay-message.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@media (max-width: 992px) {
    .left-panel {
        position: relative;
        width: 100%;
        height: auto;
        padding: 2rem;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .right-panel {
        margin-left: 0;
        width: 100%;
    }

    h1 {
        font-size: 2.5rem;
    }

    .content-block {
        padding: 4rem 2rem;
    }

    .content-block h2 {
        font-size: 2.5rem;
    }

    .quote-block {
        padding: 5rem 2rem;
    }

    .quote-block h3 {
        font-size: 2.2rem;
    }

    .pub-list li {
        font-size: 1.3rem;
    }

    .masonry-grid {
        column-count: 1;
        padding: 0 1.5rem 4rem 1.5rem;
    }

    .final-cta {
        width: 100%;
        margin-left: 0;
        min-height: auto;
        padding: 4rem 1.5rem;
    }

    .final-cta h2 {
        font-size: 2.2rem;
    }

    .footer-grid-dark {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col h5 {
        display: block;
        border-bottom: none;
        margin-bottom: 0.5rem;
        color: #fff;
    }
}
