/* 
    TrashGuy Rebuild: index.css
    Home Page Specific Styles
*/

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(44, 62, 80, 0.6), rgba(44, 62, 80, 0.6)), url('../assets/unnamed-7.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 5%;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Intro Section */
.intro-section {
    padding: 80px 5%;
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text h2 {
    color: var(--primary-orange);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Service Highlights */
.service-highlights {
    background-color: var(--white);
    padding: 80px 5%;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-card {
    background-color: var(--bg-cream);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.highlight-card h3 {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .intro-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }

    .intro-text h2 {
        font-size: 1.8rem;
    }
}
