@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-color: #0a0a0a;
    --surface-color: #171717;
    --primary-color: #D4AF37; /* Gold */
    --primary-hover: #EED786;
    --text-primary: #FAFAFA;
    --text-secondary: #A3A3A3;
    --border-color: #333333;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-standard: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-standard);
}

a:hover {
    color: var(--primary-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-standard);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo:hover {
    color: var(--primary-color);
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a.active {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 0.55rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.72rem;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    background: transparent;
    color: var(--primary-color);
    overflow: visible;
    position: relative;
}

.btn:hover {
    letter-spacing: 0.2em;
}

/* Viewfinder Corners */
.btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: 
        /* Top-Left */
        linear-gradient(to right, var(--primary-color) 1.5px, transparent 1.5px) 0 0,
        linear-gradient(to bottom, var(--primary-color) 1.5px, transparent 1.5px) 0 0,
        /* Top-Right */
        linear-gradient(to left, var(--primary-color) 1.5px, transparent 1.5px) 100% 0,
        linear-gradient(to bottom, var(--primary-color) 1.5px, transparent 1.5px) 100% 0,
        /* Bottom-Left */
        linear-gradient(to right, var(--primary-color) 1.5px, transparent 1.5px) 0 100%,
        linear-gradient(to top, var(--primary-color) 1.5px, transparent 1.5px) 0 100%,
        /* Bottom-Right */
        linear-gradient(to left, var(--primary-color) 1.5px, transparent 1.5px) 100% 100%,
        linear-gradient(to top, var(--primary-color) 1.5px, transparent 1.5px) 100% 100%;
    background-repeat: no-repeat;
    background-size: 9px 9px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    z-index: 2;
}

/* Capturing/Focus Animation */
.btn:hover::before {
    inset: 2px;
    background-size: 11px 11px;
    filter: drop-shadow(0 0 4px var(--primary-color));
}

.btn-primary {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    letter-spacing: 0.2em;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: transparent;
    color: var(--primary-hover);
    letter-spacing: 0.2em;
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 80%;
    opacity: 0.9;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, var(--bg-color) 5%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.35) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
    margin-top: 18rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.section {
    padding: 4rem 5%;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: -2rem auto 3rem;
}

.title-alt {
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    vertical-align: middle;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background-color: var(--surface-color);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition-standard);
}

.card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-secondary);
}

footer {
    background-color: var(--surface-color);
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}


/* Page Headers */
.page-header {
    padding: 10rem 5% 5rem;
    text-align: center;
    position: relative;
}

