/* ========================================
   Victoria Wojdan Portfolio - Main Styles
   ======================================== */

/* Nunito Sans from Google Fonts - for body text */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400&display=swap');

/* ========================================
   Custom Font Faces
   ======================================== */

/* Brandon Grotesque - for headings */
@font-face {
    font-family: 'Brandon Grotesque';
    src: url('fonts/Brandon-Grotesque-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Brandon Grotesque';
    src: url('fonts/Brandon-Grotesque-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Brandon Grotesque';
    src: url('fonts/Brandon-Grotesque-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Brandon Grotesque';
    src: url('fonts/Brandon-Grotesque-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

:root {
    /* Color Palette */
    --bg-cream: #F9F8F6;
    --dark-brown: #322C2B;
    --soft-brown: #645F5E;
    --dusty-rose: #A7727D;
    --light-blue: #C7E2EA;
    --taupe: #967E76;
    --beige: #EEE3CB;

    /* Typography */
    --font-heading: 'Brandon Grotesque', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-weight: 200;
    background-color: var(--bg-cream);
    color: var(--soft-brown);
    line-height: 1.6;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 300;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-family: var(--font-body);
    font-weight: 200;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   Header & Navigation
   ======================================== */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: var(--bg-cream);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--soft-brown);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark-brown);
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--dusty-rose);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--dark-brown);
}

/* ========================================
   Hero Section (Home Page)
   ======================================== */

.hero-wrapper {
    background-color: #C7C5C3;
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    padding: 2rem 4rem;
    background-color: var(--bg-cream);
    border-radius: 10px;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image .placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    background-color: var(--taupe);
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: 25% center;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 4rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--soft-brown);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-brown);
    transition: all 0.2s ease;
}

.social-icons a:hover {
    border-color: var(--dusty-rose);
    color: var(--dusty-rose);
    background: rgba(167, 114, 125, 0.1);
}

.social-icons svg {
    width: 18px;
    height: 18px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--dusty-rose);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--dusty-rose);
    color: white;
    border: 2px solid var(--dusty-rose);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--dusty-rose);
}

/* ========================================
   Craft & Design Section
   ======================================== */

.section-title {
    text-align: center;
    padding: 3rem 0 2rem;
    border-top: 1px solid #ddd;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 4rem 3rem;
}

.category-card {
    position: relative;
    background-color: var(--dusty-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--dusty-rose);
}

.category-card span {
    color: white;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-align: center;
}

.category-card:hover {
    background-color: transparent;
}

.category-card:hover span {
    color: var(--dusty-rose);
}

/* ========================================
   Footer
   ======================================== */

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    border-top: 1px solid #ddd;
}

footer p {
    font-size: 0.85rem;
    color: var(--taupe);
}

/* ========================================
   Page Header (Colored Banner)
   ======================================== */

.page-header {
    background-color: var(--dusty-rose);
    padding: 3rem 4rem;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
}

