/* Hero Section Styles */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../images/picture01.jpg') no-repeat center center;
    background-size: cover;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -10px 20px -10px rgba(0,0,0,0.3);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #7B1E22, #A52A2A, #7B1E22);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: #D4AF37;
    transform: translateX(-50%);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.3rem;
    margin: 2rem auto;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    max-width: 85%;
    font-weight: 400;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #7B1E22 0%, #A52A2A 100%);
    color: white;
    padding: 0.85rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(123, 30, 34, 0.3);
    z-index: 1;
}

.btn-primary-hero:hover {
    background: linear-gradient(135deg, #A52A2A 0%, #8B2635 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(123, 30, 34, 0.4);
}

.btn-primary-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
}

.btn-primary-hero:hover::before {
    left: 100%;
}

.btn-outline-hero {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.85rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-hero:hover {
    background-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    color: #D4AF37;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-section {
        padding: 120px 0;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0;
    }
    
    .hero-title {
        font-size: 2.7rem;
    }
    
    .hero-title::after {
        width: 60px;
        height: 3px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin: 1.5rem auto;
        max-width: 95%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
    }
    
    .btn-primary-hero,
    .btn-outline-hero {
        width: 85%;
        margin-bottom: 0.75rem;
        text-align: center;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}