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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.artist-name {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 600;
    text-align: center;
    margin: 0;
    letter-spacing: 0.05em;
}

.contact-heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 80vw;
    height: 100vh;
    object-fit: cover;
    object-position: center 70%;
    display: block;
    cursor: pointer;
}

.artist-name {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #000000;
    pointer-events: none;
}

/* Gallery Section */
.gallery {
    padding: 10rem 2rem 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background-color: #f8f8f8;
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4 / 3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-image.img-0690 {
    object-position: center bottom;
}

/* Contact Section */
.contact {
    padding: 3rem 2rem 6rem 2rem;
    background-color: #fafafa;
    text-align: center;
}

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

}

.contact-message {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin: 0 0 1.5rem 0;
    line-height: 1.7;
    color: #2c2c2c;
    font-weight: 500;
}

.contact-message-body {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin: 0 0 1.5rem 0;
    line-height: 1.7;
    color: #2c2c2c;
}

.contact-email {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin: 2rem 0 0 0;
}

.contact-email a {
    color: #2c2c2c;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
    font-weight: 400;
}

.contact-email a:hover {
    border-bottom-color: #2c2c2c;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero-image-container {
        height: 80vh;
    }
    
    .gallery {
        padding: 6rem 1.5rem 3rem 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    
    .contact {
        padding: 2rem 1.5rem 4rem 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1025px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px) brightness(1);
    -webkit-backdrop-filter: blur(0px) brightness(1);
    cursor: pointer;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
}

.lightbox.active .lightbox-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(30px) brightness(0.5);
    -webkit-backdrop-filter: blur(30px) brightness(0.5);
}

.lightbox-content {
    position: relative;
    z-index: 10000;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Print Styles */
@media print {
    .hero-image-container {
        height: 50vh;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lightbox {
        display: none;
    }
}

