/*
 * Styles for the Home (Landing) Page
 */

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions .btn {
    min-width: 240px;
}

/* General Section Titles */
.page-section > .container > h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Features Section ("For Whom") */
.features-section {
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.feature-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}
.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    height: 60px;
    display: inline-flex;
    align-items: center;
}
.feature-card h3 {
    font-size: 1.3rem;
}
.feature-card p {
    color: var(--text-color-light);
    line-height: 1.7;
}

/* Offerings Section ("What You'll Find") */
.offerings-section {
    background-color: var(--bg-color);
}
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch; /* Make cards same height */
}
.offering-card {
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}
.offering-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}
.offering-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.offering-card p {
    color: var(--text-color-light);
    line-height: 1.7;
    flex-grow: 1; /* Pushes button to bottom */
    margin-bottom: 2rem;
}
.offering-card .btn {
    margin-top: auto; /* Aligns button at the bottom */
}


/* About Snippet Section */
.about-snippet-section {
    background-color: var(--light-gray);
}
.about-snippet-section .about-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}
.about-snippet-section .about-image img {
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    width: 100%;
}
.about-snippet-section .about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.about-snippet-section .about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-color-light);
}
.about-snippet-section .btn {
    margin-top: 1rem;
}


/* Final CTA Section */
.cta-section p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-snippet-section .about-section-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        gap: 1rem;
    }
    .about-snippet-section .about-section-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-snippet-section .about-image {
        max-width: 300px;
        margin: 0 auto;
    }
}