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

:root {
    --primary-color: #2E8B57;
    --secondary-color: #20B2AA;
    --accent-color: #4682B4;
    --earth-light: #F0F8FF;
    --earth-medium: #E0F6FF;
    --text-dark: #1B4332;
    --text-medium: #2D5A47;
    --green-olive: #3CB371;
    --shadow: 0 8px 32px rgba(46, 139, 87, 0.1);
    --shadow-hover: 0 12px 48px rgba(46, 139, 87, 0.15);
}

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

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

/* Header */
header {
    background: rgba(240, 248, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: var(--primary-color);
    clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
    opacity: 0.1;
    transform: rotate(15deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(15deg) translateY(0px); }
    50% { transform: rotate(15deg) translateY(-20px); }
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-style: italic;
}

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

.destination-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 30px 10px 30px 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(46, 139, 87, 0.05) 50%, transparent 60%);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.destination-card:hover::before {
    opacity: 1;
    animation: sweep 0.8s ease-in-out;
}

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

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 5px 20px 5px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Hexagonal Elements */
.hexagon-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.hexagon {
    width: 120px;
    height: 104px;
    background: var(--secondary-color);
    position: relative;
    margin: 52px 0;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 0.9rem;
}

.hexagon:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-color);
}

/* Services Section */
.services {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.3);
    margin: 2rem 0;
    border-radius: 50px;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.service-item {
    background: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 25px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Natural Link Integration */
.natural-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.natural-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* About Section */
.about {
    padding: 3rem 0;
    text-align: center;
}

.about h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--earth-light);
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .hexagon-container {
        gap: 1rem;
    }
    
    .hexagon {
        width: 80px;
        height: 69px;
        margin: 35px 0;
        font-size: 0.7rem;
    }
    
    .services h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .destination-card {
        padding: 1.5rem;
    }
}