/* Hero Section Styling */

.hero {
    position: relative;
    min-height: 500px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 64px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero {
        min-height: 550px;
        padding: 64px 32px;
    }
}

@media (min-width: 1024px) {
    .hero {
        grid-template-columns: 400px 1fr;
        gap: 80px;
        min-height: 600px;
    }
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: -110px;
    left: 0;
    width: 100%;
    height: 100%;
	background-image: url('/images/hero.png');
    z-index: -1;
    background-position: center;
	background-repeat: no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(35, 39, 42, 0.7);*/
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content:first-of-type {
    text-align: center;
}

.hero-content:last-of-type {
    text-align: center;
}

.hero-title {
    font-size: clamp(32px, 8vw, 64px);
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(18px, 4vw, 32px);
    color: var(--light);
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.hero-description {
    font-size: var(--body-size);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-cta {
        flex-direction: row;
        gap: 24px;
    }
}

.hero-cta .btn {
    min-width: 200px;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
}

.hero-cta .btn-primary {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.hero-cta .btn-primary:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(240, 114, 43, 0.4);
}

.hero-cta .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.hero-cta .btn-secondary:hover {
    background-color: var(--white);
    color: var(--accent);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}

/* Scroll Indicator (Optional) */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 24px;
    color: var(--white);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Responsive Mobile Hero */
@media (max-width: 480px) {
    .hero {
        min-height: 400px;
        padding: 48px 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 32px;
    }
    
    .hero-cta .btn {
        min-width: 160px;
        font-size: 14px;
        padding: 12px 24px;
    }
}
