/* Cub Scout Official Colors */
:root {
    --cub-scout-blue: #003F87;
    --cub-scout-gold: #FDB81E;
    --light-blue: #0D5BA6;
    --cream: #FFF8E7;
    --dark-text: #1a1a1a;
    --gray-text: #555;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--cub-scout-blue) 0%, var(--light-blue) 100%);
    color: var(--dark-text);
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

header {
    background: var(--cub-scout-blue);
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-bottom: 6px solid var(--cub-scout-gold);
}

header h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.3em;
    opacity: 0.95;
}

main {
    padding: 40px 30px;
}

.intro {
    text-align: center;
    margin-bottom: 40px;
}

.welcome {
    font-size: 1.2em;
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

h2 {
    color: var(--cub-scout-blue);
    margin-bottom: 15px;
    font-size: 1.6em;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.info-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid var(--cub-scout-blue);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 63, 135, 0.15);
}

.info-card.highlight {
    background: var(--cream);
    border-left-color: var(--cub-scout-gold);
    border-left-width: 6px;
}

.info-card h2 {
    font-size: 1.4em;
}

.info-card p {
    margin-bottom: 10px;
}

.info-card ul {
    list-style-position: inside;
    color: var(--gray-text);
}

.info-card ul li {
    margin-bottom: 5px;
}

.cta {
    text-align: center;
    background: linear-gradient(135deg, var(--cub-scout-blue), var(--light-blue));
    color: white;
    padding: 40px 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.cta h2 {
    color: white;
    font-size: 2em;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background: var(--cub-scout-gold);
    color: var(--cub-scout-blue);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.contact {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact h2 {
    margin-bottom: 15px;
}

.contact p {
    margin-bottom: 10px;
}

.contact a {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact a:hover {
    text-decoration: underline;
}

footer {
    background: var(--cub-scout-blue);
    color: white;
    text-align: center;
    padding: 25px 20px;
    border-top: 6px solid var(--cub-scout-gold);
}

footer p {
    margin-bottom: 8px;
}

footer .small {
    font-size: 0.9em;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1.1em;
    }

    main {
        padding: 30px 20px;
    }

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

    .cta h2 {
        font-size: 1.6em;
    }
}