/* Custom styles for the landing page */

/* General styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero section */
#hero {
    background: linear-gradient(135deg, #4a90e2, #6a5acd);
    padding: 100px 0;
}

#hero h1 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Features section */
.feature-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* Eliminada la transición que causa el efecto hover */
}

/* Eliminado el efecto hover que causa movimiento */
.card:hover {
    transform: none;
}

/* About section */
#about {
    background-color: #f8f9fa;
}

/* Contact section */
#contact .card {
    height: 100%;
}

/* Footer */
footer {
    background-color: #343a40;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #hero {
        padding: 60px 0;
    }
    
    #hero h1 {
        font-size: 2.5rem;
    }
}