.page-header p {
    color: white;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Light version for Digital Media */
.page-header.light {
    background-color: var(--light-blue);
}

.page-header.light h1,
.page-header.light p {
    color: var(--dark-brown);
}

/* Cream version - minimal header */
.page-header.cream {
    background-color: var(--bg-cream);
    padding: 4rem 4rem 2rem;
}

.page-header.cream h1 {
    color: var(--soft-brown);
    font-size: 2.5rem;
}

.page-header.cream p {
    color: var(--dark-brown);
}

/* Gray version - matches hero wrapper */
.page-header.gray {
    background-color: #C7C5C3;
    padding: 4rem 4rem;
    text-align: center;
}

.page-header.gray h1 {
    color: var(--soft-brown);
    font-size: 2.5rem;
}

.page-header.gray p {
    color: var(--dark-brown);
}

/* Bordered version - cream with border around title */
.page-header.bordered {
    background-color: var(--bg-cream);
    padding: 4rem 4rem 2rem;
    text-align: center;
}

.page-header.bordered h1 {
    color: var(--soft-brown);
    font-size: 2.5rem;
    display: inline-block;
    padding: 1rem 3rem;
    border: 2px solid var(--soft-brown);
}

/* Page Intro - centered text below header */
.page-intro {
    text-align: center;
    padding: 0 4rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.page-intro p {
    line-height: 1.8;
    color: var(--soft-brown);
}

/* ========================================
   Page Content Wrapper - Warm Gray + Cream
   ======================================== */

.page-content-wrapper {
    background-color: #C7C5C3;
    padding: 1.5rem;
}

.page-content-box {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #F9F8F6;
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 2rem;
}

.page-content-box .work-filters {
    padding: 2rem 4rem 1.5rem;
}

.page-content-box .productions-grid {
    margin: 0 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.page-content-box .page-header {
    background-color: transparent;
    padding: 2.5rem 4rem 1rem;
}

.page-content-box .page-header.bordered h1 {
    border-color: var(--taupe);
}

.page-content-box .page-intro {
    padding: 0 4rem 1.5rem;
    max-width: 1000px;
}

.page-content-box .resume-container {
    max-width: 900px;
    padding: 2.5rem 4rem 3rem;
}

/* ========================================
   Etsy Coming Soon Modal
   ======================================== */

.etsy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.etsy-modal.active {
    display: flex;
}

.etsy-modal-content {
    background: #F9F8F6;
    padding: 3rem 4rem;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.etsy-modal-content h3 {
    font-size: 1.5rem;
    color: var(--dusty-rose);
    margin-bottom: 0.75rem;
}

.etsy-modal-content p {
    color: var(--soft-brown);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.etsy-modal-content button {
    background: var(--dusty-rose);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.etsy-modal-content button:hover {
    background: var(--dark-taupe);
}

/* ========================================
   Productions Page - Dark Cards
   ======================================== */

.productions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 4rem;
}

.production-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.production-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.production-card .placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--dark-brown);
}

.production-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    color: white;
    transition: background 0.3s ease;
}

.production-card:hover .overlay {
    background: rgba(0, 0, 0, 0.7);
}

.production-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.production-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.production-card .link {
    font-size: 0.85rem;
    color: white;
}

/* Category Link Cards (Projects hub page) */
.category-link-card .overlay {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.category-link-card h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* ========================================
   All Projects Overview Page
   ======================================== */

.category-section {
    padding: 2rem 4rem 3rem;
}

.category-section h2 {
    font-size: 1.75rem;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    text-align: center;
}

.category-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.learn-more-wrapper {
    text-align: center;
    padding: 2rem 0;
}

.learn-more-btn {
    display: inline-block;
    background: none;
    border: 1.5px solid var(--dusty-rose);
    border-radius: 4px;
    padding: 0.6rem 2rem;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--dusty-rose);
    text-decoration: none;
    transition: all 0.2s ease;
}

.learn-more-btn:hover {
    background: var(--dusty-rose);
    color: white;
}

/* ========================================
   Fabrication Page - Gallery Grid
   ======================================== */

.gallery-intro {
    text-align: center;
    padding: 3rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.fabrication-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 4rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.fabrication-item {
    cursor: pointer;
}

.fabrication-item .image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: var(--taupe);
    margin-bottom: 1rem;
}

.fabrication-item .item-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
}

.fabrication-item .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.fabrication-item:hover .arrow {
    transform: translateX(5px);
}

.fabrication-item .item-description {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--taupe);
    line-height: 1.6;
}

/* ========================================
   Digital Media - Carousels
   ======================================== */

.carousel-section {
    padding: 2rem 0;
}

.carousel-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    gap: 0;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 25%;
    aspect-ratio: 3/4;
}

.carousel-item .placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--taupe);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav.prev {
    left: 1rem;
}

.carousel-nav.next {
    right: 1rem;
}

/* ========================================
   Alternating Content Sections
   ======================================== */

.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
}

.content-section.reverse {
    direction: rtl;
}

.content-section.reverse > * {
    direction: ltr;
}

.content-section .image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: var(--taupe);
}

.content-section .text-content {
    padding: 2rem;
}

.content-section .number {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--taupe);
    margin-bottom: 0.5rem;
}

.content-section h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* ========================================
   UNLV Page - Production Cards
   ======================================== */

.unlv-intro {
    padding: 3rem 4rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.production-entry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 4rem;
    border-top: 1px solid #ddd;
    align-items: start;
}

.production-entry.reverse {
    direction: rtl;
}

.production-entry.reverse > * {
    direction: ltr;
}

.production-entry .image-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background-color: var(--taupe);
}

.production-entry .details h3 {
    margin-bottom: 0.5rem;
}

.production-entry .role {
    color: var(--taupe);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Expandable Creative Team */
.creative-team-toggle {
    background: none;
    border: none;
    color: var(--dusty-rose);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    margin-bottom: 1rem;
    display: block;
}

.creative-team {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.creative-team.expanded {
    max-height: 500px;
}

.creative-team ul {
    list-style: none;
    padding: 1rem 0;
    border-top: 1px solid #eee;
}

.creative-team li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.creative-team li strong {
    color: var(--dark-brown);
}

/* Quote/Blockquote styling */
.quote {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--dusty-rose);
    background: rgba(167, 114, 125, 0.05);
    font-style: italic;
    font-size: 0.95rem;
}

.quote cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--taupe);
}

