/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 29, 40, 0.3) 0%, rgba(26, 29, 40, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    text-shadow: 3px 5px 15px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.5);
    padding-bottom: 1rem;
    border-bottom: 2px solid #d4af37;
    display: inline-block;
}

/* Features Section */
.features-section {
    padding: 4rem 2rem;
}

.features-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    font-size: 3rem;
    color: #d4af37;
}

.feature-item h3 {
    color: #2d2d2d;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .features-container {
        flex-wrap: wrap;
        gap: 2.5rem;
    }

    .feature-item {
        flex: 0 0 calc(50% - 1.25rem);
    }
}