:root {
    --primary: #1a365d;
    --secondary: #2d5aa0;
    --accent: #4a7bc8;
    --light: #f0f4f8;
    --dark: #0f1a2d;
    --eu-blue: #003399;
    --eu-yellow: #FFEB3B; /* Amarillo pollito más brillante */
    --chick-yellow: #FFEB3B; /* Amarillo pollito puro para el título */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* HEADER RESPONSIVE */
header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    z-index: 1001;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}

.logo span {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

nav ul {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    padding: 5px 0;
    position: relative;
}

nav ul li a:hover {
    color: var(--accent);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* HERO SECTION CON IMAGEN Y TEXTO */
.hero {
    background-color: var(--eu-blue);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
    padding: 4rem 0;
}

/* Campo de estrellas */
.star-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star-field .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Estrellas individuales con amarillo pollito */
.star {
    position: absolute;
    background-color: var(--eu-yellow);
    border-radius: 50%;
    animation: starFall linear infinite;
    box-shadow: 0 0 5px var(--eu-yellow);
}

/* Animación de caída de estrellas */
@keyframes starFall {
    0% {
        transform: translateY(-100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Efecto de brillo intermitente para algunas estrellas */
@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.star:nth-child(3n) {
    animation-name: starFall, starTwinkle;
    animation-duration: 20s, 3s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
}

.star:nth-child(5n) {
    box-shadow: 0 0 10px var(--eu-yellow), 0 0 20px var(--eu-yellow);
}

/* Efecto de desenfoque para algunas estrellas */
.star:nth-child(7n) {
    filter: blur(0.5px);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 153, 0.8); /* Azul semi-transparente */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Grid para imagen y texto */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* TÍTULO EN AMARILLO POLLITO */
.hero-text h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--chick-yellow); /* Amarillo pollito sólido */
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

/* Efecto de brillo en el título */
.hero-text h1 {
    position: relative;
    display: inline-block;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--chick-yellow), 
        transparent);
    border-radius: 2px;
}

.hero-text p {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Contenedor de imagen */
.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
    height: 380px;
    border: 3px solid var(--eu-yellow);
}

.image-container:hover {
    transform: translateY(-5px) scale(1.02);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: imageFadeIn 1s ease forwards 0.5s;
}

@keyframes imageFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-container:hover .hero-main-image {
    transform: scale(1.1);
}

/* Overlay de la imagen SIN FONDO NEGRO */
.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95); /* Fondo blanco semi-transparente */
    padding: 1.5rem;
    color: var(--eu-blue);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--eu-yellow);
}

.overlay-content {
    text-align: center;
}

.overlay-content i {
    font-size: 2.5rem;
    color: var(--eu-yellow);
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.overlay-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--eu-blue);
}

.overlay-content p {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* BOTONES RESPONSIVE */
.btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
}

.btn::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.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: #3a6bb8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: var(--eu-yellow);
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-vacancies {
    background-color: var(--primary);
}

.btn-vacancies:hover {
    background-color: #0f1a2d;
}

.btn-apply {
    background-color: #28a745;
}

.btn-apply:hover {
    background-color: #218838;
}

/* SECCIONES GENERALES */
section {
    padding: clamp(2rem, 5vw, 4rem) 0;
}

.section-title {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent);
}

/* TARJETAS DE PAÍSES MEJORADAS */
.continent-section {
    margin-bottom: 3rem;
}

.continent-title {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
    text-align: center;
}

.continent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 10px;
}

.country-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eaeaea;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: var(--eu-yellow);
}

.country-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    filter: brightness(0.95);
    transition: transform 0.3s ease;
}

.country-card:hover .country-image {
    transform: scale(1.05);
}

.country-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.country-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    text-align: center;
    font-weight: 600;
}

.country-description {
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #555;
    font-size: 0.9rem;
    text-align: center;
    flex-grow: 1;
}

.country-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: auto;
}

.country-buttons .btn {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0.8rem;
    font-size: 0.9rem;
}

/* SOBRE NOSOTROS */
.about {
    background-color: var(--light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 3px solid var(--eu-yellow);
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.1);
}

/* MISION, VISION, VALORES */
.mission, .vision, .values {
    text-align: center;
}

.mission-content, .vision-content, .values-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-icon, .vision-icon {
    font-size: clamp(3rem, 8vw, 4rem);
    color: var(--secondary);
    margin-bottom: 2rem;
}

