/* visitus.css – Styles for the "Visítanos" page */
.visit-main {
    padding-bottom: auto;   /* ← main fix: gives enough room for footer */
    min-height: calc(100vh - 160px);    /* ensures page is at least full height minus header */
    background-color: #f8f8f8;
}
/* Hero section with blue sides – like homepage */
.hero-section {
    display: flex;
    margin-top: 130px;          /* space for fixed header */
    height: 500px;              /* adjust height as needed for map */
    overflow: hidden;
}

.blue-left,
.blue-right {
    flex: 1;
    height: 300px;
    background-color: #003366;  /* your blue color from homepage */
}

.hero-content {
    flex: 0 0 750px;
    max-width: 750px;
    height: auto;
    position: relative;
    overflow: hidden;
    background-color: #f8f8f8;      /* light background for letterboxing */
}

/* General container inside hero-content */
.container {
    /*max-width: 100%;
    margin: 0 auto;*/
    padding: 10px 10px;
    /*margin-bottom: 200px;                /* extra buffer below last element (map/text) */
    width: 100%;
    height: 80%;
}

/* Page title */
h1 {
    font-size: 0.8rem;
    text-align: left;
    margin-bottom: 10px;
    color: #333;
}

/* Two-column layout */
.visit-content {
    display:flex;
    height:auto;
    gap: 10px;
}

/* Left column: Text content */
.visit-left {
    flex: 1;
    padding: 10px 10px;
    height:400px;
    background-color: #f8f8f8; /* light gray like original */
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.visit-left h2 {
    font-size: 1.2rem;
    color: #8B0000; /* red accent */
    margin-bottom: 15px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.time {
    background-color: #e0e0e0;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    color: #333;
}

.visit-left p {
    font-size: 0.6rem;
    line-height: 0.6;
    color: #444;
    margin-bottom: 10px;
}

.visit-left a {
    font-size: 0.8rem;
    color: #003366;
    text-decoration: none;
}

.visit-left a:hover {
    text-decoration: underline;
}

.main-nav .submenu ul,
.visit-left ul {
    list-style: none;          /* removes bullets / numbers */
    padding-left: 0;           /* removes default left indentation */
    margin-left: 0;
}

/* Right column: Map */
.visit-right {
    flex: 1;
}

.map-container {
    width: 100%;
    height: 400px; /* similar height to original */
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-note {
    text-align: right;
    font-size: 0.80rem;
}

.map-note a {
    color: #8B0000;
    font-weight: bold;
    text-decoration: none;
}

.map-note a:hover {
    text-decoration: underline;
}

/* Breadcrumb bar (optional – matches your other pages) */
.breadcrumb-bar {
    background-color: #f8f8f8;
    max-width: 750px;
    height: 30px;
    margin-top: 15px
}

.breadcrumb-text {
    font-size: 0.6rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    vertical-align: middle;
    text-align: left;
    letter-spacing: 0.5px;
    margin-left: 15px;
    margin-top: 30px;
}


/* Responsive adjustments */
@media (max-width: 900px) {
    .visit-content {
        flex-direction: column;
        gap: 30px;
    }

    .visit-left {
        max-width: 100%;
    }

    .map-container {
        height: 300px;
    }

    .map-note {
        text-align: center;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }

    .map-container {
        height: 350px;
    }
}