/* Custom styles for Multiservices website */

/* General styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #ffffff;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation styles */
.navbar {
    backdrop-filter: blur(10px);
    background: linear-gradient(to right, #0f0f0f, #1a1a1a);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.navbar .nav-link {
    color: #ffffff !important;
    transition: color 0.3s;
}

.navbar .nav-link:hover {
    color: #0d6efd !important;
}

/* Hero section */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 76px;
    color: #ffffff;
}

/* Service Section */
#services {
    background: linear-gradient(145deg, #1f1f1f, #2a2a2a);
    color: #f1f1f1;
    padding: 5rem 0;
}

/* Service cards */
.service-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #1b1b1b;
    color: #ffffff;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-card i {
    color: #0d6efd;
}

/* Contact Section */
#contact {
    background-color: #000000;
    color: #ffffff;
    padding: 5rem 0;
}

/* Social links */
.social-links a {
    font-size: 1.5rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0d6efd !important;
}

/* Card default styles */
.card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card.bg-dark {
    color: #fff;
}

/* Footer styles - gris oscuro más claro */
footer {
    background: linear-gradient(to top, #2e2e2e, #3c3c3c);
    color: #dddddd;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
}

footer p {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }
}



.card.bg-dark {
    color: #fff;
}
