* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

header {
    background-color: #1a2b3c;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #b0c4de;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu li {
    margin: 0 10px;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 40px;
    background-color: #e0e0e0;
    min-height: 80vh;
}

.hero-content {
    max-width: 80vw; /* Limit to 80% of viewport width */
    text-align: center; /* Center text and thumbnails */
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a2b3c;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

.hero-thumbnails {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 40px 20px;
    background-color: #f5f5f5;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a2b3c;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.cta-button {
    display: inline-block;
    background-color: #1a2b3c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2d4a6c;
}

/* Gallery Section */
.gallery-section {
    max-width: 1200px;
    margin: 120px auto 40px;
    padding: 20px;
}

.gallery-section h1 {
    text-align: center;
    color: #1a2b3c;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.gallery-section p {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
    object-fit: cover;
    width: 200px; /* Match the small size */
    height: 200px;
}

.gallery-item h3 {
    color: #1a2b3c;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-item p {
    color: #666;
    margin-bottom: 15px;
    font-size: 1rem;
}

.gallery-item a {
    text-decoration: none;
    color: #1a2b3c;
}

/* Detail Section */
.detail-section {
    max-width: 800px;
    margin: 120px auto 40px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.detail-section h1 {
    color: #1a2b3c;
    margin-bottom: 20px;
    text-align: center;
}

.slideshow {
    margin-bottom: 30px;
}

.slideshow img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: contain; /* Ensure the large image is fully visible */
    width: 800px; /* Match the large size */
    height: 800px;
}

.sculpture-details {
    text-align: center;
}

.sculpture-details p {
    color: #555;
    margin-bottom: 15px;
}

/* Form Section Styling */
.form-section {
    max-width: 500px;
    margin: 120px auto 40px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.form-section h2 {
    text-align: center;
    color: #1a2b3c;
    margin-bottom: 30px;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-section label {
    display: block;
    margin-bottom: 5px;
}
.about-portrait {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: block;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.highlight {
    color: #1a2b3c;
    font-weight: bold;
}

/* About Section */
.about-section {
    max-width: 800px;
    margin: 120px auto 40px;
    padding: 20px;
}

.about-section h1 {
    text-align: center;
    color: #1a2b3c;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.about-content {
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.about-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content .cta-button {
    margin-top: 20px;
}

.about-portrait {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: block;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section h1 {
        font-size: 2rem;
    }

    .about-content {
        padding: 20px;
    }

    .about-content p {
        font-size: 1rem;
    }
}
