/* Birdie Cup Pricing Card Styles */

.bcp-pricing-card {
    background-color: #ffffff;
    border: 3px solid #014D40;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

/* Featured/Highlighted Card - Lifted up */
.bcp-pricing-card.bcp-featured {
    transform: translateY(-20px);
    border-color: #044A31;
    border-width: 4px;
    box-shadow: 0 10px 30px rgba(1, 77, 64, 0.15);
}

/* Hover Effect - Smooth lift animation */
.bcp-pricing-card.bcp-hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(1, 77, 64, 0.2);
}

/* Featured card hover - more lift */
.bcp-pricing-card.bcp-featured.bcp-hover-lift:hover {
    transform: translateY(-25px);
    box-shadow: 0 15px 40px rgba(1, 77, 64, 0.25);
}

.bcp-card-header {
    margin-bottom: 20px;
}

.bcp-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #014D40;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    width: 100%;
}

.bcp-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bcp-description {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    margin: 0 0 25px 0;
    min-height: 60px;
}

.bcp-pricing-section {
    margin: 20px 0 25px 0;
}

.bcp-price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.bcp-starting-at {
    font-size: 14px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

.bcp-price {
    font-size: 48px;
    font-weight: 700;
    color: #014D40;
    line-height: 1;
    display: flex;
    align-items: baseline;
}

.bcp-currency {
    font-size: 36px;
}

.bcp-participant {
    font-size: 16px;
    color: #666666;
    font-weight: 400;
}

.bcp-price-note {
    font-size: 12px;
    color: #666666;
    margin: 5px 0 0 0;
    font-style: italic;
}

.bcp-tagline {
    font-size: 14px;
    color: #333333;
    margin: 0 0 25px 0;
    font-weight: 500;
}

.bcp-button-wrapper {
    margin-top: auto;
}

.bcp-button {
    display: inline-block;
    background-color: #014D40;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bcp-button:hover {
    background-color: #013930;
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .bcp-pricing-card {
        padding: 20px;
    }
    
    /* Reduce lift effect on mobile */
    .bcp-pricing-card.bcp-featured {
        transform: translateY(-10px);
    }
    
    .bcp-pricing-card.bcp-hover-lift:hover {
        transform: translateY(-5px);
    }
    
    .bcp-pricing-card.bcp-featured.bcp-hover-lift:hover {
        transform: translateY(-15px);
    }
    
    .bcp-card-title {
        font-size: 20px;
    }
    
    .bcp-price {
        font-size: 40px;
    }
    
    .bcp-currency {
        font-size: 30px;
    }
    
    .bcp-description {
        font-size: 13px;
        min-height: auto;
    }
}
