/* Hero Component Styles */

/* Hero section */
.hero-section {
    position: relative;
    min-height: 90vh;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
}
    
/* Dark overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
    
/* Content container */
.hero-content {
    position: relative;
    z-index: 2;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
    
/* Text content */
.hero-text {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
    
/* Text shadows */
.text-shadow-lg {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
    
.text-shadow-md {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
    
.text-shadow-sm {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
    
/* Credits style */
.hero-credits {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.7rem;
    opacity: 0.7;
    color: rgba(255,255,255,0.8);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    transition: opacity 0.3s ease;
}
    
.hero-credits a {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
}
    
.hero-credits:hover {
    opacity: 1;
}
