/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Text', serif;
    background: #0a0a0a;
    color: #e8e8e8;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(232, 232, 232, 0.1);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.artist-name {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: #e8e8e8;
    text-shadow: 0 0 20px rgba(232, 232, 232, 0.3);
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #e8e8e8;
    text-shadow: 0 0 10px rgba(232, 232, 232, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #e8e8e8;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 1) 70%);
}

.hero-content {
    max-width: 800px;
    margin-bottom: 60px;
}

.artist-title {
    margin-bottom: 40px;
}

.title-main {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #e8e8e8;
    text-shadow: 0 0 30px rgba(232, 232, 232, 0.4);
    margin-bottom: 10px;
    opacity: 0;
}

.title-sub {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #a0a0a0;
    font-style: italic;
    opacity: 0;
}

.hero-description {
    margin-top: 40px;
}

.mysterious-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #808080;
    opacity: 0;
    animation: fadeInUp 1.5s ease 1.5s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeInUp 1.5s ease 2s forwards;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #e8e8e8, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #a0a0a0;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 1) 0%, rgba(15, 15, 15, 1) 100%);
}

.gallery-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #e8e8e8;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(232, 232, 232, 0.3);
}

.title-underline {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e8e8e8, transparent);
    margin: 0 auto;
}

.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.art-piece {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.art-piece:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.art-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.art-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(100, 100, 100, 0.1) 0%, transparent 50%);
    animation: shimmer 3s ease-in-out infinite;
}

.art-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.art-piece:hover .art-overlay {
    transform: translateY(0);
}

.art-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: #e8e8e8;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #0f0f0f;
}

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

.about-text {
    padding-right: 40px;
}

.about-description {
    margin-top: 40px;
}

.about-description p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.placeholder-text {
    color: #606060;
    font-style: italic;
    font-weight: 600;
}

.artist-image {
    position: relative;
}

.artist-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(232, 232, 232, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    filter: grayscale(100%) contrast(1.2) brightness(0.9);
    transition: all 0.3s ease;
}

.artist-photo-img:hover {
    filter: grayscale(80%) contrast(1.3) brightness(1.0);
    transform: scale(1.02);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(15, 15, 15, 1) 0%, rgba(10, 10, 10, 1) 100%);
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    margin-top: 40px;
    margin-bottom: 60px;
}

.contact-email {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid rgba(232, 232, 232, 0.1);
    border-radius: 8px;
    background: rgba(20, 20, 20, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.email-text {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: #e8e8e8;
    text-shadow: 0 0 10px rgba(232, 232, 232, 0.3);
}

.copy-email-btn {
    background: rgba(232, 232, 232, 0.1);
    border: 1px solid rgba(232, 232, 232, 0.3);
    border-radius: 4px;
    padding: 8px 16px;
    color: #e8e8e8;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-email-btn:hover {
    background: rgba(232, 232, 232, 0.2);
    border-color: rgba(232, 232, 232, 0.5);
    box-shadow: 0 0 10px rgba(232, 232, 232, 0.2);
}

/* Contact Link */
.contact-link {
    margin-top: 40px;
    text-align: center;
}

.mail-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(232, 232, 232, 0.1);
    border: 1px solid rgba(232, 232, 232, 0.3);
    border-radius: 8px;
    padding: 20px 30px;
    color: #e8e8e8;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mail-icon-link:hover {
    background: rgba(232, 232, 232, 0.2);
    border-color: rgba(232, 232, 232, 0.5);
    box-shadow: 0 0 20px rgba(232, 232, 232, 0.3);
    transform: translateY(-2px);
}

.mail-icon {
    width: 24px;
    height: 24px;
    stroke: #e8e8e8;
    transition: all 0.3s ease;
}

.mail-icon-link:hover .mail-icon {
    stroke: #ffffff;
    transform: scale(1.1);
}

.mail-text {
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(232, 232, 232, 0.1);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-text {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: #606060;
}

.footer-line {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #606060, transparent);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 30px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .art-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .hero {
        padding: 0 20px;
    }
    
    .gallery,
    .about,
    .contact {
        padding: 80px 0;
    }
    
    .name-fields {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-content {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .art-grid {
        grid-template-columns: 1fr;
    }
    
    .art-piece {
        aspect-ratio: 3/4;
    }
}
