@font-face {
    font-family: 'Azalea';
    src: url('/fonts/Azalea.ttf') format('truetype'), url('/fonts/Azalea.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Base Reset and Typography */
body {
    margin: 0 0 80px 0; /* Added bottom margin of 80px */
    font-family: 'Azalea', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    text-align: center;
    padding: 0 20px;
}

h1, h2 {
    margin: 0;
    padding: 10px 0;
    font-family: 'Azalea', sans-serif;
    text-transform: uppercase;
}

h1 {
    font-size: 3.5rem;
    -webkit-text-stroke: 1px #004225;
    color: #D4AF37;
}

h2 {
    font-size: 2.5rem;
    color: #004225;
}

p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 66, 37, 0.75), rgba(0, 66, 37, 0.75)), url('https://golfcentralvalley.com/wp-content/uploads/2014/03/feature_pic4.png') no-repeat center center/cover;
    color: #D4AF37;
    padding: 0 20px;
}

    .hero p {
        font-size: 1.3rem;
        max-width: 700px;
        margin: 20px auto;
    }

.cta {
    margin-top: 30px;
}

    .cta a {
        text-decoration: none;
        background: #D4AF37;
        color: #004225;
        padding: 15px 35px;
        border-radius: 5px;
        font-size: 1.1rem;
        transition: background 0.3s ease;
    }

        .cta a:hover {
            background: #b59a30;
        }

/* Features Section */
.features {
    padding: 50px 0;
    background: #fff;
}

    .features ul {
        list-style: none;
        padding: 0;
        max-width: 650px;
        margin: 20px auto;
        text-align: left;
    }

    .features li {
        margin: 15px 0;
        font-size: 1.1rem;
        line-height: 1.4;
    }

        .features li strong {
            color: #D4AF37;
        }

/* Contact Section */
.contact {
    padding: 50px 0;
    background: #fff;
}

    .contact p {
        font-size: 1.1rem;
    }

    .contact a.email {
        color: #D4AF37;
        font-weight: 600;
        text-decoration: underline;
    }

/* Footer */
.footer {
    padding: 20px 0;
    font-size: 0.9rem;
    color: #777;
}
