@import url('https://fonts.googleapis.com/css2?family=Sofadi+One&display=swap');
/* Variables CSS */
:root {
    --primary-green: #0a4b2a;
    --secondary-green: #0d7a3d;
    --accent-green: #11914b;
    --light-green: #1abc9c;
    --text-light: #f0fdf4;
    --gold: #ffc107;
    --gold-light: #ffeb3b;
    --gold-dark: #ff9800;
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--text-light);
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: none;
    padding: 2rem 1rem;
    padding-bottom: 200px; /* More space since footer is commented out */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 60, 0, 0.75), rgba(0, 40, 0, 0.75));
    z-index: 0;
}

/* Logo Section */
.logo-section {
    position: relative;
}

/* Logo 3D Container */
.logo-3d-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
    perspective: 1000px;
}

.logo-3d-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotateLogo 10s ease-in-out infinite;
    border-radius: 50%; /* Make it circular */
    overflow: hidden; /* Hide square corners */
}

@keyframes rotateLogo {
    0% { transform: rotateY(0deg); }
    25% { transform: rotateY(45deg); }
    50% { transform: rotateY(0deg); }
    75% { transform: rotateY(-45deg); }
    100% { transform: rotateY(0deg); }
}

.logo-3d-front {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
}

.logo-3d-image {
    width: 250px;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Efectos 3D */
.logo-3d-depth {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.logo-3d-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-green) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.logo-3d-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-green);
    animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.logo-3d-shine-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
}

.logo-3d-shine {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(240, 253, 244, 0.4) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-3d-sparkle-1,
.logo-3d-sparkle-2 {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--text-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
}

.logo-3d-sparkle-1 {
    top: 20%;
    left: 30%;
    animation: sparkle1 2s infinite;
}

.logo-3d-sparkle-2 {
    top: 70%;
    right: 25%;
    animation: sparkle2 2.5s infinite;
}

@keyframes sparkle1 {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes sparkle2 {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.logo-3d-reflection {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 60%;
    height: 30%;
    background: linear-gradient(135deg, rgba(240, 253, 244, 0.3) 0%, transparent 50%);
    border-radius: 50%;
    transform: rotate(-20deg);
}

.logo-3d-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    filter: blur(10px);
}

/* Content Section */
.content-section {
    max-width: 1000px;
    width: 100%;
}

.title-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.title-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.title-particles::before,
.title-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 
        0 0 10px var(--gold),
        20px 30px 0 var(--light-green),
        40px 70px 0 var(--accent-green),
        60px 40px 0 var(--gold-light),
        80px 80px 0 var(--gold-dark),
        100px 20px 0 var(--light-green),
        120px 60px 0 var(--accent-green),
        140px 90px 0 var(--gold),
        160px 10px 0 var(--gold-light),
        180px 50px 0 var(--light-green);
    animation: particles-float 8s ease-in-out infinite;
}

.title-particles::after {
    animation-delay: 4s;
    transform: translateX(50%);
}

@keyframes particles-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 1;
    }
}

/* Cool particles effect for footer */
.title-particles-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

.title-particle-item {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.title-particle-item::before,
.title-particle-item::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow:
        50px 60px 0 2px var(--gold),
        100px 120px 0 1px var(--light-green),
        150px 80px 0 3px var(--accent-green),
        200px 150px 0 1px var(--gold-light),
        250px 40px 0 2px var(--gold-dark),
        300px 100px 0 1px var(--light-green),
        350px 160px 0 2px var(--accent-green),
        400px 70px 0 1px var(--gold),
        450px 130px 0 3px var(--gold-light),
        500px 50px 0 1px var(--light-green),
        550px 180px 0 2px var(--accent-green),
        600px 90px 0 1px var(--gold),
        650px 140px 0 2px var(--gold-dark),
        700px 60px 0 1px var(--light-green),
        750px 170px 0 3px var(--accent-green),
        800px 110px 0 1px var(--gold-light),
        850px 30px 0 2px var(--gold),
        900px 160px 0 1px var(--light-green),
        950px 80px 0 2px var(--accent-green),
        1000px 120px 0 1px var(--gold);
    animation: particles-float 12s ease-in-out infinite;
}

