
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #C7AD90 0%, #9B8570 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveGrid 20s linear infinite;
    }

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    text-align: center;
    color: #F9F6F1;
    z-index: 2;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    color: white !important;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 8px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.2);
}

.hero p {
    color: white !important;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator::after {
    content: '↓';
    color: #F9F6F1;
    font-size: 2rem;
}

section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, #C7AD90, #9B8570);
    }

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

    .timeline-item:nth-child(1) {
        animation-delay: 0.2s;
    }

    .timeline-item:nth-child(2) {
        animation-delay: 0.4s;
    }

    .timeline-item:nth-child(3) {
        animation-delay: 0.6s;
    }

    .timeline-item:nth-child(4) {
        animation-delay: 0.8s;
    }

    .timeline-item:nth-child(5) {
        animation-delay: 1s;
    }

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.timeline-content {
    width: 45%;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(199, 173, 144, 0.15);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #F0E5D9;
}

    .timeline-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(199, 173, 144, 0.25);
    }

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 300;
    color: #9B8570;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: #C7AD90;
    margin-bottom: 1rem;
    font-weight: 400;
}

.timeline-content p {
    line-height: 1.9;
    color: #58595B;
    font-weight: 300;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #C7AD90;
    border: 4px solid #F9F6F1;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #F0E5D9;
    z-index: 2;
}

.philosophy {
    background: linear-gradient(135deg, #F0E5D9 0%, #E8DDD0 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    margin: 4rem 0;
}

    .philosophy h2 {
        text-align: center;
        font-size: 2.5rem;
        color: #9B8570;
        margin-bottom: 3rem;
        font-weight: 300;
        letter-spacing: 3px;
    }

.principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.principle-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #F0E5D9;
}

    .principle-card:hover {
        border-color: #C7AD90;
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(199, 173, 144, 0.2);
    }

.principle-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C7AD90, #9B8570);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.principle-card h4 {
    color: #9B8570;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.principle-card p {
    color: #58595B;
    font-weight: 300;
    line-height: 1.6;
}

.modern-pilates {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #C7AD90 0%, #9B8570 100%);
    color: #F9F6F1;
    border-radius: 30px;
    margin: 4rem 2rem;
    max-width: 100%;
}

    .modern-pilates h2 {
        color: white !important;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        font-weight: 300;
        letter-spacing: 3px;
    }

    .modern-pilates p {
        font-size: 1.2rem;
        color: white !important;
        line-height: 2;
        max-width: 800px;
        margin: 0 auto;
        font-weight: 300;
    }

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }

    .timeline-dot {
        left: 30px;
    }

    .principles {
        grid-template-columns: 1fr;
    }
}
