/* Archivo: styles.css */

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos del body */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Imagen de fondo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/oficina_de_arquitectos.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.3);
    z-index: -1;
}

/* Contenedor principal */
.container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 0 10%;
    position: relative;
    z-index: 1;
}

/* Contenido */
.content {
    color: #ffffff;
    max-width: 500px;
}

/* Título principal */
h1 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

/* Subtítulo */
p {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Línea divisora */
.divider {
    width: 60px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

/* Sección social */
.social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social span {
    font-size: 1rem;
    opacity: 0.8;
}

/* Icono de Instagram */
.social a {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.social svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 5%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .social {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}