/* Index Page Specific Styles */
@import url('variables.css');

/* Hero section styles */
.hero {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.hero h1[data-content-role="primary-headline"],
.hero h1[data-content-role="secondary-headline"] {
    font-size: var(--font-size-5xl);
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    text-align: center;
}

.hero .description {
    font-size: var(--font-size-lg);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.value-props-container {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    gap: 1.5rem;
}

.value-prop-box {
    flex: 1;
    background: linear-gradient(135deg, rgba(26, 40, 68, 0.8), rgba(13, 27, 42, 0.9));
    border: 1px solid rgba(64, 192, 240, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.value-prop-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(64, 192, 240, 0.6);
}

.value-prop-box h3 {
    font-size: var(--font-size-md);
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.value-prop-box p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.5;
}

.value-props-container {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    gap: 1.5rem;
}

.quote-container {
    margin: 3rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(26, 40, 68, 0.6), rgba(13, 27, 42, 0.7));
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
}

.quote-container blockquote {
    font-style: italic;
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.bottom-highlight {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(64, 192, 240, 0.2), rgba(30, 144, 255, 0.1));
    border-radius: 8px;
    text-align: center;
}

.bottom-highlight p {
    font-size: var(--font-size-md);
    color: var(--color-text);
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .value-props-container {
        flex-direction: column;
    }
    
    .hero h1[data-content-role="primary-headline"],
    .hero h1[data-content-role="secondary-headline"] {
        font-size: 2.5rem;
    }
    
    .quote-container blockquote {
        font-size: var(--font-size-base);
    }
    
    .bottom-highlight p {
        font-size: var(--font-size-sm);
    }
}