.quote cite a {
    color: var(--dusty-rose);
}

.quote cite a:hover {
    text-decoration: underline;
}

/* ========================================
   Slideshow Gallery (Fabrication Detail)
   ======================================== */

.slideshow {
    position: relative;
    max-width: 900px;
    margin: 2rem auto;
}

.slideshow .slide {
    display: none;
}

.slideshow .slide.active {
    display: block;
}

.slideshow .slide .placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: var(--taupe);
}

.slideshow-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.slideshow-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--dark-brown);
    background: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slideshow-nav button:hover {
    background: var(--dark-brown);
    color: white;
}

.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.slide-indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slide-indicators .dot.active {
    background-color: var(--dark-brown);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 2rem 2rem;
    }

    .productions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-section,
    .production-entry {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .content-section.reverse,
    .production-entry.reverse {
        direction: ltr;
    }
}

@media (max-width: 640px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        align-items: center;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
    }

    nav ul {
        gap: 1rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .productions-grid {
        grid-template-columns: 1fr;
    }

    .fabrication-grid {
        grid-template-columns: 1fr;
        padding: 0 2rem 2rem;
    }

    .carousel-item {
        flex: 0 0 100%;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ========================================
   Modal Styles
   ======================================== */

.slideshow-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.slideshow-content {
    position: relative;
    max-width: 900px;
    width: 90%;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* ========================================
   Resume Page
   ======================================== */

.resume-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.resume-section {
    margin-bottom: 2rem;
}

.resume-section h2 {
    border-bottom: 1px solid var(--taupe);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.resume-item {
    margin-bottom: 1.5rem;
}

.resume-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.resume-item h3 .location {
    font-weight: 300;
    color: var(--taupe);
    font-size: 0.95rem;
}

.resume-item .date {
    color: var(--taupe);
    font-size: 0.9rem;
}

.resume-item p {
    margin-top: 0.5rem;
}

/* ========================================
   Contact Page
   ======================================== */

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-container h1 {
    margin-bottom: 1rem;
}

.contact-container p {
    margin-bottom: 2rem;
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 1rem;
    background: white;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dusty-rose);
}

.contact-form .btn {
    width: 100%;
}

/* ========================================
   NEW: Dropdown Navigation
   ======================================== */

nav ul li {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-cream);
    min-width: 180px;
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--dark-brown);
}

.dropdown a:hover {
    background: rgba(167, 114, 125, 0.1);
    color: var(--dusty-rose);
}

/* ========================================
   NEW: Filter Pills (Work Page)
   ======================================== */

.work-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding: 3rem 4rem 2rem;
}

.filter-btn {
    background: none;
    border: 1.5px solid #ddd;
    border-radius: 100px;
    padding: 0.55rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--taupe);
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.filter-btn:hover {
    border-color: var(--dusty-rose);
    color: var(--dusty-rose);
}

.filter-btn.active {
    background: var(--dusty-rose);
    border-color: var(--dusty-rose);
    color: white;
}

/* Pill Navigation Links */
.pill-nav {
    display: inline-block;
    background: none;
    border: 1.5px solid var(--taupe);
    border-radius: 4px;
    padding: 0.6rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--taupe);
    text-decoration: none;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pill-nav:hover {
    border-color: var(--dusty-rose);
    color: var(--dusty-rose);
}

.pill-nav.active {
    background: var(--dusty-rose);
    border-color: var(--dusty-rose);
    color: white;
}

/* ========================================
   NEW: Enhanced Footer
   ======================================== */

.site-footer {
    background: var(--dusty-rose);
    color: white;
    padding: 2.5rem 4rem;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer__brand {
    text-align: left;
    order: 1;
}

.footer__brand h3,
.footer__tagline {
    display: none;
}

.footer__copyright-inline {
    font-size: 0.85rem;
    color: white;
    font-family: var(--font-body);
    font-weight: 300;
}

.footer__copyright {
    display: none;
}

.footer__nav {
    order: 2;
    text-align: center;
    display: flex;
    gap: 2rem;
}

.footer__nav a {
    font-size: 0.85rem;
    color: white;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer__nav a:hover {
    opacity: 1;
}

.footer__socials {
    order: 3;
}

.footer__socials {
    display: flex;
    gap: 0.75rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    opacity: 0.85;
    transition: all 0.2s ease;
}

.footer__social-link:hover {
    border-color: white;
    opacity: 1;
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__bottom {
    display: none;
}

/* ========================================
   NEW: Contact Page with Icons
   ======================================== */

.contact-wrapper {
    max-width: 1100px;
    margin: 3rem auto 4rem;
    padding: 1.5rem;
    background-color: #C7C5C3;
    border-radius: 12px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 2.5rem 3rem;
    align-items: center;
    background-color: var(--bg-cream);
    border-radius: 8px;
}

.contact-info {
    padding: 1rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 114, 125, 0.1);
    border-radius: 12px;
    color: var(--dusty-rose);
}

.contact-item__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--dusty-rose);
    fill: none;
    stroke-width: 1.5;
}