.mission-text, .vision-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.mission-highlight, .vision-highlight {
    color: var(--primary);
    font-weight: 600;
    background: linear-gradient(120deg, var(--light) 0%, transparent 100%);
    padding: 2px 6px;
    border-radius: 3px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: var(--eu-yellow);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.value-description {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* POR QUE NOSOTROS */
.why-us {
    background-color: var(--light);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: white;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: var(--eu-yellow);
}

.feature-icon {
    font-size: clamp(2.5rem, 5vw, 3rem);
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CONTACTO RESPONSIVE */
.contact-section {
    background-color: var(--light);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-details {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--eu-yellow);
}

.contact-details h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    background-color: var(--secondary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-text h4 {
    margin-bottom: 0.3rem;
    color: var(--primary);
    font-size: 1rem;
}

.contact-text p {
    color: #555;
    font-size: 0.95rem;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.contact-buttons .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
    margin: 5px 0;
}

.map-container {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 400px;
    border: 2px solid var(--eu-yellow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FOOTER */
footer {
    background-color: var(--dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links {
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid var(--eu-yellow);
}

.social-links a:hover {
    color: var(--eu-yellow);
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

footer p {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* BOTÓN FLOTANTE WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--eu-yellow);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* MEDIA QUERIES PARA DISPOSITIVOS MÓVILES */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 3rem;
    }
    
    .image-container {
        height: 350px;
    }
    
    .continent-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .map-container {
        height: 350px;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    /* Ajustar tamaño de título en tablet */
    .hero-text h1 {
        font-size: clamp(2rem, 4.5vw, 2.8rem);
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    nav ul.show {
        right: 0;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 20px;
        font-size: 1.1rem;
    }
    
    nav ul li a::after {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .image-container {
        height: 300px;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .image-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 1rem;
    }
    
    .overlay-content h3 {
        font-size: 1.5rem;
    }
    
    /* Ajustar tamaño de título en móvil */
    .hero-text h1 {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        line-height: 1.2;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        width: 100%;
    }
    
    .values-grid,
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .contact-buttons .btn {
        min-width: 100%;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 30px;
    }
    
    .hero {
        min-height: auto;
        margin-top: 60px;
        padding: 2rem 0;
    }
    
    /* Título más grande y legible en móvil pequeño */
    .hero-text h1 {
        font-size: 1.9rem;
        font-weight: 800;
        margin-bottom: 1rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .image-container {
        height: 250px;
    }
    
    .overlay-content i {
        font-size: 2rem;
    }
    
    .overlay-content h3 {
        font-size: 1.3rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .continent-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .country-card {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .contact-details {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-icon {
        margin-bottom: 0.5rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    /* Reducir cantidad de estrellas en móviles para mejor rendimiento */
    .star-field .layer:nth-child(1) .star:nth-child(n+40),
    .star-field .layer:nth-child(2) .star:nth-child(n+25),
    .star-field .layer:nth-child(3) .star:nth-child(n+15) {
        display: none;
    }
}

/* ANIMACIONES ADICIONALES */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.country-card,
.value-card,
.feature-card {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.country-card:nth-child(1) { animation-delay: 0.1s; }
.country-card:nth-child(2) { animation-delay: 0.2s; }
.country-card:nth-child(3) { animation-delay: 0.3s; }
.country-card:nth-child(4) { animation-delay: 0.4s; }
.country-card:nth-child(5) { animation-delay: 0.5s; }
.country-card:nth-child(6) { animation-delay: 0.6s; }

/* MEJORAS DE ACCESIBILIDAD */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .star {
        animation: none !important;
    }
    
    .image-container {
        transform: none !important;
    }
}

/* MEJORAS PARA TABLETS */
@media (min-width: 769px) and (max-width: 1024px) {
    .continent-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    }
    
    .values-grid,
    .features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

/* Optimización de rendimiento para la lluvia de estrellas */
@media (prefers-contrast: high) {
    .star {
        background-color: #FFD700;
    }
}

/* Animación sutil para el título */
@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 0 2px 15px rgba(255, 235, 59, 0.3), 
                     0 0 20px rgba(255, 235, 59, 0.2);
    }
}

.hero-text h1 {
    animation: titleGlow 3s ease-in-out infinite;
}