/* livet.css - Specialized styles only */

/* SERVICE HERO SECTION */
.service-hero {
    height: 45vh;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding-top: 60px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    width: 100%;
}

.service-hero-content.container,
.container.service-hero-content {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

.service-hero-content .category-tag,
.category-tag {
    display: inline-block;
    color: #ffcc33;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.service-hero-content h1,
.service-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin: 0;
    color: #fff;
    line-height: 1.1;
    display: block;
}

.service-hero-content .hero-subtitle,
.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 10px;
    font-weight: 300;
    max-width: 700px;
    line-height: 1.4;
    display: block;
}

/* CAPABILITIES SECTION */
.capabilities {
    padding: 60px 0 100px 0;
    background: #0a0a0a;
    color: #fff;
}

.cap-header {
    margin-bottom: 40px;
    max-width: 700px;
}

.cap-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.cap-header p {
    color: #666;
    font-size: 1rem;
}

.cap-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    padding: 35px 0;
    border-top: 1px solid #222;
}

.cap-row:last-child {
    border-bottom: 1px solid #222;
}

.cap-label {
    color: #ffcc33;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-top: 5px;
}

.cap-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cap-desc li {
    margin-bottom: 20px;
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cap-desc li strong {
    color: #eee;
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 600;
}

.cap-desc p {
    margin-bottom: 20px;
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cap-desc p:last-child {
    margin-bottom: 0;
}

.cap-desc p strong {
    color: #eee;
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 600;
}

/* BENTO GRID AREA */
.bento-details { padding: 80px 0 40px 0; background: #0a0a0a; }
.section-intro { margin-bottom: 40px; max-width: 900px; }
.section-intro h2 { font-size: 2.8rem; margin-bottom: 15px; color: #fff; }
.section-intro p { color: #888; font-size: 1.1rem; line-height: 1.7; }

.service-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 20px;
}

.bento-box {
    background: #111; border: 1px solid #222; border-radius: 24px;
    padding: 30px; display: flex; flex-direction: column;
    justify-content: flex-end; position: relative; overflow: hidden;
    background-size: cover; background-position: center;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.bento-box:hover { border-color: #ffcc33; transform: translateY(-5px); }

.bento-bg-overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent); z-index: 1; 
}
.bento-content { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }

/* BENTO LAYOUT POSITIONS */
.cinematic-hero-box { grid-column: span 2; grid-row: span 2; background-image: url('../images/LivePerformance/Bento1.webp'); }
.featured-video-link-box { grid-column: span 2; grid-row: span 1; background-image: url('../images/LivePerformance/Bento2.webp'); cursor: pointer; }

.play-overlay {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -80%); z-index: 2;
    transition: transform 0.3s ease;
}
.featured-video-link-box:hover .play-overlay { transform: translate(-50%, -80%) scale(1.1); }

.play-button-icon {
    width: 70px; height: 70px;
    background: rgba(255, 204, 51, 0.9); color: #000;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; padding-left: 5px; box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.watch-link { color: #ffcc33; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-top: 5px; letter-spacing: 1px; }

.post-bento { grid-column: span 1; grid-row: span 1; background-image: url('../images/LivePerformance/Bento3.webp'); }
.audio-bento { grid-column: span 1; grid-row: span 1; background-image: url('../images/LivePerformance/Bento4.webp'); }

.bento-box h3 { font-size: 2.2rem; color: #fff; margin-bottom: 10px; line-height: 1; }
.bento-box h4 { color: #ffcc33; text-transform: uppercase; font-size: 0.7rem; margin-bottom: 10px; letter-spacing: 1px; }
.bento-box p { color: #bbb; font-size: 0.95rem; line-height: 1.5; }

/* TRUSTED CLIENTS */
.trusted-clients { padding: 80px 0; background: #000; }
.client-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; margin-top: 40px; }
.client-grid span {
    color: #eee; background: #111;
    font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; text-align: center; border: 1px solid #222;
    padding: 25px 15px; border-radius: 15px; transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center; min-height: 80px;
}
.client-grid span:hover { color: #ffcc33; border-color: #ffcc33; background: #0a0a0a; }

/* BUTTONS & UI */
.visual-accent-btn-blue {
    display: inline-block; background: #ffcc33; color: #000 !important;
    padding: 12px 25px; border-radius: 30px; font-weight: 800; text-transform: uppercase;
    font-size: 0.75rem; text-decoration: none; align-self: flex-start; transition: 0.3s ease; margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 204, 51, 0.3);
}
.visual-accent-btn-blue:hover { background: #ffd966; transform: scale(1.05); box-shadow: 0 6px 20px rgba(255, 204, 51, 0.5); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-hero {
        min-height: 400px;
    }
    
    .service-hero-content {
        padding-top: 40px;
    }
    
    .service-hero-content h1,
    .service-hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .service-hero-content .hero-subtitle,
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .service-bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .cinematic-hero-box, .featured-video-link-box, .post-bento, .audio-bento { grid-column: span 1; min-height: 280px; }
    .cap-row { grid-template-columns: 1fr; gap: 15px; padding: 25px 0; }
}