/* ==========================================================================
   Golf Course Highlight Widget Styles
   ========================================================================== */

.golf-course-highlight {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.golf-course-highlight .golf-course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    z-index: 1;
}

.golf-course-highlight .golf-course-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    color: white;
}

.golf-course-highlight .golf-course-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.golf-course-highlight .golf-course-description {
    font-size: 1.3rem;
    margin: 0 0 30px 0;
    line-height: 1.6;
    max-width: 600px;
    opacity: 0.95;
}

.golf-course-highlight .golf-course-features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.golf-course-highlight .golf-course-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.golf-course-highlight .golf-course-feature i {
    color: var(--golf-color-green);
    font-size: 1.3rem;
}

.golf-course-highlight .golf-course-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--golf-color-green);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.golf-course-highlight .golf-course-button:hover {
    background: var(--golf-color-green-hover);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .golf-course-highlight {
        min-height: 400px;
    }
    
    .golf-course-highlight .golf-course-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .golf-course-highlight .golf-course-title {
        font-size: 2.5rem;
    }
    
    .golf-course-highlight .golf-course-description {
        font-size: 1.1rem;
    }
    
    .golf-course-highlight .golf-course-features {
        justify-content: center;
        gap: 20px;
    }
    
    .golf-course-highlight .golf-course-feature {
        font-size: 1rem;
    }
}
