/* Index page specific styles */

/* Hero section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/api/placeholder/1200/500') center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Features section */
.features {
    padding: 5rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-image {
    height: 200px;
    background-color: #f5f5f5;
}

.feature-content {
    padding: 1.5rem;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* How it works section */
.how-it-works {
    background-color: var(--secondary-color);
    color: white;
    padding: 5rem 0;
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    margin: 1rem;
}

.step-icon {
    background-color: var(--primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 30px;
    color: var(--secondary-color);
}

.step h3 {
    margin-bottom: 1rem;
}

/* Testimonials section */
.testimonials {
    padding: 5rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f5f5f5;
    margin-right: 1rem;
}

.author-details h4 {
    margin-bottom: 0.2rem;
}

.author-details p {
    color: #777;
    font-size: 0.9rem;
}

/* Download section */
.download {
    background-color: var(--primary-color);
    padding: 5rem 0;
    text-align: center;
}

.download h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.download p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--secondary-color);
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.app-btn:hover {
    background-color: var(--dark-color);
}

.app-btn span {
    margin-left: 10px;
}

/* Media queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
}
