/* Standard Hero Section Variables */
:root {
    /* Hero Heights */
    --hero-height-desktop: 80vh;
    --hero-height-tablet: 50vh;
    --hero-height-mobile: 40vh;
    --hero-min-height: 500px;

    /* Hero Colors */
    --hero-text-color: white;
    --hero-text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    --hero-overlay-start: rgba(0,0,0,0.3);
    --hero-overlay-end: rgba(0,0,0,0.7);

    /* Hero Content */
    --hero-content-padding: 0 1rem;
    --hero-title-size-desktop: 2.5rem;
    --hero-title-size-tablet: 2rem;
    --hero-title-size-mobile: 1.75rem;
    --hero-lead-size-desktop: 1.25rem;
    --hero-lead-size-tablet: 1.1rem;
    --hero-lead-size-mobile: 1rem;
}

/* Standard Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section:hover .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.3));
}

.hero-section:hover .hero-overlay::before {
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.hero-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.hero-content .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
    justify-content: center;
    display: flex;
    align-items: center;
}

.hero-content .breadcrumb-item,
.hero-content .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.hero-content .breadcrumb-item a:hover {
    color: white;
}

.hero-content .breadcrumb-item.active {
    color: white;
}

.hero-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.hero-content .lead {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 50vh;
    }
    
    .hero-content {
        margin-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .lead {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 40vh;
    }
    
    .hero-content {
        margin-top: 60px;
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
}

/* Animation Styles */
.hero-section [data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-section [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.hero-section.loading {
    position: relative;
}

.hero-section.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: loading 1.5s infinite;
    z-index: 4;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-item.active {
    color: #ffffff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 