body {
    margin: 0;
    padding: 0;
}


.hero-section {
    height: 100vh; /* Makes the section fill the viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 50px;
    color: white; /* Example text color for contrast */
    
    /* The core of the solution: multiple backgrounds */
    background-image: 
        linear-gradient(to right, #F5EBDD 0%, #F5EBDD 93%, rgba(245, 245, 220, 0) 100%), /* Beige gradient overlay (color stops adjusted) */
        url('../pictures/profile-picture.png'); /* The background image */
    
    /* Position the gradient on the left, the image on the right */
    background-position: left, right;
    
    /* Control the size of each background layer */
    background-size: 50% 100%, 25%;
	/*background-size: 400px auto;*/
    
    /* Prevent the backgrounds from repeating */
    background-repeat: no-repeat; 

    /* Ensure the image covers its assigned area nicely */
    background-origin: border-box, content-box; /* Optional adjustments */
}

/* Optional: Make images responsive and prevent distortion */
img {
    max-width: 100%; 
    height: auto;
}

/**************GA PIC*******************/
#georgia-pic{
	position: absolute;
	top:60px;
	left:100px;
	
	width: 175px;  /* Sets the width to 300 pixels */
	height: auto;
	
	border: 1px solid black;
    border-radius: 10px;
}
/**************GA PIC*******************/
/**************Home Link1***************/

.rectangle-link {
    /* Set the background and text colors */
    background-color: #3ED9D2;
    color: black;

    /* Make it a rectangular block and add spacing */
    display: inline-block;
    padding: 10px 20px; /* Adjust padding for desired size */
    text-align: center; /* Center the text */
    text-decoration: none; /* Remove the default underline */

    /* Optional: Add a border or rounded corners */
    border: 1px solid black;
    border-radius: 5px;
	transform: translate(-50%, -50%) rotate(-12deg);
	position: absolute;
	top:185px;
	left:190px;
}

/* Optional: Add hover effect for better user experience */
.rectangle-link:hover {
    background-color: #90c7e3; /* A slightly darker blue on hover */
}
/**************Home Link1***************/
/**************Home Link2***************/
#homelink2{
	  /* Set the background and text colors */
    background-color: #FFD447;
    color: black;
	font-weight:bold;

    /* Make it a rectangular block and add spacing */
    display: inline-block;
    padding: 2px 4px; /* Adjust padding for desired size */
    text-align: center; /* Center the text */
    text-decoration: none; /* Remove the default underline */

    /* Optional: Add a border or rounded corners */
    border: 1px solid black;
    border-radius: 5px;
	transform: translate(-50%, -50%) rotate(-12deg);
	position: absolute;
	top:188px;
	left:250px;
}
/**************Home Link2***************/

/**************NAV BAR A****************/
.nav-list {
    list-style-type: none; /* Removes default bullet points */
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex; /* Arranges list items horizontally */
	position: absolute;
	top:60px;
	left:500px;
}

.nav-list li a {
    display: block; /* Makes the entire link area clickable and allows padding */
    padding: 10px 20px; /* Creates the rectangular shape */
    background-color: #1E6091; /* Dark blue background color */
    color: white; /* White text color */
    text-align: center; /* Centers the text */
    text-decoration: none; /* Removes default underlines */
   /* font-weight: bold;*/ /* Makes the text bold */
    /* Optional: adds a slight margin between buttons */
    margin: 5px;
    border-radius: 5px; /* Optional: rounds the corners of the rectangles */
}
#donate {
	position:relative;
	left:10px;
    background-color: #3ED9D2; /* Light blue background for the rectangles */
	padding: 20px 40px; /* Creates the 'rectangle' shape and provides internal spacing */
	color: darkblue; /* Dark blue text color */
	font-weight: bold;
	font-size: 1.5rem;
    
}
.nav-list li a:hover {
    background-color: #0000CD; /* A slightly lighter blue on hover for interactivity */
}
/**************NAV BAR A****************/



/**************FORM FIELD***************/
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1E6091;
}
h3 {
	color:#937117
}
.container {
  text-align: center;
  max-width: 550px;
  margin: 50px auto;
  font-family: sans-serif;
  position:absolute;
  margin-top:150px;
}



.grid-form {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 15px;
  margin-bottom: 15px;
}

input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

#zip{
	width:170px;
	height:auto;
}
#submitButton{
	position:relative;

	width:310px;
	
}
button {
  background-color: #FFD447;
  color: white;
  border: none;
  border-radius: 8px; /* Rounded corners */
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  padding: 15px 30px;
}

button:hover {
  background-color: #0056b3;
}

.footer-text {
  font-size: 0.7rem;
  color:#937117;
  position:relative;
  left:20px;
  text-align: left;
}
#checkbox1{
	position: fixed;
	position:absolute;
	top:253px;
	
	
}

/**************FORM FIELD***************/

/**************ContentArea2*************/
.dark-blue-section {
    background-color:#1E6091; /* Dark Blue */
    padding: 50px; /* Space inside the area */
    min-height: 100vh; /* Ensures it fills the screen height */
    width: 100%; /* Spans width */
}

