/* Contact layout */
.contact-layout {
    height: 100vh;                      /* Full viewport height */
    overflow-y: auto;                   /* allow vertical scroll*/
    padding: 1rem 2rem 4rem 2rem;       /* top, right, bottom, left */
}
/* Fit for smart screens */
@media (max-width: 992px) {
    .contact-layout {
        padding: 1rem 2rem 4rem 2rem;  /* usa 5% del ancho de la pantalla como margen lateral */
    }
}
/* Page title */
.contact-title {
    font-size: 4rem;                    /* Large text size for visibility */
    font-weight: 700;                   /* Bold text */
    color: #1E1E1E;                     /* Dark gray text color */
    margin: 0 auto 2rem auto;           /* Center horizontally and add top/bottom space */
    text-align: center;                 /* Center the title */
    display: block;                     /* Ensure full-width block behavior */
}
/* Title section */
.contact-title-section {
    width: 100%;                        /* Take full width of the page */
    display: flex;                      /* Use flex for robust centering */
    justify-content: center;            /* Center horizontally */
    align-items: center;                /* Center vertically within the section */
    padding: 1.5rem 3.5rem 0.5rem 3.5rem;   /* Padding around the title */
    margin-bottom: 0;                   /* Space below the title section */
}
.contact-content-section {
    margin: 2rem auto 3rem auto;  /* Top and bottom spacing, center horizontally */
    padding: 1rem 4rem;           /* Inner spacing on all sides */
}
.contact-content-name {
    display: inline-block;
    font-weight: 600; /* Semi-bold to emphasize importance */
    color: #1E1E1E; /* Dark gray for strong readability */
    font-size: 1.8rem; /* Slightly large font for hierarchy */
    margin-bottom: 1rem; /* Space below the name for separation */
    white-space: pre-line;        /* Interpret \n as line breaks */
}

/* === LABELS (Address, Email, Phone) === */
.contact-label {
    font-weight: 600; /* Bold to distinguish labels from content */
    color: #2B2B2B; /* Softer gray than pure black for balance */
    font-size: 1rem; /* Slightly smaller than name for hierarchy */
}
/* === CONTENT (Address text, Email value, Phone number) === */
.contact-content {
    color: #555; /* Medium gray for good readability and contrast */
    font-weight: 400; /* Normal weight to contrast with bold labels */
    font-size: 1rem; /* Matches label font size for consistency */
    line-height: 1.4; /* Comfortable line spacing for readability */
    word-wrap: break-word;
    white-space: pre-line;        /* Interpret \n as line breaks */
}
.contact-email{
    color: #0056b3;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    font-size: 1rem; /* Standard text size */
}
.contact-email:hover {
    color: #003d80;
}
/* Contenedor por fila */
.contact-row {
    display: grid;
    grid-template-columns: 9rem 1fr; /* 8rem para la etiqueta, resto para el contenido */
    align-items: start;
    column-gap: 0.5rem;
    margin-bottom: 0.4rem;
}
/* === CONTACT CARD CONTAINER === */
.contact {
    margin-bottom: 3rem; /* Space between different contact blocks */
}

/* Responsive for small screens */
@media (max-width: 768px) {
    .contact-title-section {
        padding: 1.5rem 0 0.5rem 0;   /* Padding*/
    }
    .contact-content-section {
        margin: 2rem 0 3rem 0;  /* Top and bottom spacing, center horizontally */
        padding: 1rem 0.5rem;           /* Inner spacing on all sides */
    }
}