/* Hero Section Styles */
.bg-gradient-royal {
    background: linear-gradient(135deg, #d8bfc8 0%, #e2e4f1 100%);
}

/* Typed.js text animation smoothing */
.typed-fade-out {
    opacity: 0;
    animation: fade-out 0.5s ease-out;
}

@keyframes fade-out {
    from { opacity: 1; }
    to { opacity: 0; }
}

.typed-cursor {
    opacity: 1;
    animation: blink 0.7s infinite;
    color: purple; /* Match your theme color */
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Add smooth transition to the typed text */
#typed-text {
    transition: all 0.3s ease;
}

/* Hero Image carousel animation */
@keyframes fadeCarousel {
    0%, 25% { opacity: 1; }
    33%, 58% { opacity: 0; }
    66%, 91% { opacity: 0; }
    100% { opacity: 1; }
}

.hero-carousel .hero-image {
    animation: fadeCarousel 15s infinite;
}

.hero-carousel .hero-image:nth-child(2) {
    animation-delay: 5s;
}

.hero-carousel .hero-image:nth-child(3) {
    animation-delay: 10s;
}

/* Floating animation for badge */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-float {
    animation: float 3s ease-in-out infinite;
}

/* Gradient text animation */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-text {
    background: linear-gradient(90deg, #FFD700 0%, #DAA520 50%, #FFD700 100%);
    background-size: 200% auto;
    animation: gradient 3s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Decorative elements */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    pointer-events: none;
}

.hero-decoration-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #FFD700 0%, transparent 70%);
}

.hero-decoration-2 {
    bottom: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8B0033 0%, transparent 70%);
}

/* Hero content transitions */
.hero-content * {
    transition: all 0.3s ease-in-out;
}

/* Responsive aspect ratio for hero images */
.aspect-4\/3 {
    aspect-ratio: 4/3;
}
