body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #f2f4f8;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.header {
    background-color: #0077cc;
    color: white;
    padding: 20px;
    border-radius: 8px 8px 0 0;
}

.header h1 {
    margin: 0;
}

.section {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.section h2 {
    margin-top: 0;
}

/* --- IMAGE GRID --- */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.image-grid img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.image-grid img:hover {
    transform: scale(1.03);
}

/* --- TAGS --- */
ul,
.tags {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags li {
    background: #e0ecf9;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 14px;
}

/* --- BUTTONS --- */
a.button {
    display: inline-block;
    padding: 10px 16px;
    background: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 20px;
}

a.button:hover {
    background: #005fa3;
}

/* --- CONTACT BLOCK --- */
.contact-block p {
    margin: 5px 0;
}

/* --- CONTACT CARDS --- */
.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-start;
    margin-top: 1rem;
}

.contact-card {
    flex: 1 1 250px;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-width: 240px;
    max-width: 320px;
    border: 1px solid #eaeaea;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.contact-card p {
    margin: 0 0 1rem;
    line-height: 1.6;
    color: #333;
}

.contact-card p strong {
    color: #1a1a1a;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

/* --- HOURS --- */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.day-block {
    background: #f7fafd;
    border-radius: 6px;
    text-align: center;
    padding: 12px 6px;
}

/* --- FEES --- */
.fee-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #f7fafd;
    border-radius: 6px;
    padding: 14px 18px;
}

.fee-cost {
    min-width: 90px;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    color: #0077cc;
}

/* --- MAP --- */
#map {
    width: 100%;
    height: 400px;
    margin-top: 10px;
    border-radius: 8px;
}

/* --- FORECAST --- */
.forecast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.forecast-day {
    background: #f7f7f7;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.forecast-day img {
    width: 64px;
    height: 64px;
}

.sub-weather {
    margin-top: 1rem;
    font-size: 0.85rem;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
    padding-top: 0.5rem;
}

.sub-weather p {
    margin: 0.2rem 0;
}

/* --- EVENTS ACCORDION --- */
.event-accordion details {
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f9f9f9;
}

.event-accordion summary {
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.event-accordion summary::-webkit-details-marker {
    display: none;
}

.event-accordion details[open] {
    background-color: #eef8ff;
}

.event-details p {
    margin: 5px 0;
}

/* --- ALERTS LIST --- */
.alert-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.alert-item {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #d9534f;
    background-color: #fff8f8;
    border-radius: 6px;
}

.alert-category {
    display: inline-block;
    background-color: #d9534f;
    color: white;
    padding: 2px 8px;
    margin-left: 10px;
    font-size: 0.85em;
    border-radius: 4px;
}

.alert-description {
    margin: 8px 0;
    line-height: 1.5;
}

#ranger-avatar {
    background: #f5fff5;
    border-left: 4px solid #2e7d32;
    padding: 16px;
    margin-top: 20px;
    border-radius: 10px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}