/* 
 * Pakistan Paragliding Club - Card Styles
 * Theme colors: #005244 (Primary Green), #FFC107 (Secondary Gold), #FFFFFF (White)
 */

/* Common Card Styles */
.pgc-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none !important;
    height: 100%;
    background-color: #ffffff;
}

.pgc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pgc-card-header {
    background-color: #005244;
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 600;
    border-radius: 0 !important;
}

.pgc-card-body {
    padding: 1.5rem;
}

.pgc-card-title {
    color: #005244;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pgc-card-text {
    color: #555;
    margin-bottom: 1.5rem;
}

.pgc-card-footer {
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
}

/* Product Card Styles */
.product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: none !important;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card-body {
    padding: 1.5rem;
}

.product-card-title {
    color: #005244;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-card-price {
    color: #FFC107;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-card-description {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.03);
}

/* Feature Card Styles */
.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none !important;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-card-icon {
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(0, 82, 68, 0.1);
    color: #005244;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    background-color: #005244;
    color: white;
    transform: rotateY(180deg);
}

.feature-card-title {
    color: #005244;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card-text {
    color: #555;
}

/* Testimonial Card Styles */
.testimonial-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none !important;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 25px;
    left: 20px;
    font-size: 5rem;
    color: rgba(0, 82, 68, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card-content {
    position: relative;
    z-index: 10;
}

.testimonial-card-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.testimonial-card-author {
    display: flex;
    align-items: center;
}

.testimonial-card-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid #FFC107;
}

.testimonial-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card-info h5 {
    color: #005244;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-card-info p {
    color: #777;
    margin-bottom: 0;
}

/* Team Card Styles */
.team-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: white;
    border: none !important;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-card-img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.team-card-body {
    padding: 1.5rem;
    text-align: center;
}

.team-card-title {
    color: #005244;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-card-position {
    color: #FFC107;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card-bio {
    color: #555;
    margin-bottom: 1.5rem;
}

.team-card-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-card-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 82, 68, 0.1);
    color: #005244;
    transition: all 0.3s ease;
}

.team-card-social a:hover {
    background-color: #005244;
    color: white;
    transform: translateY(-3px);
} 