.title-particle-item::after {
    animation-delay: 6s;
    transform: translateX(50%);
    box-shadow:
        30px 90px 0 1px var(--accent-green),
        80px 140px 0 2px var(--gold),
        130px 50px 0 1px var(--light-green),
        180px 160px 0 3px var(--gold-dark),
        230px 70px 0 1px var(--accent-green),
        280px 130px 0 2px var(--gold-light),
        330px 40px 0 1px var(--gold),
        380px 150px 0 2px var(--light-green),
        430px 60px 0 1px var(--accent-green),
        480px 170px 0 3px var(--gold),
        530px 80px 0 1px var(--gold-dark),
        580px 140px 0 2px var(--light-green),
        630px 50px 0 1px var(--accent-green),
        680px 160px 0 2px var(--gold-light),
        730px 70px 0 1px var(--gold),
        780px 130px 0 3px var(--light-green),
        830px 40px 0 1px var(--accent-green),
        880px 150px 0 2px var(--gold),
        930px 60px 0 1px var(--gold-dark),
        980px 170px 0 2px var(--accent-green);
}

.welcome-text {
    font-family: 'Sofadi One', cursive;
    font-size: 2rem; /* Increased size for the new font */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    background: linear-gradient(
        45deg,
        var(--gold-light) 0%,
        var(--gold) 25%,
        var(--gold-dark) 50%,
        #ff6b35 75%,
        var(--gold-light) 100%
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: 
        rainbow-wave 4s ease-in-out infinite,
        float-3d 6s ease-in-out infinite,
        glow-pulse 3s ease-in-out infinite;
    text-shadow: 
        0 0 8px rgba(255, 193, 7, 0.6),
        0 0 16px rgba(255, 193, 7, 0.4),
        0 0 24px rgba(255, 193, 7, 0.2);
    transform-style: preserve-3d;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes welcome-gradient {
    0% {
        background-position: 0% 50%;
        background: linear-gradient(
            45deg,
            var(--gold-light) 0%,
            var(--gold) 25%,
            var(--gold-dark) 50%,
            #ff6b35 75%,
            var(--gold-light) 100%
        );
    }
    50% {
        background-position: 100% 50%;
        background: linear-gradient(
            45deg,
            var(--gold-light) 0%,
            var(--gold) 25%,
            var(--gold-dark) 50%,
            #ff6b35 75%,
            var(--gold-light) 100%
        );
    }
    100% {
        background-position: 0% 50%;
        background: linear-gradient(
            45deg,
            var(--gold-light) 0%,
            var(--gold) 25%,
            var(--gold-dark) 50%,
            #ff6b35 75%,
            var(--gold-light) 100%
        );
    }
}

.main-title {
    font-size: clamp(1.5rem, 4.2vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 2.5px);
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.25rem, 0.8vw, 0.7rem);
    perspective: 1000px;
    width: 100%;
    max-width: 100vw;
    position: relative;
    z-index: 2;
}

.title-word {
    display: inline-block;
    position: relative;
    background: linear-gradient(
        45deg,
        var(--gold-light) 0%,
        var(--gold) 25%,
        var(--gold-dark) 50%,
        #ff6b35 75%,
        var(--gold-light) 100%
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: 
        rainbow-wave 4s ease-in-out infinite,
        float-3d 6s ease-in-out infinite,
        glow-pulse 3s ease-in-out infinite;
    text-shadow: 
        0 0 8px rgba(255, 193, 7, 0.6),
        0 0 16px rgba(255, 193, 7, 0.4),
        0 0 24px rgba(255, 193, 7, 0.2);
    transform-style: preserve-3d;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.title-word:nth-child(1) { animation-delay: 0s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.4s; }
.title-word:nth-child(4) { animation-delay: 0.6s; }
.title-word:nth-child(5) { animation-delay: 0.8s; }
.title-word:nth-child(6) { animation-delay: 1s; }
.title-word:nth-child(7) { animation-delay: 1.2s; }
.title-word:nth-child(8) { animation-delay: 1.4s; }
.title-word:nth-child(9) { animation-delay: 1.6s; }

.title-word::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-sweep 3s ease-in-out infinite;
    animation-delay: inherit;
}

.title-word::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(
        45deg,
        var(--accent-green),
        var(--light-green),
        var(--gold),
        var(--gold-light)
    );
    background-size: 400% 400%;
    border-radius: 6px;
    z-index: -1;
    opacity: 0;
    filter: blur(6px);
    animation: border-glow 4s ease-in-out infinite;
    animation-delay: inherit;
}

.title-word:hover {
    transform: 
        translateY(-5px) 
        rotateX(15deg) 
        rotateY(5deg) 
        scale(1.05);
    text-shadow: 
        0 0 12px rgba(255, 193, 7, 0.9),
        0 0 24px rgba(255, 193, 7, 0.7),
        0 0 36px rgba(255, 193, 7, 0.5),
        0 8px 16px rgba(0, 0, 0, 0.3);
}

.title-word:hover::after {
    opacity: 0.4;
    filter: blur(8px);
}

/* Animaciones súper cool */
@keyframes rainbow-wave {
    0% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg) brightness(1.2);
    }
    25% { 
        background-position: 100% 50%;
        filter: hue-rotate(90deg) brightness(1.4);
    }
    50% { 
        background-position: 200% 50%;
        filter: hue-rotate(180deg) brightness(1.6);
    }
    75% { 
        background-position: 300% 50%;
        filter: hue-rotate(270deg) brightness(1.4);
    }
    100% { 
        background-position: 400% 50%;
        filter: hue-rotate(360deg) brightness(1.2);
    }
}

