/* H1 styling to match other pages */
h1 {
    color: var(--secondary-color);
}

#golf5vr{
    padding-top: calc(var(--spacing-unit) * 2);
    padding-bottom: calc(var(--spacing-unit) * 0);
}

#golf5vr p {
    color: #000000;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0px;
}

#golf5vr p a {
    /* color: #4A90E2; */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

#golf5vr p a:hover {
    text-decoration: underline;
/*     color: #6E6A19; */
}

/* Why Golf 5 VR Stands Out Section */
#why-golf5vr {
    padding-top: calc(var(--spacing-unit) * 0.5);
    padding-bottom: calc(var(--spacing-unit) * 1);
}

#why-golf5vr .features-list {
    list-style: none;
    padding: 0;
    margin-top: 5px;
}

#why-golf5vr .features-list li {
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

#why-golf5vr .features-list li::before {
    content: "•";
    color: #6E6A19;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

#why-golf5vr .features-list li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

#why-golf5vr .features-list li a:hover {
    text-decoration: underline;
    color: #6E6A19;
}

/* Estilo específico para el h3 de Why Golf 5 VR */
#why-golf5vr h3 {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* --- Media Queries para Responsividad --- */
@media (max-width: 980px) {
        
    #golf5vr{
        padding-top: calc(var(--spacing-unit) * 1);
        padding-bottom: calc(var(--spacing-unit) * 0);
        line-height: 2rem;
    }

    #hero { 
        padding-top: calc(var(--spacing-unit) * 0);
        padding-bottom: calc(var(--spacing-unit) * 0);
    }
}

/* Mobile adjustments for slider */
@media (max-width: 768px) {
    /* H1 titles consistent with other pages */
    h1 {
        font-size: 2rem;
        font-weight: 300;
        font-family: 'EB Garamond', serif;
        color: var(--secondary-color);
    }
    
    .hero-content {
        margin-top: 100px; /* Push content well below arrows */
        padding: 1rem 0.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem; /* Smaller text */
        line-height: 1.2;
    }
    
    .slider-btn {
        padding: 0.8rem;
        font-size: 1.2rem;
        top: 50%; /* Keep arrows vertically centered */
        transform: translateY(-50%);
    }
}

@media (max-width: 480px) {
    /* H1 titles consistent with other pages */
    h1 {
        font-size: 1.8rem;
        font-weight: 300;
        font-family: 'EB Garamond', serif;
        color: var(--secondary-color);
    }
    
    .hero-content {
        margin-top: 120px; /* Even more space on smaller screens */
        padding: 1rem 0.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem; /* Even smaller text */
        line-height: 1.2;
    }
    
    .slider-btn {
        padding: 0.6rem;
        font-size: 1rem;
        top: 50%; /* Keep arrows vertically centered */
        transform: translateY(-50%);
    }
    
    .slider-btn.prev {
        left: 0.5rem;
    }
    
    .slider-btn.next {
        right: 0.5rem;
    }
}
