/* À la Folie - Styles globaux */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(20, 10, 30, 0.88) 50%,
        rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg,
        rgba(255,90,95,0.2) 0%,
        rgba(138,43,226,0.35) 25%,
        rgba(255,105,180,0.35) 50%,
        rgba(138,43,226,0.35) 75%,
        rgba(255,90,95,0.2) 100%) 1;
    box-shadow:
        0 4px 30px rgba(138, 43, 226, 0.08),
        0 8px 60px rgba(255, 90, 95, 0.05),
        inset 0 1px 0 rgba(255,255,255,0.1);
    z-index: 1001;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.logo:hover .flower {
    animation: spin 0.6s linear infinite;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: flex;
    gap: 0.05rem;
}

.logo-text span {
    display: inline-block;
}

/* Neon colors for each letter */
.neon-a1 { color: #ff4d6a; text-shadow: 0 0 10px #ff4d6a, 0 0 20px #ff4d6a; }
.neon-l1 { color: #ff8c42; text-shadow: 0 0 10px #ff8c42, 0 0 20px #ff8c42; }
.neon-a2 { color: #ffd93d; text-shadow: 0 0 10px #ffd93d, 0 0 20px #ffd93d; }
.neon-f { color: #6bcb77; text-shadow: 0 0 10px #6bcb77, 0 0 20px #6bcb77; }
.neon-l2 { color: #4dd4d4; text-shadow: 0 0 10px #4dd4d4, 0 0 20px #4dd4d4; }
.neon-i { color: #9b5de5; text-shadow: 0 0 10px #9b5de5, 0 0 20px #9b5de5; }
.neon-e { color: #ff4dc4; text-shadow: 0 0 10px #ff4dc4, 0 0 20px #ff4dc4; }

.flower {
    width: 28px;
    height: 28px;
    animation: spin 20s linear infinite;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
}

/* Underline animation */
.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: currentColor;
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover::after, .nav a.active::after {
    width: 100%;
}

/* Different colors for each menu item */
.nav a:nth-child(1):hover, .nav a:nth-child(1).active {
    color: #ff4dc4;
    text-shadow: 0 0 20px rgba(255, 77, 196, 0.8);
    transform: translateY(-3px);
}

.nav a:nth-child(1):hover::after {
    background: linear-gradient(90deg, #ff4dc4, #ff8ec4);
    box-shadow: 0 0 10px rgba(255, 77, 196, 0.6);
}

.nav a:nth-child(2):hover, .nav a:nth-child(2).active {
    color: #4dd4d4;
    text-shadow: 0 0 20px rgba(77, 212, 212, 0.8);
    transform: translateY(-3px);
}

.nav a:nth-child(2):hover::after {
    background: linear-gradient(90deg, #4dd4d4, #8ee4e4);
    box-shadow: 0 0 10px rgba(77, 212, 212, 0.6);
}

.nav a:nth-child(3):hover, .nav a:nth-child(3).active {
    color: #ff8c42;
    text-shadow: 0 0 20px rgba(255, 140, 66, 0.8);
    transform: translateY(-3px);
}

.nav a:nth-child(3):hover::after {
    background: linear-gradient(90deg, #ff8c42, #ffac72);
    box-shadow: 0 0 10px rgba(255, 140, 66, 0.6);
}

/* FOOTER */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    z-index: 1000;
}

.footer-left {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-center {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-whatsapp {
    color: #25D366;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
}

.footer-whatsapp:hover {
    transform: scale(1.05);
}

.footer-airbnb {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #ff385c, #ff5a75);
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 56, 92, 0.3);
}

.footer-airbnb:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 56, 92, 0.5);
}

.footer-airbnb img {
    width: 24px;
    height: 24px;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 3px rgba(255, 90, 95, 0.4),
            0 0 30px rgba(255, 90, 95, 0.7),
            0 0 60px rgba(255, 90, 95, 0.4);
    }
    50% {
        box-shadow:
            0 0 0 5px rgba(255, 90, 95, 0.5),
            0 0 50px rgba(255, 90, 95, 0.9),
            0 0 90px rgba(255, 90, 95, 0.5);
    }
}

@keyframes rotate-subtle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

/* HERO SECTION */
.hero {
    padding: 4rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,77,106,0.1) 0%, rgba(77,150,255,0.1) 100%);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* MOBILE */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 1rem;
        gap: 1rem;
    }

    .nav {
        flex-direction: row;
        gap: 1rem;
    }

    .nav a {
        font-size: 0.75rem;
    }

    .footer {
        height: 70px;
        padding: 0.8rem 1rem;
        flex-direction: row;
        justify-content: center;
    }

    .footer-left {
        display: none;
    }

    .footer-center {
        width: 100%;
        justify-content: center;
    }

    .footer-whatsapp {
        display: none;
    }

    .footer-airbnb {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        height: 65px;
        padding: 0.6rem 1rem;
    }

    .footer-airbnb {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
}
