/* Go Yunnan Travel - Custom Styles */

/* Typography */
body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: #1a3c2a;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
    color: #c47b3b;
    text-decoration: none;
}
a:hover {
    color: #a0622a;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Navigation */
.main-navigation a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #1a3c2a;
}
.main-navigation a:hover {
    color: #c47b3b;
}

/* Buttons */
.elementor-button, .wp-block-button__link, button, .button {
    background: #c47b3b !important;
    border: none;
    border-radius: 4px;
    padding: 12px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.elementor-button:hover, .wp-block-button__link:hover, button:hover, .button:hover {
    background: #1a3c2a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Hero section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/wp-content/uploads/2026/05/yunnan-hero.jpg') center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
}

/* Destination cards */
.destination-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.destination-card:hover {
    transform: translateY(-8px);
}

/* Section styling */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
}
.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c47b3b;
    margin: 12px auto 0;
}

/* Footer */
.site-footer {
    background: #1a3c2a;
    color: #ccc;
    padding: 40px 0;
}
.site-footer a {
    color: #c47b3b;
}
.site-footer h3 {
    color: #fff;
}

/* WhatsApp float button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float img {
    width: 36px;
    height: 36px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .hero-section { min-height: 350px; }
}