/* Optional: Removes default margins */
body {
    margin: 0;
}
/*****************CONTENT AREA 2 REALLY BEGINS HERE******************/
body {
    /* Remove default body margins */
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.content-container {
    /* Equal margins from left and right of page border */
    width: 80%; /* Adjust width as needed */
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px; /* Optional top margin */
    margin-bottom: 20px; /* Optional bottom margin */
    display: flex; /* Use flexbox for side-by-side layout */
    gap: 30px; /* Space between the image and text areas*/
    align-items: flex-start; /* Aligns items to the start of the cross axis (top)*/
}

.image-area {
    /* Ensures image area takes up a specific portion of space */
    flex: 1.4; 
    /* The image element itself will handle the borders */
}

.bordered-image {
    width: 100%; /* Makes image responsive within its container */
    display: block; /* Helps with alignment */
    /* Achieve the double border effect using box-shadow properties */
    box-shadow: 0 0 0 10px lightblue, 0 0 0 20px #FFD447;
    /* Add padding if a specific space between the actual image content and the borders is desired */
    padding: 10px; 
    box-sizing: border-box; /* Ensures padding/shadows are included in element's total width */
}

.text-area {
    flex: 2; /* Allows text area to take up more space than the image area */
    /* Text will start at the same height as the picture due to align-items: flex-start on the container */
	margin-left:60px;
}

.top-text {
    font-size: 2.5rem; /* Big font size */
    color: lightblue; /* Light blue text color */
    margin-top: 0; /* Remove default margin to align with top of image */
}

.bottom-text {
    font-size: 1.8rem; /* Smaller font size */
	line-height: 1.5;
    color:#FFD447; /* Gold text color */
}

.learn-more-button {
    /* Styling the gold color button */
    display: inline-block;
    padding: 10px 20px;
    background-color: gold;
    color:#1E6091; /* Or any contrasting color */
	font-weight:bold;
	font-size: 1.8rem;
    text-decoration: none; /* Removes underline from link */
    border: none;
    cursor: pointer;
    margin-top: 15px; /* Space between text and button */
	border-radius: 5px; /* Optional: rounds the corners */
}

/* Optional: Add a media query for responsiveness on smaller screens*/
@media (max-width: 768px) {
    .content-container {
        flex-direction: column; /* Stacks items vertically on smaller screens */
        width: 90%;
    }
    .bordered-image {
        margin-bottom: 20px; /* Add space below image when stacked */
    }
}

/**************ContentArea2*************/

/**************ContentArea3*************/
.contentArea3-section{
	background-color: #E7E0D4;
	padding-top: 50px;
	
}

#take-action{
		  /* Set the background and text colors */
    background-color: lightblue;
    color: #1E6091;
	font-weight:bold;

    /* Make it a rectangular block and add spacing */
    display: inline-block;
    padding: 10px 20px; /* Adjust padding for desired size */
    text-align: center; /* Center the text */
    text-decoration: none; /* Remove the default underline */

    /* Optional: Add a border or rounded corners */
    
    border-radius: 5px;
	transform: translate(-50%, -50%) rotate(-12deg);
	position: absolute;
	left:195px;
	
}
.content-container3 {
    display: flex;
    justify-content: space-between; /* Space out the columns */
    width: 80%; /* Control the width of the content area */
    margin: 20px auto; /* Equal margins on left/right, centers the container */
	margin-top:0px;
	margin-bottom:0px;
    background-color: lightblue; /* Optional: for visibility of the container */
    padding: 20px; /* Optional: add internal spacing */
}

.text-area2, .image-area2 {
    flex: 1; /* Makes both subparts equal width */
    padding: 0 10px; /* Add some space between the two columns */
    color: white; /* Ensure all text within the container is white */
}
.image-area2{
	width:80%;
	height:auto;
}
.image-area2 img {
	width: 100%; /* or a percentage like 50% */
    max-width: 100%; /* Makes image responsive within its column */
    height: 100%;
	object-fit: cover;
    display: block;
}

.text-area2{
	background-color:#1E6091;
	
}


.text-area2 h1 {
    font-size: 3.5em; /* Big font size for top text */
    margin-top: 5em; /* Remove default margin to align with top of image */
    margin-bottom: 1.5em; /* Spacing between the two text parts */
	text-align:center;
	color:white;
}

.text-area2 p {
    font-size: 1.3em; /* Smaller font size for the text below */
    margin-top: 0; /* Align text to the top of the container */
	line-height: 2;
	margin-left:30px;
	margin-right:30px;
}
#contentArea3-midtext{
	color:#FFD447;
	font-size:1.3em;
	line-height: 2;
	margin-left:30px;
	margin-right:30px;
}
#contentArea3-bottomtext{
	font-size:1.3em;
	font-style:italic;
	line-height: 2;
	margin-left:30px;
	margin-right:30px;
}

/* Media query for responsiveness (optional: stacks columns on small screens) */
@media (max-width: 600px) {
    .content-container3 {
        flex-direction: column; /* Stack vertically on small screens */
        width: 90%;
    }
    .text-area2, .image-area2 {
        padding: 0;
    }
    .image-area2 {
        margin-top: 15px; /* Add space when stacked */
    }
}
/**************ContentArea3*************/

