/* ==========================================================================
   Golf CTA Banner Widget Styles
   ========================================================================== */

.golf-cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 40px;
    text-align: center;
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
}

.golf-cta-banner .golf-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.golf-cta-banner .golf-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.golf-cta-banner .golf-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--golf-color-white);
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.golf-cta-banner .golf-cta-description {
    font-size: 1.2rem;
    color: var(--golf-color-white);
    margin: 0 0 30px 0;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.golf-cta-banner .golf-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--golf-color-green);
    color: var(--golf-color-white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.golf-cta-banner .golf-cta-button:hover {
    background-color: var(--golf-color-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .golf-cta-banner {
        padding: 60px 20px;
        margin: 30px 0;
    }
    
    .golf-cta-banner .golf-cta-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .golf-cta-banner .golf-cta-description {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .golf-cta-banner .golf-cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
