/* Import Google Fonts - playful, rounded fonts like the leaflet */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f6f0;
    font-weight: 400;
}

/* Color scheme based on leaflet */
:root {
    --primary-green: #7cb342;
    --dark-green: #558b2f;
    --accent-yellow: #ffc107;
    --accent-red: #e91e63;
    --cream-bg: #f8f6f0;
    --white: #ffffff;
    --dark-text: #2e2e2e;
    --light-gray: #f5f5f5;
}

/* Typography - playful and bold like the leaflet */
h1, h2, h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
}

h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    font-weight: 800;
    line-height: 1.2;
}

h3 {
    font-size: 1.8rem;
    color: var(--dark-green);
    font-weight: 700;
    line-height: 1.3;
}

h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
}

/* Header and Navigation - Modern, aligned styling */
header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--accent-yellow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
}

.logo img {
    height: 45px;
    vertical-align: middle;
    margin-right: 12px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    margin: 0;
}

.nav-links li:not(:last-child) a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
}

.nav-links li:not(:last-child) a:hover {
    color: var(--primary-green);
    background: rgba(124, 179, 66, 0.1);
    transform: translateY(-2px);
}

/* Book Now button in nav */
.nav-links .btn {
    font-size: 1.1rem;
    padding: 0.8rem 1.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.nav-links .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

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

/* Hero section - more dynamic and playful */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 0 6rem 0;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,193,7,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233,30,99,0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 4.5rem;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero h1 img {
    height: 80px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

/* Buttons - modern, playful styling */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #ffb300 100%);
    color: var(--dark-text);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffb300 0%, #ff8f00 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 3px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.4);
}

/* Content sections */
.section {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.section-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Cards - more modern and playful */
.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(124, 179, 66, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--primary-green), var(--accent-red));
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-green);
}

.card h3 {
    color: var(--primary-green);
    margin-bottom: 1.2rem;
    position: relative;
}

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

/* Bio page styles */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 2rem 0;
}

.bio-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(124, 179, 66, 0.1);
    position: relative;
    overflow: hidden;
}

.bio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--primary-green), var(--accent-red));
}

.bio-image-placeholder {
    margin-bottom: 2rem;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8e8e8 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary-green);
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
}

.bio-content h2 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-align: center;
}

.bio-text {
    line-height: 1.8;
}

.bio-text p {
    margin-bottom: 1.2rem;
}

.bio-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.bio-text li {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

/* Values section */
.values {
    background: var(--light-gray);
    padding: 3rem 0;
    margin: 3rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.value-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.value-item h4 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* FAQ styles */
.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    background: var(--primary-green);
    color: var(--white);
    padding: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--dark-green);
}

.faq-answer {
    padding: 1.5rem;
    background: var(--white);
}

/* Footer */
footer {
    background: var(--dark-green);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-btn {
    margin-top: 1.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .hero h1 {
        font-size: 3rem;
        flex-direction: column;
        gap: 15px;
    }
    
    .hero h1 img {
        height: 60px;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .image-placeholder {
        height: 250px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    .btn {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h1 img {
        height: 50px;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .btn {
        padding: 1rem 1.8rem;
        font-size: 1rem;
        letter-spacing: 0.3px;
    }
    
    .card {
        padding: 2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    p {
        font-size: 1.1rem;
    }
}

/* Accessibility */
.btn:focus,
.nav-links a:focus {
    outline: 2px solid var(--accent-yellow);
    outline-offset: 2px;
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.card,
.section-content {
    animation: fadeInUp 0.6s ease-out;
}