* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

header {
    background-color: #2d5016;
    color: white;
    padding: 2rem;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

nav {
    background-color: #3a6b1e;
    padding: 0.75rem;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

nav a:hover {
    background-color: #4a7b2e;
}

nav a[aria-current="page"] {
    background-color: #1e3a0a;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

section h2 {
    color: #2d5016;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8f0e4;
}

section h3 {
    color: #3a6b1e;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
}

section p {
    margin-bottom: 0.75rem;
}

section p:last-child {
    margin-bottom: 0;
}

.intro {
    font-size: 1.1rem;
    color: #555;
}

/* index.html styles */

.plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8faf6;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    border-left: 4px solid #2d5016;
}

.plan-date {
    font-weight: 600;
    color: #2d5016;
    min-width: 120px;
}

.plan-activity {
    flex: 1;
    margin-left: 1rem;
}

.plan-time {
    color: #777;
    font-size: 0.9rem;
    min-width: 100px;
    text-align: right;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.leader-card {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8faf6;
    border-radius: 8px;
}

.leader-avatar {
    width: 80px;
    height: 80px;
    background-color: #2d5016;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.leader-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.leader-role {
    color: #3a6b1e;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.leader-contact {
    color: #777;
    font-size: 0.9rem;
}

iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 4px;
}

/* hajk.html styles */

.cta {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background-color: #2d5016;
    color: white;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0.5rem auto 1.5rem;
    transition: background-color 0.2s;
}

.cta:hover {
    background-color: #3a6b1e;
}

.alert-box {
    background-color: #fff8e1;
    border-left: 4px solid #f9a825;
    padding: 1rem 1.25rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background-color: #f8faf6;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    border-left: 4px solid #2d5016;
}

.schedule-day {
    font-weight: 700;
    color: #2d5016;
    min-width: 160px;
}

.schedule-details {
    flex: 1;
}

.schedule-details p {
    margin-bottom: 0.25rem;
}

.schedule-details p:last-child {
    margin-bottom: 0;
}

.schedule-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.25rem;
}

.packing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.packing-list h3 {
    margin-top: 0;
}

.packing-list ul {
    list-style: none;
    padding: 0;
}

.packing-list ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.packing-list ul li:last-child {
    border-bottom: none;
}

.packing-list.bring li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
}

.packing-list.no-bring li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: 700;
}

.price-box {
    background-color: #f8faf6;
    border-radius: 6px;
    padding: 1.25rem;
    border: 1px solid #d4e8cc;
    margin-top: 1rem;
}

.price-box p {
    margin-bottom: 0.5rem;
}

.price-box p:last-child {
    margin-bottom: 0;
}

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

    nav a {
        display: block;
        margin: 0.5rem 0;
    }

    .plan-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .plan-time {
        text-align: left;
        margin-top: 0.5rem;
    }

    .schedule-item {
        flex-direction: column;
    }

    .schedule-day {
        margin-bottom: 0.5rem;
    }

    .packing-grid {
        grid-template-columns: 1fr;
    }
}
