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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
}

/* Formes organiques flottantes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(32, 178, 170, 0.1), rgba(123, 104, 238, 0.1));
    border-radius: 50% 30% 70% 40%;
    animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 300px;
    height: 200px;
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 250px;
    height: 180px;
    top: 60%;
    left: 15%;
    animation-delay: -7s;
    border-radius: 70% 50% 30% 60%;
}

.shape:nth-child(3) {
    width: 180px;
    height: 220px;
    top: 80%;
    right: 10%;
    animation-delay: -14s;
    border-radius: 40% 60% 50% 70%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

.container {
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    padding: 2rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #20B2AA, #7B68EE, #00CED1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #20B2AA, #7B68EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image {
    position: relative;
    height: 500px;
    border-radius: 50% 20% 70% 30%;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(32, 178, 170, 0.2), rgba(123, 104, 238, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* Sections */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-asymmetric {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.section-asymmetric:nth-child(even) {
    grid-template-columns: 3fr 2fr;
}

.section-asymmetric:nth-child(even) .section-image {
    order: -1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #20B2AA;
    font-weight: 600;
}

.section-content {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.section-image {
    height: 350px;
    border-radius: 30% 70% 20% 80%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.section-image:hover img {
    transform: scale(1.05);
}

/* Glass Cards */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #20B2AA, #7B68EE, #00CED1);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(32, 178, 170, 0.3);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00CED1;
}

.card-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.link-highlight {
    color: #20B2AA;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.link-highlight::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #20B2AA, #7B68EE);
    transition: width 0.3s ease;
}

.link-highlight:hover {
    color: #00CED1;
}

.link-highlight:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-asymmetric {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-asymmetric:nth-child(even) .section-image {
        order: 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-image {
        height: 300px;
        margin-top: 2rem;
    }

    .section-image {
        height: 250px;
    }

    .shape {
        display: none;
    }
}