body {
    background-color: #0a0a1a;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.sculpture-page {
    padding: 90px 20px 40px;
}

.sculpture-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sculpture-hero {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    border-radius: 40px;
    overflow: hidden;
    height: 400px; /* Adjust this value to control the hero image height */
}

.sculpture-hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(0.6);
}

.sculpture-hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 5rem;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    white-space: nowrap;
    text-transform: lowercase;
}

.sculpture-description {
    max-width: 1000px;
    text-align: center;
    margin-bottom: 60px;
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

.size-title {
    font-size: 8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.feature-section {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.feature-section.alt {
    flex-direction: row-reverse;
}

.feature-image-container {
    flex: 1;
    background-color: transparent;
    padding: 0;
    text-align: center;
}

.feature-image-container img {
    width: 100%;
    border-radius: 15px;
}

.image-caption {
    margin-top: 1rem;
    font-weight: bold;
    font-size: 2rem;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2rem;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .sculpture-page {
        padding-top: 7rem; /* Equivalent to 110px */
    }

    .sculpture-hero {
        height: 300px;
    }

    .sculpture-hero-title {
        font-size: 3rem;
        white-space: normal;
        text-align: center;
        width: 80%;
    }
    .sculpture-description {
        font-size: 0.9rem;
    }

    .size-title {
        font-size: 4rem;
    }
    
    .feature-section, .feature-section.alt {
        flex-direction: column;
    }
    .feature-text h2 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }
}
