/*
Theme Name: ayapmtcustom3
Theme URI: https://example.com/
Author: You
Author URI: https://example.com/
Description: Full Site Editing (block) theme for AYA Personal Training. All sections editable in the Site Editor.
Version: 1.0.0
Text Domain: aya-pt-fse
Requires at least: 6.3
Tested up to: 6.6
License: GPL-2.0-or-later
Tags: block-patterns, full-site-editing, custom-colors, custom-logo, custom-menu, responsive
*/

/* AYA Personal Training - Modern Landing Page Styles */

/* Professional flat color scheme */
:root {
    --primary-green: #7CB342;
    --accent-purple: #8E24AA;
    --neutral-dark: #2C2C2C;
    --neutral-medium: #5A5A5A;
    --neutral-light: #8A8A8A;
    --text-white: #FFFFFF;
    --bg-pure: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-section: #F5F7FA;
    --bg-dark: #1E1E1E;
    
    /* Only gradient for card frames */
    --gradient-frame: linear-gradient(135deg, #7CB342 0%, #8E24AA 100%);
    
    /* Professional shadows */
    --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-focus: 0 0 0 3px rgba(124, 179, 66, 0.1);
    
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--neutral-dark);
    background: var(--bg-pure);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--neutral-dark);
}

h1 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--neutral-medium);
    font-size: 1rem;
    line-height: 1.7;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(124, 179, 66, 0.2);
    box-shadow: var(--shadow-subtle);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo {
    width: 45px;
    height: 45px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.1);
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('04/abstractBGwhiter.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.title-highlight {
    color: var(--primary-green);
    position: relative;
}

.title-accent {
    color: var(--accent-purple);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 550px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--neutral-medium);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 200;
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--text-white);
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #6FA237;
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-purple);
    border: 2px solid var(--accent-purple);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--accent-purple);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    background: var(--bg-pure);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-strong);
    border: 3px solid transparent;
    background-clip: padding-box;
    transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-frame);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.floating-card:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
    box-shadow: var(--shadow-strong);
}

.card-image {
    width: 100%;
    max-width: 400px;
    border-radius: var(--border-radius);
    display: block;
    transition: var(--transition);
}

@keyframes float {
    0%, 100% { transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) translateY(-15px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--primary-green);
    border-bottom: 2px solid var(--primary-green);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.section-title.white {
    color: var(--text-white);
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--primary-green);
    margin: 0 auto;
    border-radius: 2px;
}

.title-underline.white {
    background: var(--text-white);
}

/* Why AYA Section */
.why-aya {
    padding: 8rem 0;
    background: var(--bg-section);
}

.aya-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.symbol-container {
    text-align: center;
    margin-bottom: 2rem;
}

.aya-symbol {
    width: 100px;
    height: 100px;
    transition: var(--transition);
}

.aya-symbol:hover {
    transform: scale(1.1) rotate(5deg);
}

.aya-description, .aya-mission {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.aya-quote {
    background: var(--primary-green);
    color: var(--text-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    font-style: italic;
    font-size: 1.2rem;
    margin: 2rem 0;
    position: relative;
    box-shadow: var(--shadow-medium);
    font-weight: 500;
    border-left: 5px solid var(--accent-purple);
}

.aya-quote::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.5;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.nature-bg {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.nature-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--bg-pure);
}

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

.service-card {
    background: var(--bg-pure);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 1px solid rgba(124, 179, 66, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--accent-purple);
}

.service-icon img {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neutral-dark);
    font-weight: 600;
}

.approach-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.approach-highlight {
    font-size: 1.1rem;
    line-height: 1.7;
    background: var(--bg-section);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-green);
    color: var(--neutral-medium);
    font-weight: 400;
}

/* About Merlijn Section */
.about-merlijn {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: var(--neutral-dark);
}

.about-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.parallax-image {
    width: 100%;
    height: 120%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
}