.spaces-header {
    background-image: url('assets/headers/spaces-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 12rem 5% 8rem;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.95) 100%);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: var(--transition-standard);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-success {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    border: 1px solid var(--primary-color);
    display: none;
}

.form-error {
    background: rgba(224, 92, 92, 0.1);
    color: #E05C5C;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    border: 1px solid #E05C5C;
    display: none;
}

.form-success:not(:empty), .form-error:not(:empty) {
    display: block;
}

/* Gallery Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-height: 80vh;
    max-width: 90vw;
    border-radius: 6px;
    object-fit: contain;
}
.lightbox-info {
    margin-top: 1.2rem;
    text-align: center;
}
.lightbox-info .lb-caption {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-primary);
}
.lightbox-info .lb-id {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}
.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}
.lightbox-close:hover { color: var(--primary-color); }

/* Quote Section */
.quote-section {
    padding: 4rem 5% 6rem;
    text-align: center;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.quote-icon {
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    line-height: 1.3;
    color: var(--text-primary);
    font-weight: 400;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.quote-author::before, .quote-author::after {
    content: "";
    width: 30px;
    height: 1px;
    background-color: var(--primary-color);
    opacity: 0.4;
}

.quote-author span {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 600;
}

@media (max-width: 768px) {
    .quote-text {
        font-size: 1.8rem;
    }
}

/* Featured Gallery Section */
.featured-gallery {
    padding: 3rem 0;
    background-color: var(--bg-color);
    overflow: hidden;
}

.featured-gallery-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 5%;
}

.featured-gallery-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.featured-gallery-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.gallery-track-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.nav-btn {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    z-index: 10;
}

.nav-btn.prev { left: 2%; }
.nav-btn.next { right: 2%; }

.nav-btn:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    transform: scale(1.1);
}

.gallery-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 5vw 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.featured-gallery .gallery-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.featured-gallery .gallery-card:hover {
    transform: translateY(-5px);
}

.img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 5px 15px rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.featured-gallery .gallery-card:hover .img-wrapper {
    border-color: var(--primary-color);
}

.featured-gallery .gallery-card img {
    height: 400px;
    width: auto;
    display: block;
    object-fit: cover;
}

.card-info {
    margin-top: 1rem;
    text-align: center;
}

.card-info .caption {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.card-info .artist {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.card-info .photo-id {
    color: var(--primary-color);
    font-family: monospace;
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

.featured-gallery-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .featured-gallery .gallery-card img { height: 300px; }
    .nav-btn { width: 40px; height: 40px; }
    .nav-btn.prev { left: 1%; }
    .nav-btn.next { right: 1%; }
    .featured-gallery { padding: 2rem 0; }
}

/* About Preview Section */
.about-preview {
    position: relative;
    padding: 10rem 5%;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.about-preview-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.about-preview-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.about-preview-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 100%);
}

.about-preview-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.about-preview-content {
    text-align: left;
    max-width: 650px;
}

.about-preview p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.about-preview-highlight {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    margin-bottom: 2.5rem !important;
    font-family: var(--font-heading) !important;
    font-style: italic;
}

.about-preview-credit {
    text-align: right;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    opacity: 0.6;
    text-transform: uppercase;
}

.how-it-works-enhanced {
    background-color: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
}

.step-card {
    position: relative;
    padding-top: 3.5rem;
    overflow: hidden;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.5;
    font-weight: 700;
    margin-bottom: 0;
}

.step-icon {
    width: 36px;
    height: 36px;
    color: var(--primary-color);
    stroke-width: 1.5px;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 0;
    background-color: var(--primary-color);
    transition: var(--transition-standard);
}

.step-card:hover::after {
    height: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.benefit-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.benefit-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Why Artinu Unique Section */
.why-artinu-unique {
    background-color: var(--bg-color);
    padding: 8rem 5%;
}

.unique-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.unique-feature {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-standard);
}

.unique-feature:last-child {
    border-bottom: none;
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-icon-box i {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.unique-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.unique-list li {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-primary);
    opacity: 0.8;
    position: relative;
    padding-left: 0;
}

.unique-list li::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    margin-top: 0.5rem;
    opacity: 0.4;
}

.unique-feature:hover .feature-icon-box {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.unique-feature:hover .feature-icon-box i {
    color: var(--bg-color);
}

.unique-feature:hover {
    padding-left: 1rem;
    border-bottom-color: var(--primary-color);
}

/* Why Artinu Bento Grid */
.why-artinu-bento {
    background-color: var(--bg-color);
    padding: 8rem 5%;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: 1.5rem;
    max-width: 1300px;
    margin: 3rem auto 0;
    grid-template-areas: 
        "photographers photographers spaces"
        "photographers photographers visitors";
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "photographers"
            "spaces"
            "visitors";
    }
}

.bento-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.item-photographers { grid-area: photographers; background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); border-color: rgba(212, 175, 55, 0.3); }
.item-spaces { grid-area: spaces; }
.item-visitors { grid-area: visitors; }

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-icon {
    width: 42px;
    height: 42px;
    color: var(--primary-color);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.bento-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.item-photographers h3 { font-size: 2.8rem; }

.bento-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 400px;
}

.bento-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.bento-list li {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.05);
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.item-photographers:hover {
    background: linear-gradient(135deg, #222 0%, #0a0a0a 100%);
}

/* Why Artinu Interactive Panes */
.why-artinu-panes {
    background-color: var(--bg-color);
    padding: 8rem 0;
    overflow: hidden;
}

.panes-container {
    display: flex;
    height: 600px;
    width: 100%;
    margin-top: 4rem;
}

.pane {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    border-right: 1px solid rgba(255,255,255,0.05);
}

.pane:last-child {
    border-right: none;
}

.pane-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    transition: transform 0.6s ease;
}

.pane-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.3);
    transition: all 0.6s ease;
}

