/* Careers Page Content */
.careers-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.careers-content {
    padding: 100px 0;
    text-align: center;
}

.careers-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.no-opportunities {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
}

.no-opportunities i {
    font-size: 48px;
    color: #ff3e3e;
    margin-bottom: 20px;
}

.no-opportunities p {
    font-size: 18px;
    color: #666;
}

/* Life at the Studio Section */
.life-at-studio {
    padding: 100px 0;
    background-color: #eeeeee;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.life-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.life-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.life-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.life-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.life-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.life-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 62, 62, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.life-overlay span {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.life-item:hover img {
    transform: scale(1.1);
}

.life-item:hover .life-overlay {
    opacity: 1;
}