.about-merlijn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.about-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-subtitle {
    color: #FBBF24;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.story-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-paragraph {
    color: var(--text-white);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-highlight {
    color: var(--text-white);
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
    padding: 1.5rem;
    background: rgba(124, 179, 66, 0.2);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-green);
    margin: 2rem 0;
    font-weight: 600;
}

.trainer-photo {
    position: relative;
}

.trainer-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: var(--bg-section);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 1 !important;
    visibility: visible !important;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    cursor: pointer;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    min-height: 250px;
    background: var(--bg-pure);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.gallery-item.main-image {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-item.main-image {
        grid-column: span 1;
    }
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 8rem 0;
    background: var(--bg-pure);
    z-index: 10;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
}

.contact-content {
    position: relative;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-link:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateX(10px);
}

.contact-link.special {
    background: var(--gradient-secondary);
    color: var(--text-white);
}

.contact-link.special:hover {
    background: var(--gradient-primary);
}

.contact-icon {
    font-size: 1.2rem;
}

/* Form Styles */
.form {
    background: var(--bg-pure);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-strong);
    position: relative;
    z-index: 100;
    border: 2px solid rgba(124, 179, 66, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
    z-index: 101;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-pure);
    position: relative;
    z-index: 102;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.2);
    background: var(--bg-pure);
    z-index: 103;
}

.form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: var(--bg-pure);
    padding: 0 0.5rem;
    font-size: 0.875rem;
    color: var(--primary-green);
    font-weight: 600;
    z-index: 104;
    pointer-events: none;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
}

.footer-brand-text {
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    color: #E5E7EB;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--text-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: var(--transition);
        box-shadow: var(--shadow-soft);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .aya-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .gallery-item.main-image {
        grid-column: span 1;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .story-content,
    .form {
        padding: 2rem;
    }
}

/* Gallery always visible */
.gallery-item {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Professional gallery styles */
.gallery-text {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Professional contact styles */
.contact-link {
    font-weight: 500;
    border-left: 3px solid var(--primary-green);
}

.contact-link.special {
    border-left: 3px solid var(--accent-purple);
    font-weight: 600;
}


/* Footer enhancements */
.footer {
    background: var(--bg-dark);
    border-top: 3px solid var(--primary-green);
}

/* Cool Animations */

/* Floating geometric shapes background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><style>.cls-1{fill:none;stroke:%237CB342;stroke-width:1;opacity:0.1;}</style></defs><circle class="cls-1" cx="100" cy="100" r="50"/><circle class="cls-1" cx="300" cy="200" r="30"/><circle class="cls-1" cx="800" cy="150" r="40"/><circle class="cls-1" cx="600" cy="400" r="25"/><circle class="cls-1" cx="200" cy="600" r="35"/><circle class="cls-1" cx="900" cy="700" r="45"/></svg>') repeat;
    animation: float-shapes 20s ease-in-out infinite;
    z-index: 1;
}

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

/* Text reveal animation */
.hero-title,
.section-title {
    opacity: 1;
    transform: translateY(0);
    animation: reveal-text 1s ease-out;
}

.hero-title.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: reveal-text 1s ease-out 0.3s forwards;
}

.section-title.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: reveal-text 1s ease-out 0.2s forwards;
}

@keyframes reveal-text {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered fade-in for hero elements */
.hero-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle.animate-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.8s ease-out 0.6s forwards;
}

.hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons.animate-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.8s ease-out 0.9s forwards;
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Morphing service cards */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 179, 66, 0.1), transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    left: 100%;
}

/* Pulsing icon animation */
.service-icon {
    position: relative;
    animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.service-card:hover .service-icon {
    animation: none;
    transform: scale(1.1) rotate(10deg);
}

/* Liquid button effect */
.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-purple);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

