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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Header Styles */
.main-header {
    padding: 60px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 60px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    margin-bottom: 20px;
    text-align: center;
}

.back-link {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #333;
    border-color: #999;
    background-color: #f9f9f9;
}

.main-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 3px;
    color: #222;
}

.intro {
    text-align: justify;
    margin-bottom: 40px;
    padding: 0 20px;
}

.intro p {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

.artist-statement {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    padding: 0 20px;
    display: none;
}

.artist-statement h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #444;
}

.artist-statement p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

/* Gallery Section Styles */
.gallery-section {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.artwork-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.artwork-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.artwork-info {
    padding: 20px 0;
    text-align: center;
}

.artwork-info h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 5px;
    color: #333;
}

.artwork-info .price {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
}

/* Footer Styles */
.main-footer {
    background-color: #fafafa;
    padding: 60px 0;
    margin-top: 80px;
    border-top: 1px solid #f0f0f0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.artist-bio h3,
.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333;
}

.artist-bio p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.contact-details p {
    margin-bottom: 15px;
    color: #666;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-button {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
}

.contact-button:hover {
    background-color: #555;
    color: white;
}

.button-icon {
    font-size: 1.1rem;
    opacity: 0.9;
}

.email-button:hover {
    background-color: #2c5282;
}

.whatsapp-button:hover {
    background-color: #25d366;
}

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

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

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    background-color: white;
    max-width: 90vw;
    max-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 400px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    min-height: 400px;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-info {
    padding: 40px;
    overflow-y: auto;
}

.lightbox-info h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #333;
}

.artwork-details {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.artwork-details p {
    margin-bottom: 8px;
    color: #666;
}

.artwork-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.inquiry-button {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 2px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.inquiry-button:hover {
    background-color: #555;
}

/* Responsive Design */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .lightbox-content {
        grid-template-columns: 1fr;
        max-width: 95vw;
    }
    
    .lightbox-info {
        padding: 30px;
    }
    
    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-header {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .main-header h1 {
        font-family: 'Cinzel', serif;
        font-size: 2.5rem;
        font-weight: 900;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }
    
    .intro p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-section {
        margin-bottom: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lightbox {
        align-items: flex-start;
        overflow-y: auto;
        padding: 20px 0;
    }
    
    .lightbox-content {
        margin: 20px;
        max-height: none;
        width: calc(100% - 40px);
    }
    
    .lightbox-info {
        padding: 20px;
        max-height: none;
    }
    
    .lightbox-info h3 {
        font-size: 1.5rem;
    }
    
    /* Email notification adjustments for mobile */
    .email-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .main-header h1 {
        font-family: 'Cinzel', serif;
        font-size: 2rem;
        font-weight: 900;
        letter-spacing: 1px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .main-footer {
        padding: 40px 0;
    }
    
    .lightbox {
        padding: 10px 0;
    }
    
    .lightbox-content {
        margin: 10px;
        width: calc(100% - 20px);
    }
}

/* Email Notification Styles */
.email-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 0;
    z-index: 2000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    animation: slideInRight 0.3s ease;
}

.email-notification-content {
    padding: 20px;
    position: relative;
}

.email-notification p {
    margin: 0 0 10px 0;
    color: #333;
}

.email-address {
    font-family: 'Courier New', monospace;
    background: #f5f5f5;
    padding: 8px;
    border-radius: 4px;
    font-weight: bold;
    color: #333 !important;
}

.copy-email-btn {
    background: #333;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 0.9rem;
}

.copy-email-btn:hover {
    background: #555;
}

.close-notification {
    position: absolute;
    top: 5px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

.close-notification:hover {
    color: #333;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
} 