/* hero.css - Hero Section Styles */

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6xl);
    padding: var(--space-7xl) var(--space-6xl);
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4xl);
    max-width: 1200px;
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--fs-7xl);
    font-weight: var(--fw-semibold);
    line-height: 88px;
    color: white;
    margin: 0;
}

.title-accent {
    color: var(--text-purple);
}

.hero-description {
    font-family: var(--font-primary);
    font-size: 28.8px;
    font-weight: var(--fw-light);
    line-height: 35.2px;
    color: var(--text-light-gray);
    max-width: 874px;
    margin: 0;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.hero-image {
    width: 100%;
    max-width: 919px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
}

/* Key Tech Hero */
.key-tech-hero {
    padding: var(--space-6xl) 258px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.key-tech-hero-container {
    max-width: 1280px;
    width: 100%;
    text-align: center;
}

.key-tech-hero-title {
    color: white;
    font-size: var(--fs-5xl);
    font-family: var(--font-heading);
    font-weight: var(--fw-semibold);
    line-height: 48px;
    margin: 0 0 var(--space-md) 0;
}

.key-tech-hero-subtitle {
    color: var(--text-light-gray);
    font-size: var(--fs-xl);
    font-family: var(--font-primary);
    font-weight: var(--fw-normal);
    line-height: 26px;
    margin: 0 auto;
    max-width: 600px;
}
