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

:root {
    --primary-color: #CD7F32;
    --secondary-color: #DAA520;
    --accent-color: #F4A460;
    --background-warm: #FDF5E6;
    --text-dark: #8B4513;
    --text-light: #D2691E;
    --glass-bg: rgba(255, 248, 220, 0.25);
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--background-warm) 0%, #FFEFD5 100%);
    overflow-x: hidden;
}

.flowing-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}

.wave-shape {
    position: absolute;
    border-radius: 50% 40% 60% 30%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    animation: morphFloat 20s infinite ease-in-out;
    pointer-events: none;
}

.wave-1 {
    width: 300px;
    height: 250px;
    top: 10%;
    right: -100px;
    animation-delay: 0s;
}

.wave-2 {
    width: 400px;
    height: 300px;
    bottom: 20%;
    left: -150px;
    animation-delay: 7s;
}

.wave-3 {
    width: 200px;
    height: 180px;
    top: 60%;
    right: 10%;
    animation-delay: 14s;
}

@keyframes morphFloat {
    0%, 100% {
        border-radius: 50% 40% 60% 30%;
        transform: translateY(0) rotate(0deg);
    }
    25% {
        border-radius: 40% 60% 30% 50%;
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        border-radius: 60% 30% 50% 40%;
        transform: translateY(10px) rotate(-3deg);
    }
    75% {
        border-radius: 30% 50% 40% 60%;
        transform: translateY(-10px) rotate(2deg);
    }
}

header {
    padding: 2rem 0;
    text-align: center;
    position: relative;
}

.logo {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
    font-family: 'Times New Roman', serif;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-section {
    padding: 4rem 0;
    position: relative;
}

.hero-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 30px 10px 30px 10px;
    padding: 3rem;
    border: 1px solid rgba(205, 127, 50, 0.2);
    box-shadow: 0 8px 32px rgba(205, 127, 50, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.hero-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(205, 127, 50, 0.15);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: normal;
    line-height: 1.3;
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: justify;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.destination-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 25px 5px 25px 5px;
    overflow: hidden;
    border: 1px solid rgba(205, 127, 50, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(205, 127, 50, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.destination-card:hover::before {
    opacity: 1;
}

.destination-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(205, 127, 50, 0.2);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover .card-image {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: normal;
}

.card-text {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.travel-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.travel-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
    transform: translateY(-1px);
}

.experience-section {
    margin: 5rem 0;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 40px 20px 40px 20px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.experience-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 45deg, transparent, rgba(205, 127, 50, 0.05), transparent, rgba(218, 165, 32, 0.05), transparent);
    animation: rotate 30s linear infinite;
    z-index: -1;
}

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

.experience-content {
    position: relative;
    z-index: 1;
}

.journey-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px 5px 20px 5px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(205, 127, 50, 0.2);
}

.cta-section {
    text-align: center;
    padding: 4rem 0;
    margin: 3rem 0;
}

.cta-content {
    background: linear-gradient(135deg, var(--glass-bg), rgba(240, 230, 210, 0.3));
    backdrop-filter: blur(15px);
    border-radius: 35px 15px 35px 15px;
    padding: 3rem;
    border: 2px solid rgba(205, 127, 50, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.world-link-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(244, 164, 96, 0.1);
    border-radius: 20px;
    border-left: 4px solid var(--accent-color);
    position: relative;
    z-index: 5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .hero-content,
    .experience-section,
    .card-content {
        padding: 1.5rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .wave-1, .wave-2, .wave-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
}