/* studio.css - full stylesheet for studio page */

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.section {
    padding: 6rem 0;
}

.section.alternate {
    background: #f8f9fa;
}

#studio {
    background: transparent !important;
    text-align: center;
    color: #1a1a1a;
}

#studio h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

#studio p {
    max-width: 850px;
    margin: 0 auto 1.25rem;
    font-size: 1.15rem;
    color: #555;
}

.section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.studio-image-placeholder {
    min-height: 220px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f0f4ff, #e7ecff);
    border: 2px dashed #c7d2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.top-nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.top-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.top-nav a:hover {
    color: #007bff;
}

footer {
    background: #1a1a1a;
    color: #ddd;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: #7ab7ff;
}

@media (max-width: 768px) {
    #studio h1 {
        font-size: 2.6rem;
    }

    .section {
        padding: 4rem 0;
    }

    .top-nav ul {
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
    }
}