/* GSA EVENT CARD - COMPLETE STYLESHEET
   Version: 1.5.0
*/

/* 1. Main Card Container */
.gsa-card {
    background: #ffffff;
    width: 100%;
    max-width: 400px; 
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    font-family: 'Inter', sans-serif;
    margin: 20px auto;
    transition: transform 0.3s ease;
}

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

/* 2. Hero Image Section */
.gsa-hero {
    height: 200px;
    background: #539633;
    clip-path: ellipse(130% 100% at 50% 0%);
    position: relative;
    overflow: hidden;
}

.gsa-hero-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.gsa-card:hover .gsa-hero-img {
    transform: scale(1.1);
}

.gsa-hero-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
}

/* 3. Badges & Labels */
.gsa-type-badge {
    position: absolute; 
    top: 20px; 
    left: 20px;
    background: #ffffff; 
    color: #582a29;
    padding: 6px 14px; 
    border-radius: 20px;
    font-size: 0.8rem; 
    font-weight: 800;
    text-transform: uppercase; 
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 4. Body Content */
.gsa-body { 
    padding: 25px 25px 15px; 
}

.gsa-title {
    color: #539633; 
    font-size: 1.5rem; 
    margin: 0 0 10px; 
    line-height: 1.1;
    font-weight: 700;
}

.gsa-desc { 
    font-size: 1rem; 
    color: #555; 
    margin-bottom: 20px; 
    line-height: 1.6; 
}

/* 5. Info Grid (Dates & Location) */
.gsa-info-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px;
    border-top: 1px solid #eee; 
    padding-top: 20px;
}

.gsa-info-item.full-width { 
    grid-column: span 2; 
}

.gsa-label { 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    color: #888; 
    font-weight: 700; 
    letter-spacing: 0.5px;
    display: block; 
    margin-bottom: 4px;
}

.gsa-value { 
    font-size: 1.05rem; 
    font-weight: 700; 
    color: #222; 
    line-height: 1.3;
}

.gsa-maps-link {
    color: inherit;
    text-decoration: none;
    display: block;
}

.gsa-link-icon {
    font-size: 0.8rem;
    color: #539633;
    margin-left: 4px;
}

/* 6. Footer Section */
.gsa-footer { 
    padding: 15px 25px 30px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: linear-gradient(to bottom, transparent, #fcfcfc);
}

.gsa-price-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 700;
}

.gsa-price-value { 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: #582a29; 
}

/* 7. The Animated Button */
@keyframes gsa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(83, 150, 51, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(83, 150, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(83, 150, 51, 0); }
}

.gsa-btn {
    background: #539633;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(83, 150, 51, 0.3);
    z-index: 1;
    animation: gsa-pulse 2s infinite;
}

.gsa-btn:hover {
    background: #46802b;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(83, 150, 51, 0.5);
}

/* Shimmer Shine Effect */
.gsa-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
}

.gsa-btn:hover::after {
    left: 100%;
    transition: all 0.6s ease;
}

/* Arrow Animation */
.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.gsa-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.gsa-btn:active {
    transform: translateY(-1px) scale(0.98);
}