body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

/* Navbar */
.navbar {
    background-color: #2c3e50;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: #f8f9fa !important;
    font-size: 1.1rem;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #f39c12 !important;
}

/* Sección Hero */
.hero {
    background: url('background.jpg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    background-blend-mode: overlay;
    background-color: rgba(44, 62, 80, 0.8);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.3rem;
    font-style: italic;
}

.hero img {
    width: 160px;
    height: 160px;
    border: 5px solid #3bc349;
}

/* Secciones */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

/* Gustos Personales */
#experience .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#experience .col-md-6 {
    display: flex;
    justify-content: center;
}

.card {
    width: 100%;
    max-width: 400px;
}

/* Habilidades */
#skills .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#skills .col-md-4 {
    padding: 20px;
    background: #ecf0f1;
    border-radius: 10px;
    margin: 10px;
    transition: all 0.3s ease-in-out;
    flex: 1 1 30%;
    max-width: 30%;
}

#skills .col-md-4:hover {
    background: #f39c12;
    color: white;
    transform: scale(1.05);
}

#skills i {
    color: #425f89;
}

/* Contacto */
#contact {
    background-color: #586169;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 50px 0;
}

#contact a {
    text-decoration: none;
    font-weight: bold;
    color: #f39c12;
    transition: color 0.3s;
}

#contact a:hover {
    color: #e74c3c; /* Rojo */
}
