:root {
    --wgf-green: #23a04e;
    --wgf-orange: #f29225;
    --wgf-green-dark: #1b7d3d;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #444;
    background: #fff;
}

h1, h2, h3 {
    color: var(--wgf-green-dark);
    font-family: 'Poppins', sans-serif;
}

    h1:focus {
        outline: none;
        box-shadow: none;
    }

.navbar {
    background: var(--wgf-green-dark);
}

    .navbar .navbar-brand img {
        height: 34px;
    }

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.88) !important;
    font-weight: 500;
    margin-right: 1rem;
    transition: color .2s;
}

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
        color: var(--wgf-orange) !important;
    }

#hero {
    background: url('collage.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 100px 0 60px 0;
    text-align: center;
    min-height: 400px;
    position: relative;
}

    #hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(35, 160, 78, 0.54); /* Optional: subtle green overlay for contrast */
        z-index: 1;
    }

    #hero > .container {
        position: relative;
        z-index: 2;
    }

    #hero h1 {
        font-size: 2.7rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #ffeede;
    }

    #hero p {
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto 1.5rem;
        color: #ffeede;
    }

.btn-primary {
    background: var(--wgf-orange);
    border-color: var(--wgf-orange);
    color: #fff;
    font-weight: 600;
    transition: background .2s, border .2s;
}

    .btn-primary:hover, .btn-primary:focus {
        background: #f67d00;
        border-color: #f67d00;
        color: #fff;
    }

.template-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 24px rgba(35,160,78,.07);
    border: 1px solid #eee;
    overflow: hidden;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow .3s;
}

    .template-card:hover {
        box-shadow: 0 6px 32px 0 rgba(242,146,37,.12);
    }

    .template-card img {
        width: 100%;
        height: auto;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .template-card .card-title {
        color: var(--wgf-green);
        font-weight: 600;
        font-family: 'Poppins',sans-serif;
    }

    .template-card .btn-outline-primary {
        border-color: var(--wgf-green);
        color: var(--wgf-green);
    }

        .template-card .btn-outline-primary:hover {
            background: var(--wgf-green);
            color: #fff;
        }

    .template-card .btn-outline-secondary {
        border-color: var(--wgf-orange);
        color: var(--wgf-orange);
    }

        .template-card .btn-outline-secondary:hover {
            background: var(--wgf-orange);
            color: #fff;
        }

footer {
    background: var(--wgf-green-dark);
    color: #fff;
    padding: 40px 0 10px 0;
    margin-top: 40px;
}

.footer-logo {
    height: 34px;
}

.footer-links a {
    color: var(--wgf-orange);
    text-decoration: none;
    margin-right: 1rem;
    font-size: 1rem;
}

    .footer-links a:hover {
        text-decoration: underline;
        color: #fff;
    }

.copyright {
    font-size: 0.98rem;
    margin-top: 1.5rem;
    color: #ffeede;
}