/* Floating particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: float-particle 12s linear infinite;
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
    box-shadow: 0 0 10px rgba(124, 179, 66, 0.3);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; background: var(--primary-green); }
.particle:nth-child(2) { left: 20%; animation-delay: -2s; background: var(--accent-purple); }
.particle:nth-child(3) { left: 30%; animation-delay: -4s; background: var(--primary-green); }
.particle:nth-child(4) { left: 40%; animation-delay: -6s; background: var(--accent-purple); }
.particle:nth-child(5) { left: 50%; animation-delay: -8s; background: var(--primary-green); }
.particle:nth-child(6) { left: 60%; animation-delay: -10s; background: var(--accent-purple); }
.particle:nth-child(7) { left: 70%; animation-delay: -12s; background: var(--primary-green); }
.particle:nth-child(8) { left: 80%; animation-delay: -14s; background: var(--accent-purple); }
.particle:nth-child(9) { left: 90%; animation-delay: -16s; background: var(--primary-green); }

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
        transform: translateY(90vh) rotate(36deg) scale(1);
    }
    50% {
        transform: translateY(50vh) rotate(180deg) scale(1.2);
        opacity: 1;
    }
    90% {
        opacity: 0.8;
        transform: translateY(10vh) rotate(324deg) scale(0.8);
    }
    100% {
        transform: translateY(-100px) rotate(360deg) scale(0.3);
        opacity: 0;
    }
}

/* Gallery hover effects */
.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--primary-green) 100%);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 0.3;
}

/* Smooth scroll indicator */
.scroll-indicator {
    animation: bounce-glow 2s ease-in-out infinite;
}

@keyframes bounce-glow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
        filter: drop-shadow(0 0 5px rgba(124, 179, 66, 0.3));
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
        filter: drop-shadow(0 0 15px rgba(124, 179, 66, 0.6));
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
        filter: drop-shadow(0 0 10px rgba(124, 179, 66, 0.4));
    }
}

/* Ensure content visibility and interaction */
.hero-title,
.hero-subtitle,
.hero-buttons,
.section-title,
.service-card,
.nav-logo {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Ensure all interactive elements are clickable */
input,
textarea,
button,
.btn-primary,
.btn-secondary,
.nav-link,
.contact-link,
.gallery-item {
    position: relative;
    z-index: 150;
    pointer-events: auto;
}

/* Form field specific fixes */
.form input,
.form textarea,
.form button {
    position: relative;
    z-index: 200;
    pointer-events: auto;
    background: var(--bg-pure) !important;
}

/* Image loading fallbacks */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img:not([src]) {
    background: var(--bg-section);
    display: inline-block;
    min-height: 50px;
    min-width: 50px;
}

/* Service icons fallback */
.service-icon img {
    opacity: 1;
    display: block;
}

.service-icon img:not([src]),
.service-icon img[src=""] {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
}

/* Gallery images styling and fallback */
.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block !important;
    transition: var(--transition);
    opacity: 1 !important;
    visibility: visible !important;
}

.gallery-image:not([src]),
.gallery-image[src=""] {
    background: var(--bg-section);
    display: block;
    min-height: 250px;
    position: relative;
}

.gallery-image:not([src])::after,
.gallery-image[src=""]::after {
    content: '🏋️‍♂️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0.5;
}

/* Logo fallback */
.logo:not([src]),
.logo[src=""] {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
}

/* Performance optimizations */
.parallax-image {
    will-change: transform;
}

.floating-card {
    will-change: transform;
}

.gallery-image,
.trainer-image,
.nature-image {
    will-change: transform;
}

.service-icon,
.btn-primary,
.btn-secondary {
    will-change: transform;
}

/* Professional emphasis styles */
strong {
    color: var(--primary-green);
    font-weight: 600;
}

/* Service icon styles */
.service-icon img {
    filter: brightness(0) invert(1);
    width: 40px;
    height: 40px;
    transition: var(--transition);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.2rem, 7vw, 3.5rem);
    }
    
    .service-card {
        padding: 2.5rem 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
}