/* Art Page Specific Styles */

.content-section {
    position: relative;
    min-height: 100vh;
    padding: 30vh 0 5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 1;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.9);
    padding-top: 30vh;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.title-line {
    width: 100%;
    max-width: 800px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
}

/* Center-text section - full height with centered content */
.center-text {
    height: 100vh;
    position: relative;
    z-index: 1;
    width: 100%;
    opacity: 1; /* Ensure it's visible */
}

.center-text h1 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0.9;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Main layout styling */
main {
    padding: 0 8%;
    display: block;
    height: auto;
    margin-bottom: 80px; /* Space for footer */
    position: relative;
    z-index: 2;
}

/* Art showcase section */
.art-showcase {
    padding: 2rem 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 5;
}

/* Art container for the two projects */
.art-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Individual art item */
.art-item {
    width: 47.5%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.art-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Container for image and overlay */
.art-image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/9;
}

.art-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.art-item:hover img {
    transform: scale(1.05);
}

/* Overlay with information */
.art-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
    padding: 2rem 1.5rem 1.5rem;
    color: #fff;
    opacity: 0.9;
    transition: all 0.4s ease;
}

.art-item:hover .art-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.2));
}

.art-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.art-overlay p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0;
    opacity: 0.8;
}

/* Art description section */
.art-description {
    padding: 0 2rem;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.art-description p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-family: 'EB Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    letter-spacing: 0.4px;
    font-weight: 400;
}

/* Section subtitle */
.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 1.2px;
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.section-subtitle::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
}

/* Responsive styles */
@media (max-width: 992px) {
    .art-container {
        gap: 4%;
    }
    
    .art-item {
        width: 48%;
    }
    
    .art-overlay h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .art-description p {
        font-size: 1.1rem;
    }
    
    .section-subtitle {
        font-size: 1.8rem;
    }
    
    .art-overlay {
        padding: 1.5rem 1.2rem 1.2rem;
    }
    
    .art-overlay h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .art-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .art-item {
        width: 100%;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
} 