/* ==========================================================================
   HOME PAGE SPECIFIC STYLES (index.css)
   ========================================================================== */

/* --- HERO SECTION (WITH BACKGROUND IMAGE) --- */
.hero-home {
    min-height: 95vh;
    /* Background image with dark overlay */
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('../images/center_bg.jpg') center/cover no-repeat;
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-align: center; 
    padding: 120px 10% 80px;
}
.hero-home h1 { 
    font-size: clamp(2.8rem, 6vw, 4.8rem); 
    color: var(--white); 
    line-height: 1.15; 
    margin-bottom: 25px; 
    font-weight: 800; 
}
.hero-home h1 span { 
    color: var(--primary); 
}
.hero-home p { 
    font-size: 1.25rem; 
    color: #cbd5e1; 
    max-width: 800px; 
    margin: 0 auto 40px; 
}

/* --- DIRECTOR / FOUNDER SECTION --- */
.director-section {
    padding: 100px 8%;
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
}
.director-image-wrapper {
    flex: 1;
    min-width: 320px;
    position: relative;
}
.director-image-wrapper img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: -20px 20px 0 var(--primary);
    position: relative;
    z-index: 2;
}
.director-content {
    flex: 1.2;
    min-width: 320px;
}
.director-content h2 {
    font-size: 2.6rem;
    color: var(--dark);
    margin-bottom: 5px;
    font-weight: 800;
}
.director-content h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.director-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}
.director-signature {
    font-family: 'Times New Roman', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--dark);
    margin-top: 30px;
    border-top: 1px solid var(--border);
    padding-top: 15px;
    display: inline-block;
}

/* --- CENTER GALLERY SECTION --- */
.gallery-section {
    padding: 100px 8%;
    background: var(--bg-body);
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--white);
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-caption {
    padding: 20px;
    text-align: left;
    border-top: 3px solid var(--primary);
}
.gallery-caption h4 {
    color: var(--dark);
    font-size: 1.1rem;
}

/* Responsive adjustments for Home Page */
@media (max-width: 900px) {
    .director-section { flex-direction: column-reverse; gap: 50px; }
    .director-image-wrapper { box-shadow: -15px 15px 0 var(--primary); margin-bottom: 20px; }
}
