/**
 * InmateLocator Page Specific Styles
 */

/* ===== HEADER SECTION ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.main-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.subtitle {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 30px;
}

.description {
    font-size: 16px;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.phone-number {
    font-size: 24px;
    color: var(--brand);
    font-weight: 700;
    white-space: nowrap;
}

/* ===== PROMINENT PALM BEACH SECTION ===== */
.palm-beach-prominent {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 16px;
    border: 2px solid var(--brand);
    box-shadow: 0 8px 25px rgba(242, 140, 0, 0.15);
}

.palm-beach-prominent h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 15px;
}

.palm-beach-prominent p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.palm-beach-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 140, 0, 0.3);
    border: none;
    cursor: pointer;
}

.palm-beach-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 140, 0, 0.4);
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

/* ===== COUNTIES SECTION ===== */
.counties-section {
    margin: 60px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

.counties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.county-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.county-card:hover {
    border-color: var(--brand);
    box-shadow: 0 4px 16px rgba(242, 140, 0, 0.2);
    transform: translateY(-2px);
}

.county-link {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.county-link:hover {
    color: var(--brand);
}

/* ===== HELP SECTION ===== */
.help-section {
    background: var(--cream);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.help-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.help-text {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.call-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 140, 0, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .main-title {
        font-size: 32px;
    }

    .counties-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .help-section {
        padding: 30px 20px;
    }

    .palm-beach-prominent {
        margin: 30px 0;
        padding: 25px 20px;
    }

    .palm-beach-prominent h3 {
        font-size: 20px;
    }

    .palm-beach-button {
        padding: 18px 35px;
        font-size: 18px;
    }
}
