/* ==================== ABOUT PAGE SPECIFIC STYLES ==================== */

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.weight {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.05;
    animation: floatWeight 15s infinite ease-in-out;
}

.weight-1 {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.weight-2 {
    right: 15%;
    top: 40%;
    animation-delay: 3s;
    font-size: 4rem;
}

.weight-3 {
    left: 20%;
    bottom: 30%;
    animation-delay: 6s;
    font-size: 2.5rem;
}

.weight-4 {
    right: 25%;
    bottom: 20%;
    animation-delay: 9s;
    font-size: 3.5rem;
}

.weight-5 {
    left: 50%;
    top: 60%;
    animation-delay: 12s;
    font-size: 2rem;
}

@keyframes floatWeight {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-50px) rotate(5deg);
    }
    50% {
        transform: translateY(-100px) rotate(-5deg);
    }
    75% {
        transform: translateY(-50px) rotate(3deg);
    }
}

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    padding: 100px 0 60px;
    margin-top: 80px;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1200') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.lead {
    font-size: 1.3rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    position: relative;
    z-index: 1;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.highlight-box {
    background: var(--dark-gray);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--medium-gray);
    transition: var(--transition);
}

.highlight-box:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.highlight-box i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: block;
}

.highlight-box h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.highlight-box p {
    font-size: 0.95rem;
    color: var(--light-gray);
    margin: 0;
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(10, 10, 10, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.story-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 5rem;
    color: var(--primary-gold);
}

/* Values Section */
.values-section {
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--dark-gray);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--medium-gray);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 2rem;
    color: var(--black);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.value-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.trainer-card {
    background: var(--dark-gray);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--medium-gray);
    transition: var(--transition);
}

.trainer-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.trainer-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.trainer-card:hover .trainer-image img {
    transform: scale(1.1);
}

.trainer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.trainer-card:hover .trainer-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.trainer-info {
    padding: 30px;
}

.trainer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--white);
}

.trainer-role {
    display: block;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trainer-info p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.trainer-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.expertise-tag {
    background: var(--medium-gray);
    color: var(--primary-gold);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--primary-gold);
}

.trainer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--medium-gray);
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--light-gray);
}

/* CTA Section */
.cta-section {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    padding: 60px 0;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .story-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .weight {
        font-size: 2rem;
    }

    .weight-2,
    .weight-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .story-highlights {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .trainer-stats {
        grid-template-columns: 1fr;
    }

    .story-text h2 {
        font-size: 1.8rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    .team-member {
        margin: 0 -20px;
        border-radius: 0;
    }

    .member-image {
        height: 200px;
    }
}