.pane-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
}

.pane-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pane-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
}

.pane-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.pane h3 {
    font-size: 2.2rem;
    color: var(--text-primary);
    white-space: nowrap;
}

.pane-details {
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.pane-details p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pane-list {
    list-style: none;
    padding: 0;
}

.pane-list li {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pane-list li::before {
    content: '';
    width: 20px;
    height: 1px;
    background-color: var(--primary-color);
}

/* Hover States */
.pane:hover {
    flex: 2.5;
}

.pane:hover .pane-bg img {
    filter: grayscale(0%) brightness(0.5);
    transform: scale(1.1);
}

.pane:hover .pane-details {
    opacity: 1;
    transform: translateY(0);
}

.pane:hover h3 {
    color: var(--primary-color);
}

@media (max-width: 800px) {
    .panes-container {
        flex-direction: column;
        height: auto;
    }
    .pane {
        height: 300px;
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .pane:hover {
        flex: none;
        height: 450px;
    }
}

/* Vertical Process Flow */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    padding-left: 1rem;
    margin-top: 2rem;
}

.process-flow::before {
    content: '';
    position: absolute;
    left: 2.5rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.process-step {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    position: relative;
}

.step-num-v {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bg-color);
    background-color: var(--primary-color);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.step-content-v h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.step-content-v p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
}

@media (max-width: 768px) {
    .process-step {
        gap: 1.5rem;
    }
    .step-num-v {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    .process-flow::before {
        left: 2.25rem;
    }
}
/* Artist Page Hero Header */
.artist-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 8rem 5%;
    overflow: hidden;
    color: #fff;
}

.artist-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.9; /* Reduced transparency */
}

.artist-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.85) 40%, rgba(10,10,10,0.4) 100%);
    z-index: 1;
}

.artist-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    gap: 4rem;
}

.artist-hero-content {
    flex: 1;
    max-width: 650px;
}

.artist-hero-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

.artist-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.1;
}

.artist-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.artist-location i {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

.artist-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
    border-left: 2px solid var(--primary-color);
    padding-left: 1.5rem;
}

.artist-stats-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    opacity: 0.6;
}

.stat-item div {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
}

.stat-item span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.artist-hero-avatar {
    flex-shrink: 0;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: flex;
}

.artist-hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1000px) {
    .artist-hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .artist-hero-content {
        max-width: 100%;
    }
    .artist-hero h1 { font-size: 3rem; }
    .artist-hero-avatar {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    .artist-bio {
        border-left: none;
        border-top: 2px solid var(--primary-color);
        padding-left: 0;
        padding-top: 1.5rem;
    }
    .artist-stats-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .artist-location {
        justify-content: center;
    }
}

/* Social-media-style photo grid */
.artist-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 3px;
}
@media (max-width: 600px) {
    .artist-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
.artist-grid-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
    background: var(--surface-color);
}
.artist-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.artist-grid-item:hover img {
    transform: scale(1.05);
    opacity: 0.7;
}
.artist-grid-item:hover .grid-overlay {
    opacity: 1;
}
.grid-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.grid-overlay .ov-caption {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.2rem;
}
.grid-overlay .ov-id {
    font-family: monospace;
    font-size: 0.72rem;
    color: var(--primary-color);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-height: 80vh;
    max-width: 90vw;
    border-radius: 6px;
    object-fit: contain;
}
.lightbox-info {
    margin-top: 1.2rem;
    text-align: center;
}
.lightbox-info .lb-caption {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-primary);
}
.lightbox-info .lb-id {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}
.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}
.lightbox-close:hover { color: var(--primary-color); }

.photographers-header {
    background-image: url('assets/headers/photographers-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 12rem 5% 8rem;
}