@keyframes float-3d {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
    25% { 
        transform: translateY(-8px) rotateX(5deg) rotateY(2deg);
    }
    50% { 
        transform: translateY(-12px) rotateX(0deg) rotateY(-2deg);
    }
    75% { 
        transform: translateY(-8px) rotateX(-5deg) rotateY(2deg);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 
            0 0 8px rgba(255, 193, 7, 0.6),
            0 0 16px rgba(255, 193, 7, 0.4),
            0 0 24px rgba(255, 193, 7, 0.2);
    }
    50% {
        text-shadow: 
            0 0 12px rgba(255, 193, 7, 0.8),
            0 0 24px rgba(255, 193, 7, 0.6),
            0 0 36px rgba(255, 193, 7, 0.4),
            0 0 48px rgba(26, 188, 156, 0.2);
    }
}

@keyframes shine-sweep {
    0% { 
        transform: translateX(-100%);
        opacity: 0;
    }
    50% { 
        opacity: 1;
    }
    100% { 
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes border-glow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.15;
    }
}

.subtitle {
    font-family: 'Sofadi One', cursive;
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section */
.cta-section {
    margin-top: 1rem;
}

.coming-soon {
    font-family: 'Sofadi One', cursive;
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--accent-green), var(--light-green));
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 2px solid var(--accent-green);
    box-shadow: 0 8px 25px rgba(17, 145, 75, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: coming-soon-pulse 3s infinite;
}

.coming-soon:hover {
    background: linear-gradient(45deg, var(--light-green), var(--accent-green));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(17, 145, 75, 0.6);
}

@keyframes coming-soon-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(17, 145, 75, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(17, 145, 75, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(17, 145, 75, 0.4);
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--accent-green), var(--light-green));
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(17, 145, 75, 0.4);
    position: relative;
    overflow: hidden;
    animation: button-pulse 2s infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(17, 145, 75, 0.6);
}

