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

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

#header-content{
	background-color: #f2ebe3;
	width: auto;
	margin-left: auto;
	margin-right: auto;
	height: auto;
	position: relative;
}

nav {
	background-color: #f2ebe3;
	color: #4b4f58;
	width: 100%;
	text-align: center;
	font-size: 20px;
	font-weight: 300;
	font-family: "anton", serif; 
}

nav ul {
	display: block;
	padding: 14px 0 16px;
}

nav li {
	display: inline-block;
}

nav a {
	padding: 10px 30px 5px;
	background-color: #f2ebe3;
	color: #4b4f58;
}

nav a:link {
	color: #4b4f58;;
	text-decoration: none;
}

nav a:hover {
	background-color: #4b4f58;
	color: #f2ebe3;
	border-bottom: 7px solid #adb8a3;
}


li{
	font-family: "anton", serif; 
	padding-left: 15px;
	padding-right: 15px;
	font-size: 20px;
	padding-bottom: 10px;
}

#wrapper{background-color:#f2ebe3;
	width: 100%; 
margin-right: auto;
margin-left: auto;
min-width: 1000px;
max-width:1280px;
	padding:1em;
	margin-top:5px;
}

#headertext {
	 font-family: "Merriweather", serif;
  font-size: 50px;
  margin-top: 10px;
  text-align: center;
}


.heading1{
	color: #4b4f58;
	font-style: italic;
}

.heading2{
	color: #f2ebe3;
	
}

.heading1,
.heading2 {
    display: inline;
	margin-top:5px;
	font-size: 60px;
	
}


h1 {font-family: "Merriweather", serif;
	padding-left: 15px;
	
	
}

h2, h3 {font-family: "Merriweather", serif;
	padding-bottom: 5px;
	text-align: center;
}

h2 {
	font-size: 15px;
	font-style: italic;
}

p {
	font-family: "anton", serif; 
	font-size: 20px;
	margin-right:20px;
	margin-left:20px;
}

#paragraphhome{
	margin-right:20px;
	margin-left:20px;
	font-size: 20px;
	font-family: "Merriweather", serif;
	padding-bottom: 5px;
	padding-top: 5px;
	line-height: 1.5;
}

#landingpageimages{
	display: flex;
    justify-content: center; /* centers the row */
    gap: 20px;               /* space between images */
    margin: 40px 0;          /* space above and below the row */
	align-content: center;

}

#landingpageimages img{
	width: 80px;
    height: 80px;
    object-fit: cover;      /* keeps them square, crops nicely */
    border-radius: 5px;    /* optional rounded corners */
    border: 2px solid #4b4f58; /* matches your theme */
}

#signupbutton {background-color: #ccada3;
  border: 2px solid #4b4f58;
  border-radius: 15px;
  color: #f2ebe3;
  padding: 5px 20px;
  font-size: 20px;
  display: block;      /* Make block-level */
  margin: 20px auto;   /* Center with auto left/right margins */
	justify-content: center;
}

#signupbutton:hover{background-color: #4b4f58;  /* Fill color */
  border: 2px solid #4b4f58;   /* Black border */
  border-radius: 15px;           /* Rounded corners */
  color:#f2ebe3;                  /* Text color */
  padding: 5px 20px;           /* Space inside the button */
  font-size: 20px;              /* Text size */
margin-bottom:20px;
	display: block;      /* Make block-level */
  margin: 20px auto;   /* Center with auto left/right margins */
	justify-content: center;
}

#subscribebutton button{background-color: #ccada3;   /* Fill color */
  border: 2px solid #4b4f58;   /* Black border */
  border-radius: 15px;           /* Rounded corners */
  color: #FFFFFF;                  /* Text color */
  padding: 5px 20px;           /* Space inside the button */
  font-size: 20px;              /* Text size */
margin-bottom:20px;
	margin-left:20px;
	margin-right:20px;
	
	
}

/* Subscribe button */
#subscribebutton {
  background-color: #ccada3;
  border: 2px solid #4b4f58;
  border-radius: 15px;
  color: #FFFFFF;
  padding: 5px 20px;
  font-size: 20px;
  margin: 20px;
  cursor: pointer;
}

