/* --- CSS Variables & Theme --- */
:root {
    --bg-color: #050505; /* Deep rich black */
    --text-color: #f4f4f5; /* Off-white for readability */
    --accent-color: #FF2E93; /* Vibrant designer pink */
    --accent-light: rgba(255, 46, 147, 0.2);
    
    /* Typography */
    --font-heading: 'Oswald', sans-serif; /* Bold, impactful */
    --font-serif: 'Cinzel', serif; /* Elegant, artistic */
    --font-body: 'Inter', sans-serif; /* Clean, modern */
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Hide default cursor for custom one */
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* --- Custom Cursor --- */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, mix-blend-mode 0.3s;
    mix-blend-mode: difference;
}
.cursor.active {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 46, 147, 0.4);
    backdrop-filter: blur(2px);
    border: 1px solid var(--accent-color);
    mix-blend-mode: normal;
}
.cursor.view-img {
    width: 80px;
    height: 80px;
    background-color: transparent;
    border: 2px solid var(--accent-color);
    mix-blend-mode: normal;
}
.cursor.view-img::after {
    content: 'VIEW';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 2px;
}

/* --- Typography Utilities --- */
.highlight {
    color: var(--accent-color);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}
.section-title.center {
    text-align: center;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}
.logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
}
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: translateX(-101%);
    transition: transform 0.3s ease;
}
.nav-links a:hover::after {
    transform: translateX(0);
}

/* --- Hero Section (Accordion) --- */
.accordion-hero {
    height: 100vh;
    width: 100vw;
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #000;
}
.accordion-panel {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: flex 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: none;
}
.accordion-panel:hover {
    flex: 3;
}
.accordion-panel img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    min-width: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: transform 0.8s ease, filter 0.8s ease;
}
.accordion-panel:hover img {
    transform: translateX(-50%) scale(1.05);
    filter: grayscale(20%) contrast(1.1);
}
.accordion-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    transition: background 0.8s ease;
    pointer-events: none;
}
.accordion-panel:hover::after {
    background: rgba(0,0,0,0.2);
}

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
    width: 100%;
}
.hero-overlay-text .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 8rem);
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 10px 40px rgba(0,0,0,0.9);
    margin-bottom: 1rem;
    overflow: hidden;
}
.hero-overlay-text .hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.9);
    overflow: hidden;
}
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    z-index: 20;
    mix-blend-mode: difference;
    pointer-events: none;
}
.scroll-indicator .line {
    width: 60px;
    height: 1px;
    background-color: var(--accent-color);
    position: relative;
    overflow: hidden;
}
.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-color);
    animation: scrollLine 2s infinite ease-in-out;
}
@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* --- About Section --- */
.about-section {
    padding: 10rem 10vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
}
.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.2); /* Enhance the pink */
    transform: scale(1.1); /* For GSAP parallax */
}
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 10;
}
.about-text p {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    margin-bottom: 2rem;
    color: #cccccc;
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 10rem 5vw;
}
.gallery-grid {
    column-count: 3;
    column-gap: 2rem;
    width: 100%;
    margin-top: 5rem;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: none;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(1.3); /* Ensure B&W photography aesthetic */
    transition: filter 0.5s ease, transform 0.5s ease;
}
.gallery-item:hover img {
    filter: grayscale(0%) contrast(1.1); /* Optional: slight reveal on hover, or keep B&W */
    transform: scale(1.03);
}

/* --- Footer --- */
.footer {
    padding: 10rem 10vw 2rem;
    text-align: center;
    background-color: #020202;
}
.footer-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 5rem);
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.email-link {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: var(--accent-color);
    text-decoration: none;
    font-style: italic;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}
.email-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}
.email-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.footer-bottom {
    margin-top: 10rem;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        column-count: 2;
    }
    .navbar {
        padding: 2rem;
    }
}
@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
    html, body {
        cursor: auto;
    }
    .cursor {
        display: none;
    }
}
