/* ===== HOME PAGE SPECIFIC STYLES ===== */

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 64, 128, 0.6), rgba(0, 51, 102, 0.7)), 
                url('../hts_project_images/Hydro_Tech_Hero_bg.jpg') center/cover no-repeat;
    color: white;
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.profile-download-hero {
    animation: fadeInUp 1s ease 0.4s both;
}

.download-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.download-btn-hero:hover {
    background-color: #e55a00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--card-light);
}

body.dark-mode .about-section {
    background-color: var(--card-dark);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.download-btn-about,
.flipbook-btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.download-btn-about {
    background-color: var(--accent);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.flipbook-btn-about {
    background-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(0, 160, 227, 0.3);
}

.download-btn-about:hover {
    background-color: #e55a00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.flipbook-btn-about:hover {
    background-color: #0088cc;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 160, 227, 0.4);
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background-color: var(--light);
}

body.dark-mode .mission-section {
    background-color: #1a1a2e;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mission-card {
    background-color: var(--card-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.dark-mode .mission-card {
    background-color: var(--card-dark);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

body.dark-mode .mission-icon {
    background-color: var(--secondary);
}

.mission-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

body.dark-mode .mission-card h3 {
    color: var(--secondary);
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.6;
}

body.dark-mode .mission-card p {
    color: var(--text-dark);
}

/* ===== HOME PAGE RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .about-buttons {
        justify-content: center;
    }
    
    .download-btn-about,
    .flipbook-btn-about {
        flex: 0 1 calc(50% - 10px);
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 0 4rem;
        text-align: center;
        min-height: 60vh;
    }
    
    .hero h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .mission-section {
        padding: 60px 0;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mission-card {
        padding: 25px 20px;
    }
    
    .about-buttons {
        flex-direction: column;
    }
    
    .download-btn-about,
    .flipbook-btn-about {
        flex: 1;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .download-btn-hero {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .mission-card {
        padding: 20px 15px;
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .download-btn-about,
    .flipbook-btn-about {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}