.contact-item__label {
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: var(--dark-brown);
}

.contact-item__value {
    font-weight: 200;
    color: var(--taupe);
    font-size: 0.95rem;
}

.contact-item__value a {
    color: var(--dusty-rose);
    transition: color 0.2s ease;
}

.contact-item__value a:hover {
    color: #8f5f6a;
}

.contact-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-image img,
.contact-image .placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: var(--taupe);
    display: block;
}

/* ========================================
   NEW: Responsive Updates
   ======================================== */

@media (max-width: 1024px) {
    .footer__inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer__nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-wrapper {
        margin: 2rem 1rem 3rem;
        padding: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .work-filters {
        padding: 1.5rem 2rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .site-footer {
        padding: 3rem 2rem 2rem;
    }

    .footer__socials {
        justify-content: center;
    }
}

/* ========================================
   Project Modal / Lightbox
   ======================================== */

.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem;
}

.project-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-cream);
    max-width: 1000px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark-brown);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.modal-gallery {
    width: 100%;
    min-height: 70vh;
    background: black;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-gallery img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.modal-gallery img.active,
.modal-gallery video.active {
    display: block;
}

.modal-gallery video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
    background: black;
}

.modal-gallery .placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: var(--dark-brown);
}

.modal-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: var(--bg-cream);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.modal-gallery-nav:hover {
    background: rgba(0, 0, 0, 0.6);
}

.modal-gallery-nav.prev {
    left: 1rem;
}

.modal-gallery-nav.next {
    right: 1rem;
}

.modal-info {
    padding: 2rem;
    overflow-y: auto;
}

.modal-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--soft-brown);
}

.modal-info p {
    color: var(--soft-brown);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Creative Team Toggle in Modal */
.modal-creative-toggle {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--soft-brown);
    cursor: pointer;
    margin-bottom: 0.5rem;
    text-decoration: underline;
    transition: all 0.2s ease;
}

.modal-creative-toggle:hover {
    text-decoration: none;
}

.modal-creative-team {
    display: none;
    margin-bottom: 1rem;
}

.modal-creative-team.expanded {
    display: block;
}

.modal-creative-team ul {
    list-style: none;
    font-size: 0.95rem;
    line-height: 1.8;
}

.modal-creative-team li {
    color: var(--soft-brown);
}

/* Cast Toggle in Modal */
.modal-cast-toggle {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--soft-brown);
    cursor: pointer;
    margin-bottom: 0.5rem;
    margin-left: 1rem;
    text-decoration: underline;
    transition: all 0.2s ease;
}

.modal-cast-toggle:hover {
    text-decoration: none;
}

.modal-cast {
    display: none;
    margin-bottom: 1rem;
}

.modal-cast.expanded {
    display: block;
}

.modal-cast ul {
    list-style: none;
    font-size: 0.95rem;
    line-height: 1.8;
}

.modal-cast li {
    color: var(--soft-brown);
}

/* Toggle button row */
.modal-toggle-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 0.5rem;
}

.modal-toggle-row .modal-creative-toggle,
.modal-toggle-row .modal-cast-toggle {
    margin-left: 0;
    margin-right: 1rem;
}

.modal-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.modal-tag {
    background: var(--beige);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--dark-brown);
}

@media (max-width: 768px) {
    .project-modal {
        padding: 1rem;
    }

    .modal-content {
        grid-template-columns: 1fr;
    }

    .modal-gallery {
        height: 40vh;
    }

    .modal-info {
        padding: 1.5rem;
    }

    .modal-info h2 {
        font-size: 1.25rem;
    }
}

/* Lightbox for fullscreen images */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: #F9F8F6;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    z-index: 2001;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.6);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
}

.lightbox-nav:hover {
    color: var(--dusty-rose);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.modal-gallery img,
.modal-gallery video {
    cursor: pointer;
}
