/* =============================================================
   new-here.css — New Here page
   Only styles unique to this page.
   Hero, sidebar, section spacing, form base styles,
   buttons, and variables are all handled by global.css.
   ============================================================= */

/* === VISIT SECTION === */
.welcome-intro {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* === TIMETABLE SECTION === */
.timetable-container {
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow-medium);
    margin-top: 20px;
    overflow: hidden;
}

.timetable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.day-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.day-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    border-bottom: 3px solid var(--accent);
}

.day-schedule { padding: 25px; }

.mass-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-grey);
}

.mass-time:last-child { border-bottom: none; }

.mass-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    flex: 1;
}

.time-display {
    background: var(--accent-light);
    color: var(--accent);
    padding: 8px 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    min-width: 90px;
    text-align: center;
}

.mass-note {
    font-size: 0.85rem;
    color: var(--text-grey);
    margin-top: 8px;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mass-note i { color: var(--accent); font-size: 0.8rem; }

/* Special highlight for Sunday card */
.sunday-card .day-header { background: var(--accent); }
.sunday-card              { border: 2px solid var(--accent-light); }

/* === LOCATION SECTION === */
.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.address-box {
    background: var(--white);
    padding: 25px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--accent);
    flex: 1;
    min-width: 300px;
}

.address-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.address-box h3 i { color: var(--accent); }

.address-box p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-item {
    background: var(--white);
    padding: 25px;
    box-shadow: var(--shadow-soft);
}

.info-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--primary);
}

.info-item h4 i { color: var(--accent); }

.map-container {
    margin-top: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 400px;
}

.map-container iframe { width: 100%; height: 100%; border: none; display: block; }

/* === CONTACT SECTION === */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.contact-card {
    text-align: center;
    padding: 30px 25px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-top: 4px solid var(--accent);
}

.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); }

.contact-card i { font-size: 2.2rem; color: var(--accent); margin-bottom: 15px; }

.contact-card h3 { margin-bottom: 10px; font-size: 1.3rem; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .timetable-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .timetable-container { padding: 25px; }
    .timetable-grid      { grid-template-columns: 1fr; }
    .info-grid           { grid-template-columns: 1fr; }
    .contact-grid        { grid-template-columns: 1fr; }
    .map-container       { height: 300px; }
}

@media (max-width: 576px) {
    .address-box { min-width: 100%; }

    .mass-time {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .time-display { align-self: flex-start; }
}
