/* =====================
   Hero Section Animations
   ===================== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.7), rgba(212, 175, 55, 0.7));
    animation: gradientShift 15s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* =====================
   Hero Content
   ===================== */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content .lead {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* =====================
   Hero Image Rotation
   ===================== */
.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.05);
}

.hero-image.active {
    opacity: 0.3;
    transform: scale(1);
}

/* =====================
   Smooth Animations
   ===================== */
.hero-content h1,
.hero-content .lead,
.hero-content p {
    animation: float 6s ease-in-out infinite;
}

.hero-content h1 {
    animation-delay: 0s;
}

.hero-content .lead {
    animation-delay: 0.2s;
}

.hero-content p {
    animation-delay: 0.4s;
}

/* =====================
   Responsive Adjustments
   ===================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .lead {
        font-size: 1.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
} 