@keyframes button-pulse {
    0% { box-shadow: 0 8px 25px rgba(17, 145, 75, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(17, 145, 75, 0.6), 0 0 0 10px rgba(17, 145, 75, 0.1); }
    100% { box-shadow: 0 8px 25px rgba(17, 145, 75, 0.4); }
}

/* Spinner */
.spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 4px solid transparent;
    border-top: 4px solid var(--accent-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 9999;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Footer Navigation */
.footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    z-index: 1000;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-item img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 1rem 0.5rem;
        padding-bottom: 140px;
    }
    
    .hero-container {
        gap: 1.5rem;
    }
    
    .logo-3d-container {
        width: 200px;
        height: 200px;
    }
    
    .logo-3d-image {
        width: 180px;
        height: 180px;
    }
    
    .welcome-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .main-title {
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
        gap: clamp(0.2rem, 0.8vw, 0.5rem);
        font-size: clamp(1.2rem, 3.5vw, 2.2rem);
    }
    
    .title-word {
        text-shadow: 
            0 0 6px rgba(255, 193, 7, 0.6),
            0 0 12px rgba(255, 193, 7, 0.4),
            0 0 18px rgba(255, 193, 7, 0.2);
    }
    
    .title-word:hover {
        transform: 
            translateY(-3px) 
            rotateX(10deg) 
            scale(1.03);
    }
    
    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .footer-nav {
        gap: 0.5rem;
        padding: 0.8rem;
    }
    
    .nav-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .nav-item img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-bottom: 160px;
    }
    
    .logo-3d-container {
        width: 160px;
        height: 160px;
    }
    
    .logo-3d-image {
        width: 140px;
        height: 140px;
    }
    
    .welcome-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .main-title {
        margin-bottom: 1rem;
        gap: clamp(0.15rem, 0.6vw, 0.3rem);
        font-size: clamp(1rem, 3vw, 1.8rem);
    }
    
    .title-word {
        text-shadow: 
            0 0 4px rgba(255, 193, 7, 0.6),
            0 0 8px rgba(255, 193, 7, 0.4),
            0 0 12px rgba(255, 193, 7, 0.2);
    }
    
    .title-word:hover {
        transform: 
            translateY(-2px) 
            scale(1.02);
    }
    
    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        padding: 0.6rem;
    }
    
    .nav-item {
        width: 100%;
        max-width: 200px;
        justify-content: center;
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        padding: 0.5rem;
        padding-bottom: 100px;
    }
    
    .hero-container {
        flex-direction: row;
        gap: 2rem;
        align-items: center;
    }
    
    .logo-section {
        flex-shrink: 0;
    }
    
    .logo-3d-container {
        width: 120px;
        height: 120px;
    }
    
    .logo-3d-image {
        width: 100px;
        height: 100px;
    }
    
    .content-section {
        text-align: left;
    }
    
    .main-title span {
        text-align: left;
    }
    
    .welcome-text {
        margin-bottom: 0.5rem;
    }
    
    .main-title {
        margin-bottom: 1rem;
    }
    
    .subtitle {
        margin-bottom: 1rem;
    }
}

/* High resolution displays */
@media (min-width: 1200px) {
    .hero-container {
        gap: 3rem;
    }
    
    .logo-3d-container {
        width: 320px;
        height: 320px;
    }
    
    .logo-3d-image {
        width: 290px;
        height: 290px;
    }
    
    .welcome-text {
        font-size: 1.4rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 1.2rem 3rem;
        font-size: 1.2rem;
    }
    
    .main-title {
        font-size: clamp(2.2rem, 5vw, 3.8rem);
        gap: clamp(0.35rem, 1vw, 0.9rem);
    }
    
    .title-word {
        text-shadow: 
            0 0 10px rgba(255, 193, 7, 0.7),
            0 0 20px rgba(255, 193, 7, 0.5),
            0 0 30px rgba(255, 193, 7, 0.3),
            0 0 40px rgba(26, 188, 156, 0.2);
    }
    
    .title-word:hover {
        transform: 
            translateY(-8px) 
            rotateX(20deg) 
            rotateY(8deg) 
            scale(1.08);
        text-shadow: 
            0 0 15px rgba(255, 193, 7, 0.9),
            0 0 30px rgba(255, 193, 7, 0.7),
            0 0 45px rgba(255, 193, 7, 0.5),
            0 0 60px rgba(26, 188, 156, 0.3),
            0 12px 24px rgba(0, 0, 0, 0.4);
    }
}
/* Custom styles for smaller title */
.smaller-title {
    font-size: clamp(1.2rem, 3.5vw, 2.5rem); /* Slightly smaller than main-title */
    letter-spacing: clamp(0.5px, 0.2vw, 2px); /* Slightly smaller letter spacing */
}
