.about-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
      url('../images/about-hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.about-hero .hero-content {
    max-width: 800px;
}

.about-hero .tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--light-color);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-alt {
    background-color: transparent;
    border: 2px solid var(--primary-color);
}

.cta-alt:hover {
    background-color: var(--primary-color);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 5rem 10%;
    background-color: var(--dark-color);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 450px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0)
    );
    border-radius: 0 0 10px 10px;
}

.about-intro {
    margin-bottom: 2rem;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-color);
    line-height: 1.8;
}

.about-paragraphs p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.quote {
    font-style: italic;
    font-size: 1.3rem;
    color: var(--accent-color);
    text-align: center;
    margin: 2.5rem 0;
    font-weight: 600;
}

.skills-section {
    background-color: #0a0a0a;
    padding: 5rem 2rem;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.skills-content {
    flex: 2;
    min-width: 300px;
}

.skills-content p {
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.equipment {
    flex: 1;
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

.equipment h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.gear-list {
    list-style: none;
}

.gear-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.gear-list li i {
    margin-right: 1rem;
    color: var(--primary-color);
}

.skill-bars {
    margin-top: 2rem;
}

.skill-bar {
    margin-bottom: 1.5rem;
}

.skill-bar p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--light-color);
    font-weight: 500;
}

.bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.bar span {
    display: block;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 5px;
    transition: width 1s ease;
}

.reviews {
    background-color: var(--dark-color);
    padding: 5rem 2rem;
    text-align: center;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--light-color);
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.review-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    text-align: left;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.review-card p {
    color: var(--light-color);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.review-author {
    color: var(--accent-color);
    font-style: normal;
    font-weight: 600;
    text-align: right;
}

.review-location {
    color: var(--light-color);
    font-size: 0.9rem;
    text-align: right;
}

.cta-container {
    margin-top: 3rem;
}

#main-header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 0.8rem 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .about-content {
        padding: 5rem 5%;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .skills-container {
        flex-direction: column;
    }

    .equipment {
        width: 100%;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .about-hero .tagline {
        font-size: 1.1rem;
    }

    .quote {
        font-size: 1.1rem;
    }

    .review-card {
        padding: 2rem 1.5rem;
    }

    .review-card p {
        font-size: 1rem;
    }
}
