/* Local Styles for Home Bundle */

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background-image: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.6)), url('../assets/Stock Image 19.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-btn {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--col-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid white;
}

.hero-btn:hover {
    background: transparent;
    color: white;
}

/* Intro Section */
.intro {
    padding: 6rem 0;
    text-align: center;
    background: var(--col-white);
}

.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.card {
    padding: 2rem;
    background: var(--col-bg-warm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-icon {
    font-size: 2rem;
    color: var(--col-accent);
    margin-bottom: 1rem;
    display: block;
}

/* Founder Teaser */
.founder-section {
    padding: 6rem 0;
    background: var(--col-bg-warm);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--col-accent);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .founder-grid { grid-template-columns: 1fr; }
}