@charset "UTF-8";
/* CSS Document */

.nunito-sans-fontstyle {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
h1 {font-size:3em;}
a {color: #4caf50;text-decoration:underline}
a:hover {color:#184778;text-decoration:none}
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #ffffff;
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease; /* Smooth transition */
}

nav a:hover {
    color: #4caf50; /* Change color on hover */
}

#hero {
  background-image: url('../img/misty-mountain-trees.jpg'); 
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 100px 0;
}

#hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#hero2 {
  background-image: url('../img/watercolor.jpg'); 
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 100px 0;
}

#hero2 h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#hero3 {
  background-image: url('../img/oregon-forest.jpg'); 
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 100px 0;
}

#hero3 h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#hero4 {
  background-image: url('../img/roseburg-acupuncture.jpg'); 
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 100px 0;
}

#hero4 h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.name {
  font-family: "Bree Serif", serif;
  font-weight: 400;
  font-style: normal;
	font-size:1.5em;
}

.name a {text-decoration:none;color:#000 !important}
.name a:hover {text-decoration:none;color:#000 !important}
.button {
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Smooth transition */
}

.button:hover {
    background-color: #388e3c; /* Darker green on hover */
	color: #ffffff !important;
}

section {
    padding: 50px 0;
}

section h2 {
    margin-bottom: 30px;
}

ul {
    list-style: disc;
    margin-left: 20px;
}

form {
    display: flex;
    flex-direction: column;
}
.background-div {
    background-color: #cddef0;
    width: 100%;
    border-radius: 30px;
    /* Optional: Add some padding for content inside */
    padding: 40px;
    /* Optional: Ensure box-sizing includes padding in width calculation */
    box-sizing: border-box;
}
.background-div2 {
    background-color: #e1f1e2;
    width: 100%;
    border-radius: 30px;
    /* Optional: Add some padding for content inside */
    padding: 40px;
    /* Optional: Ensure box-sizing includes padding in width calculation */
    box-sizing: border-box;
}

input, textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

footer {
    background-color: #e1f1e2;
    text-align: center;
    padding: 20px 0;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {font-size:2em;}
	header .container {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    nav ul li {
        margin: 5px 0;
    }

    #hero {
        padding: 60px 0;
    }
	 #hero2 {
     padding: 60px 0;
    }
	 #hero3 {
     padding: 60px 0;
    }
	 #hero4 {
     padding: 60px 0;
    }
}