/* --- css/home.css --- */

/* Hero Section 
   Using a slightly darker overlay (0.8) to ensure 
   the white text is readable on all screens.
*/
.hero-banner {
    position: relative;
    background: linear-gradient(rgba(0, 35, 75, 0.8), rgba(0, 35, 75, 0.8)),
        url('../images/delhi-landmark.jpg') no-repeat center center/cover;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.hero-banner h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-banner p {
    font-size: 1.35rem;
    max-width: 800px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

/* Membership Button - Enhanced with Hover effect */
.btn-main {
    background: var(--accent-color);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
    background-color: #e68a00;
    /* Slightly darker orange */
}

/* Section Headers */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--primary-blue);
    font-size: 2.4rem;
    font-weight: 700;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto;
}

/* 3-Column Info Grid */
.info-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.info-card {
    background: var(--white);
    padding: 45px 30px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.info-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* 4-Column Pillars Row */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.pillar-card {
    background: var(--primary-blue);
    color: var(--white);
    padding: 35px 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease;
}

.pillar-card:hover {
    background: var(--secondary-blue);
}

.pillar-card h4 {
    color: var(--accent-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.pillar-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Contact Strip */
.contact-strip {
    background: #eef4fa;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #dce8f5;
}

/* Mobile Adjustments 
   Note: Editorial margins and general layout are already 
   handled by common.css. We only handle home-specific 
   grid changes here.
*/
@media (max-width: 992px) {

    .info-grid-3,
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .hero-banner h1 {
        font-size: 2.2rem;
    }
}