/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    background: url('raccoons.jpg') center/cover no-repeat, #18993f; /* Fallback color */
    background-attachment: fixed; /* Keeps the background image fixed during scrolling */
}




/* Additional class for further control over resizing if needed */
.background-image-resize {
    background-size: contain;      /* Contain scales the image while maintaining its aspect ratio */
    background-position: top;      /* Position to start at the top */
    background-repeat: no-repeat;  /* Avoids tiling */
}

/* Email Container Styling */
.email-container {
    font-size: 1.2em; /* Adjust to your desired size */
    color: #fff;
    padding: 5px;
    text-align: center;
    background-color: rgba(24, 153, 63, 0.85);
}

.email-container {
    font-size: clamp(20px, 2.2vw, 40px); /* min, preferred, max */
    background-color: rgba(24, 153, 63, 0.85);
}
/*
#google {
    font-size: 1.8em !important;

}*/

/* Overlay for Transparent Backgrounds */
.overlay {
    background-color: rgba(24, 153, 63, 0.85); /* Slightly transparent green overlay */
    padding: 1em;
    margin: auto;
}

/* Navigation */
nav {
    background-color: rgba(68, 68, 68, 0.8); /* Dark overlay */
    color: #fff;
    padding: 1em;
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1em;
    padding: 0.5em 1em;
    display: inline-block;
    transition: background-color 0.3s;
    font-size: 2em;
}

nav a:hover {
    background-color: rgba(85, 85, 85, 0.8);
    border-radius: 5px;
}

/* Header */
header {
    background-color: rgba(24, 153, 63, 0.85); /* Transparent green overlay */
    color: #fff;
    padding: 1.5em;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5em;
    font-size: 3.6em;
    text-shadow: -0.5px -0.5px 0 #000, 0.5px -0.5px 0 #000, -0.5px 0.5px 0 #000, 0.5px 0.5px 0 #000;
}

header p {
    margin-bottom: 0.5em;
    font-size: 2.2em;
    text-shadow: -0.5px -0.5px 0 #000, 0.5px -0.5px 0 #000, -0.5px 0.5px 0 #000, 0.5px 0.5px 0 #000;
}

/* Main Content */
main {
    padding: 1em;
    max-width: 1000px;
    margin: auto;
    color: #333;
    background-color: rgba(255, 255, 255, 0.85); /* Slightly transparent white overlay */
}

/* Sections */
#seasonal p {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 1em;
    text-align: center;
    font-weight: 800;
    text-shadow: -0.5px -0.5px 0 #000, 0.5px -0.5px 0 #000, -0.5px 0.5px 0 #000, 0.5px 0.5px 0 #000;
}

#about {
    text-align: center;
    font-size: 2em;
    background-color: rgba(24, 153, 63, 0.85); /* Transparent green overlay */
    padding: 1em;
    margin-bottom: -1em;
}

#about h2 {
    background-color: #0f6b0c;
    color: #fff;
}

section {
    margin-bottom: 1.5em;
}

section h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 0.5em;
    text-shadow: -0.5px -0.5px 0 #000, 0.5px -0.5px 0 #000, -0.5px 0.5px 0 #000, 0.5px 0.5px 0 #000;
}

section h3 {
    color: #fff;
    font-size: 1.5em;
    text-shadow: -0.5px -0.5px 0 #000, 0.5px -0.5px 0 #000, -0.5px 0.5px 0 #000, 0.5px 0.5px 0 #000;  
}

section p {
    font-size: 1em;
    color: #333;
}

/* Footer */
footer {
    background-color: rgba(51, 51, 51, 0.8); /* Transparent dark overlay */
    color: #fff;
    text-align: center;
    padding: 1em;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Contact Section */
#contact, #contacth2, #contactp {
    background-color: rgba(24, 153, 63, 0.85); /* Transparent green overlay */
    color: #ffffff;
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

#contacth2 {
    font-size: 4em;
    position: relative;
    bottom: 0;
    width: 100%;
    text-shadow: -0.5px -0.5px 0 #000, 0.5px -0.5px 0 #000, -0.5px 0.5px 0 #000, 0.5px 0.5px 0 #000;
    background-color: rgba(24, 153, 63, 0.85); /* Transparent green overlay */
}

#contactp {
    font-size: 2.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav a {
        display: block;
        margin: 5px 0;
    }
    header h1 {
        font-size: 1.8em;
    }
    section h2 {
        font-size: 1.5em;
    }
}
