/* Studio Section Images */
.studio-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.studio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 43, 76, 0.94) 0%,
        rgba(26, 43, 76, 0.88) 100%
    );
    backdrop-filter: blur(10px);
    z-index: 2;
}

.studio-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    transition: all 0.6s ease;
}

/* Studio Section */
.studio-section {
    position: relative;
    padding: 10rem 0;
    background-color: var(--main-blue);
    overflow: visible;
    z-index: 1;
}

.studio-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}

.studio-header {
    position: relative;
    margin-bottom: 8rem;
    z-index: 2;
}

.studio-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.studio-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 43, 76, 0.95) 0%,
        rgba(26, 43, 76, 0.85) 100%
    );
    z-index: 2;
}

.studio-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-title-wrap {
    position: relative;
    text-align: center;
    margin-bottom: 4rem;
    z-index: 3;
}

.studio-lead {
    position: relative;
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    color: var(--text-white);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-weight: 500;
    z-index: 3;
}

.studio-content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin: 8rem 0;
    z-index: 2;
}

.studio-text {
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    padding: 3.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 2px;
    border: 1px solid rgba(224, 191, 184, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.services-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 8rem;
    z-index: 2;
}

.service-card {
    position: relative;
    text-align: center;
    padding: 3.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(224, 191, 184, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.service-image {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    z-index: 2;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-card i {
    font-size: 2rem;
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.studio-outro {
    position: relative;
    max-width: 1000px;
    margin: 8rem auto 0;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    z-index: 2;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .studio-section {
        padding: 8rem 0;
    }

    .studio-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .studio-header {
        margin-bottom: 6rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .studio-lead {
        font-size: 1.6rem;
        padding: 0 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        margin-top: 6rem;
    }

    .service-card {
        padding: 2.5rem 1.5rem;
    }
} 