#subscribebutton.hover {
  background-color: #f2ebe3;
  color: #4b4f58;
}

/* Learn More button */
#learnmorebutton {
  background-color: #f2ebe3;
  border: 2px solid #4b4f58;
  border-radius: 15px;
  color: #4b4f58;
  padding: 5px 20px;
  font-size: 20px;
  margin: 20px;
  cursor: pointer;
}

#learnmorebutton.hover {
  background-color: #ccada3;
  color: #f2ebe3;
}


#roundedcornerbox{
	border-radius: 15px; 
	background-color: #adb8a3;
	margin-left: 10px;
	padding-left: 10px;
	margin-right:20px;
	width: 900px;
	height:auto;
	box-sizing: border-box; 
}

#backgroundimage2 {
 width: 500px;
    height: 600px;
    top: -10px;
    left: -10px;
	border-radius: 15px;   
	
}


/* --- Feature Grid Layout --- */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
	position: relative;
    
    justify-content: center;
}

.feature-box {
    background-color: #f8f6f4;
    border: 2px solid #4b4f58;
    border-radius: 12px;
    width: 40px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	 max-width: 350px;
	flex: 0 0 45%; /* <<< forces 2 per row */
}

/* Hover effect */
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 18px rgba(0,0,0,0.15);
}

/* Images inside feature boxes */
.feature-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

/* Headings inside feature boxes */
.feature-box h2 {
    margin-top: 15px;
    font-size: 20px;
}

/* Clickable link inside heading */
.feature-box h2 a {
    text-decoration: none;
    color: #4b4f58;
    font-weight: bold;
    transition: color 0.2s;
	
}

.feature-box h2 a:hover {
    color: #000;
}


/* Form container */
#signup-form {
	font-size: 10px;
    max-width: 400px;
	height: 80px;
    margin: 0 auto;
    font-family: "Merriweather", serif;
}

/* Label styling (optional but looks clean) */
#signup-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
}

/* Input fields */
#signup-form input {
    width: 100%;
    padding: 5px;
    margin-bottom: 15px; /* space between each input */
    border-radius: 10px; /* rounded corners */
    border: 1px solid #ccc;
    font-family: "Merriweather", serif;
    font-size: 10px;
    box-sizing: border-box;
}

/* Submit button */
#signup-form button {
	background-color: #ccada3;   /* Fill color */
  border: 2px solid #4b4f58;   /* Black border */
  border-radius: 15px;           /* Rounded corners */
  color: #FFFFFF;                  /* Text color */
  padding: 5px 20px;           /* Space inside the button */
  font-size: 15px;              /* Text size */
margin-bottom:20px;
	margin-left:20px;
	margin-right:20px;
}

#signup-form button:hover {
   background-color: #f2ebe3;   /* Fill color */
  border: 2px solid #4b4f58;   /* Black border */
  border-radius: 15px;           /* Rounded corners */
  color: #4b4f58;                  /* Text color */
  padding: 5px 20px;           /* Space inside the button */
  font-size: 20px;              /* Text size */
margin-bottom:20px;
	margin-left:20px;
	margin-right:20px;
}



footer {
	background-color: #f2ebe3;
	color: #4b4f58;
	font-size: 13px;
	text-align:center;
	padding: 20px;
}


#flexcontainer{
	position: relative;
	display: flex;
	background-color: #f2ebe3;
	margin-right:20px;
}

.feature-box{
	width: 30%;                         /* Smaller than the wrapper */
    margin: 0 auto 20px auto;           /* Center horizontally and add bottom margin */
    background-color: #f5f5f5;          /* Light background color */
    padding: 20px;                       /* Space inside the box */
    border: 2px solid #333;              /* Border around the box */
    border-radius: 10px;                  /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

#mc_embed_signup {
    width: 100% !important; /* take full width of parent */
    background: none; /* remove default white background */
    padding: 0; /* remove padding */
    box-sizing: border-box;
}

#mc_embed_signup form {
    width: 100%;
}

#mc_embed_signup input,
#mc_embed_signup select,
#mc_embed_signup button {
    width: 100%; /* inputs stretch to container */
    box-sizing: border-box;
}