:root {
    --bg-color: #0f0f0f;
    --text-color: #e0e0e0;
    --accent-color: #10b981; /* Emerald Green */
    --secondary-color: #ffffff;
    --card-bg: rgba(26, 26, 26, 0.8); /* Semi-transparent */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: -0.01em; /* Tighter minimalist feel for Inter */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    background-image: url('assets/hero_background.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Dark overlay for body to ensure text readability on image */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.92); /* Strong overlay */
    z-index: -1;
    pointer-events: none;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

img {
    max-width: 100%;
    display: block;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.8); /* More transparent */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.4s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 80px;
    width: auto;
    /* filter: brightness(0) invert(1); Removed filter as new logo appears to be pre-colored/white */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    color: var(--text-color);
}

.nav-links a.active-link {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.btn-contact-nav {
    border: 1px solid var(--accent-color);
    padding: 8px 20px;
    transition: var(--transition);
    color: var(--accent-color) !important;
}

.btn-contact-nav:hover {
    background-color: var(--accent-color);
    color: var(--bg-color) !important;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('assets/hero_background.png');
    background-size: cover;
    background-position: center;
}

/* Overlay to ensure text readability */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darker overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    letter-spacing: -1px; /* Tighter modern tracking */
    font-weight: 700;
    text-shadow: none; /* Removed heavy shadow for minimalism */
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ccc;
}

.cta-button {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    padding: 15px 40px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    border: 1px solid var(--accent-color);
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: #000;
}

/* Gallery Section */
#gallery {
    padding: 100px 0;
    background-color: transparent; /* Changed from var(--bg-color) */
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: var(--secondary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 20px auto 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 400px;
    background-color: #111;
    border: 1px solid #333;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(40%) contrast(1.1);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.2);
}

.gallery-more {
    text-align: center;
    margin-top: 50px;
}

.instagram-link {
    font-weight: 700;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 5px;
    transition: var(--transition);
    color: var(--accent-color);
}

.instagram-link:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* About Section */
#about {
    padding: 120px 0;
    background-color: rgba(20, 20, 20, 0.5); /* Semi-transparent */
    position: relative;
    backdrop-filter: blur(5px);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-text {
    order: 1;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #aaa;
}

.about-text p:first-of-type {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.about-image {
    order: 2;
    height: 600px;
    position: relative;
}

.artist-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Modern professional look: slight contrast boost, no sepia, slight desaturation */
    filter: contrast(1.15) brightness(1.05) grayscale(10%);
    /* Mirror the image */
    transform: scaleX(-1);
    /* Shadow adjusted to -20px to appear as +20px after flip */
    box-shadow: -20px 20px 0px rgba(16, 185, 129, 0.05); 
    transition: var(--transition);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-color);
    z-index: 1;
    opacity: 0.3;
}

/* Contact Section */
#contact {
    padding: 100px 0;
    text-align: center;
    background-color: transparent; /* Changed from var(--bg-color) */
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.contact-card {
    background: var(--card-bg);
    padding: 40px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition);
    border: 1px solid #333;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    background: #222;
}

.contact-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--accent-color);
}

.contact-card p {
    color: #999;
}

/* Footer */
footer {
    background-color: #000;
    color: #666;
    text-align: center;
    padding: 30px 0;
    font-size: 0.8rem;
    border-top: 1px solid #222;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
}

.fade-in.delay-1 { animation-delay: 0.3s; }
.fade-in.delay-2 { animation-delay: 0.6s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo {
        margin-bottom: 10px;
    }

    .nav-links {
        display: none; /* Mobile menu implementation usually requires JS, simplistic for now */
        flex-direction: column;
        gap: 15px;
        text-align: center;
        background: white;
        width: 100%;
        padding-bottom: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 25px;
    }
    
    .hamburger span {
        width: 25px;
        height: 2px;
        background-color: var(--text-color);
    }

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

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        width: 100%;
        height: 400px;
    }
}
