/*
Template: Vibrant Tropical
Description: A bright and energetic theme with tropical greens, oranges, and natural elements
*/

/* Import Google Fonts for tropical theme */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Merriweather:wght@300;400;700&display=swap');

/* Vibrant Tropical Color Variables */
:root {
    --bg-primary: #f8fff8;
    --bg-secondary: #f0f9f0;
    --bg-tertiary: #e6f7e6;
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --accent-primary: #38a169;
    --accent-secondary: #d69e2e;
    --accent-tertiary: #ed8936;
    --accent-quaternary: #f6ad55;
    --border-color: #c6f6d5;
    --shadow-light: rgba(56, 161, 105, 0.1);
    --shadow-medium: rgba(56, 161, 105, 0.2);
    --success: #38a169;
    --warning: #d69e2e;
}

/* Vibrant Tropical Base Styles */
body.template-vibrant-tropical {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    color: var(--text-primary);
    line-height: 1.7;
}

/* Vibrant Tropical Header */
.template-vibrant-tropical .site-header {
    background: var(--bg-primary);
    border-bottom: 3px solid var(--accent-primary);
    box-shadow: 0 4px 20px var(--shadow-light);
    position: relative;
}

.template-vibrant-tropical .site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="%2338a169" opacity="0.1"/><circle cx="90" cy="20" r="1.5" fill="%23d69e2e" opacity="0.1"/><circle cx="30" cy="80" r="1" fill="%23ed8936" opacity="0.1"/><circle cx="70" cy="70" r="2.5" fill="%23f6ad55" opacity="0.1"/></svg>');
    pointer-events: none;
}

.template-vibrant-tropical .main-nav a {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    background: rgba(56, 161, 105, 0.1);
}

.template-vibrant-tropical .main-nav a:hover {
    color: white;
    background: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.3);
}

/* Vibrant Tropical Hero Section */
.template-vibrant-tropical .hero-section {
    background: linear-gradient(45deg, var(--accent-primary) 0%, var(--accent-tertiary) 50%, var(--accent-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.template-vibrant-tropical .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-30px, -30px) rotate(360deg); }
}

.template-vibrant-tropical .hero-content {
    position: relative;
    z-index: 2;
}

.template-vibrant-tropical .hero-content h1 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.template-vibrant-tropical .hero-content p {
    color: white;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Vibrant Tropical Cards */
.template-vibrant-tropical .card {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.template-vibrant-tropical .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 161, 105, 0.1), transparent);
    transition: left 0.6s ease;
}

.template-vibrant-tropical .card:hover::before {
    left: 100%;
}

.template-vibrant-tropical .card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 15px 35px var(--shadow-medium);
    border-color: var(--accent-primary);
}

.template-vibrant-tropical .card h3 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.4rem;
}

.template-vibrant-tropical .card h4 {
    color: var(--accent-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.template-vibrant-tropical .card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Vibrant Tropical Rating Stars */
.template-vibrant-tropical .stars {
    color: var(--accent-secondary);
    text-shadow: 0 0 10px rgba(214, 158, 46, 0.5);
}

/* Vibrant Tropical Topic Tags */
.template-vibrant-tropical .topic-tag {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.3);
    transition: all 0.3s ease;
}

.template-vibrant-tropical .topic-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.4);
}

/* Vibrant Tropical Buttons and Links */
.template-vibrant-tropical .nav-link,
.template-vibrant-tropical button {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-tertiary));
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.template-vibrant-tropical .nav-link:hover,
.template-vibrant-tropical button:hover {
    background: linear-gradient(45deg, var(--accent-tertiary), var(--accent-secondary));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(56, 161, 105, 0.6);
    color: white;
}

/* Vibrant Tropical Footer */
.template-vibrant-tropical .site-footer {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
    color: white;
    position: relative;
}

.template-vibrant-tropical .site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,50 Q50,20 80,50" stroke="rgba(255,255,255,0.1)" stroke-width="1" fill="none"/><path d="M10,70 Q50,40 90,70" stroke="rgba(255,255,255,0.1)" stroke-width="1" fill="none"/></svg>');
    pointer-events: none;
}

.template-vibrant-tropical .footer-section h3 {
    color: white;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.template-vibrant-tropical .footer-nav a {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
    position: relative;
}

.template-vibrant-tropical .footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-secondary);
    transition: width 0.3s ease;
}

.template-vibrant-tropical .footer-nav a:hover {
    color: white;
    transform: translateX(5px);
}

.template-vibrant-tropical .footer-nav a:hover::after {
    width: 100%;
}

/* Vibrant Tropical Dropdowns */
.template-vibrant-tropical .dropdown-group select {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 15px;
    font-weight: 500;
    padding: 0.75rem 1rem;
}

.template-vibrant-tropical .dropdown-group select:hover,
.template-vibrant-tropical .dropdown-group select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.2);
}

/* Vibrant Tropical Social Links */
.template-vibrant-tropical .social-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.template-vibrant-tropical .social-links a:hover {
    color: white;
    background: var(--accent-secondary);
    transform: scale(1.2) rotate(360deg);
}

/* Vibrant Tropical Breadcrumbs */
.template-vibrant-tropical .breadcrumbs {
    background: var(--bg-primary);
    border-radius: 25px;
    border-left: 5px solid var(--accent-primary);
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.template-vibrant-tropical .breadcrumbs a {
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: none;
    background: rgba(56, 161, 105, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.template-vibrant-tropical .breadcrumbs a:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

/* Vibrant Tropical Section Styling */
.template-vibrant-tropical .section {
    padding: 5rem 0;
}

.template-vibrant-tropical .section:nth-child(even) {
    background: var(--bg-secondary);
}

.template-vibrant-tropical .section h2 {
    font-family: 'Merriweather', serif;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    padding: 2rem 0;
    text-align: center;
}

.template-vibrant-tropical .section h2::before {
    content: '🌿';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% { transform: translateX(-50%) rotate(-5deg); }
    50% { transform: translateX(-50%) rotate(5deg); }
}

/* Vibrant Tropical Attributes */
.template-vibrant-tropical .attribute-category li::before {
    content: "🌱";
    font-size: 1.2rem;
}

/* Vibrant Tropical Contact Info */
.template-vibrant-tropical .contact-item a {
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: none;
    background: rgba(56, 161, 105, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.template-vibrant-tropical .contact-item a:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateX(5px);
}

/* Vibrant Tropical Work Hours */
.template-vibrant-tropical .work-day {
    padding: 0.5rem 0;
    border-bottom: 1px dotted var(--border-color);
    transition: background-color 0.3s ease;
}

.template-vibrant-tropical .work-day:hover {
    background: rgba(56, 161, 105, 0.05);
    border-radius: 10px;
    padding-left: 1rem;
}

/* Vibrant Tropical Mobile Responsive */
@media (max-width: 768px) {
    .template-vibrant-tropical .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .template-vibrant-tropical .card {
        margin-bottom: 2rem;
        border-radius: 15px;
    }
    
    .template-vibrant-tropical .nav-link,
    .template-vibrant-tropical button {
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 20px;
    }
    
    .template-vibrant-tropical .section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .template-vibrant-tropical .hero-content h1 {
        font-size: 2rem;
    }
    
    .template-vibrant-tropical .card h3 {
        font-size: 1.2rem;
    }
    
    .template-vibrant-tropical .topic-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}