@import url('https://fonts.googleapis.com/css2?family=Cutive+Mono&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap');
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    
    background-image: linear-gradient(to bottom, #000000, #1a1a1a);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
    font-family: 'Montserrat', sans-serif; /* mantengo Montserrat para el body */
    font-weight: 300; /* peso ligero */
    font-style: normal;
    color: white; /* texto blanco */
    font-size: 1rem;
    text-shadow: none;
}

/* Main container */
.container {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
}

/* Page title */
.title {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: "Bodoni Moda", serif;
    font-weight: 300;
    letter-spacing: 4px; /* separa las letras */
}

/* About Me Section */
.about-me {
    margin-bottom: 50px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

/* Image */
.about-image img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

/* Text next to image */
.about-text {
     font-size: 1rem;
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.about-text p {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    font-size: 1.5rem;
    padding-bottom: 1rem;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a i {
    font-size: 1.5rem;
    margin-right: 8px;
    vertical-align: middle;
}

.footer a:hover {
    text-decoration: underline;
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .title {
        font-size: 4rem;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img,
    .about-text {
        width: 80%;
        height: auto;
    }

    .about-text {
        margin-top: 20px;
    }

    .footer {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }

    .footer {
        font-size: 1rem;
    }

    .about-image img,
    .about-text {
        width: 80%;
    }
}
