/**
 * About Page Styles
 * Following style specifications for Camper Jack Service
 */

/* About page container */
.about-page {
    color: #4a4a4a;
    font-family: Helvetica, Arial, sans-serif;
}

/* Section headers */
.about-page .title {
    color: #000000;
    font-weight: bold;
}

.about-page .subtitle {
    color: #4a4a4a;
}

/* About intro section */
.about-intro {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

/* Team member cards */
.team-member {
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member .title {
    margin-bottom: 0.5rem;
}

.team-member .subtitle {
    font-size: 0.9rem;
}

/* Values cards */
.about-page .card {
    height: 100%;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-page .card .icon {
    margin-bottom: 1rem;
}

.about-page .card .icon i {
    color: #ff8c00;
}

.about-page .card .title {
    margin-top: 1rem;
    font-size: 1.25rem;
}

/* Call to action section */
.about-page .notification {
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 2rem;
}

.about-page .button {
    background-color: #ff8c00;
    color: white;
    border: none;
    font-weight: 500;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.about-page .button:hover {
    background-color: #ff6b35;
}

/* Image styling */
.about-page .image {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

/* Content paragraphs */
.about-page p {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .about-page .columns {
        margin-left: 0;
        margin-right: 0;
    }
    
    .about-page .column {
        padding: 0.75rem;
    }
    
    .team-member {
        margin-bottom: 1.5rem;
    }
}

/* About Page Styles */
.about-page .gallery-item {
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.about-page .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-page .gallery-item img {
    transition: transform 0.5s ease;
}

.about-page .gallery-item:hover img {
    transform: scale(1.05);
}

.about-page .gallery-item figure {
    margin: 0;
    position: relative;
}

/* Lightbox custom styling */
.lb-data .lb-caption {
    font-size: 16px;
    font-weight: 500;
}

.lb-data .lb-number {
    font-size: 14px;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.5;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
} 