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;
	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: 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***************/
.container h1 {
  font-size: 3rem;
  margin-top: 50px;
  color: #1E6091;
  position: relative;
  left:225px;
  top:25px;
}
.container h3 {
	font-size: 2rem;
	color:#937117;
	position:relative;
	left:225px;
	top:70px;
	font-family: "Times New Roman", Times, serif;
	margin-bottom:25px;
}
#second{
	top:50px;
}
.container {
  text-align: center;
  max-width: 550px;
  margin: 50px auto;
  font-family: sans-serif;
  position:absolute;
}



.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 */
.main-title{
	color: #FFD447;
	font-size: 3rem;
	
	margin: 0 auto;
	margin-top:50px;
	margin-bottom:40px;
}


/*****************CONTENT AREA 2 REALLY BEGINS HERE******************/
body {
    /* Remove default body margins */
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}


.container2 {
  display: flex; /* Aligns sidebar and content horizontally */
  background-color:#1E6091;
  justify-content: flex-start;
  position:relative;
  
}



.content-container {
  display: flex;
  justify-content: space-between; /* Creates equal distance from margins */
  
  width: 95%; /* Adjust as needed */
  
  margin: 0 auto;
  background-color:#1E6091;
  padding: 100px 150px 25px;
  
}

.text-side, .form-side {
  flex: 1; /* Both sides take up equal width */
  padding: 20px;
  padding-bottom:100px;
  
}

.text-side{
	color:white;
	text-align:center;
	
}
.text-side h3{
	color:white;
	
	
	
	
}

.form-side {
  display: flex;
  flex-direction: column; /* Stacks fields vertically */
  gap: 10px; /* Adds space between fields */
}

.form-side input, .form-side textarea {
  
  
}

input {
  width: 550px;
  background-color:#3ED9D2;
}
textarea{
	background-color:#3ED9D2;
}

#zip {
  width: 550px; 
}

#message {
  width: 575px;
  height:100px;
  border-radius: 0 20px 0 20px;
}

#submit{
	text-align:center;
	font-weight:bold;
	color:white;
	width:80px;
	position:relative;
	left:400px;
	
}

input[type="submit"], button[type="submit"] {
    all: unset; /* Removes background, borders, padding, etc. */
    cursor: pointer; /* Restores the 'hand' cursor for better UX */
	
border-bottom: 2px solid #FFD447; /* Adds the yellow underline */
}

::placeholder {
  color: #1E6091;
  font-weight:bold;
  font-size: 1.3rem;
}

.form-side{
	transform: scale(1.2);
	
}
.text-side{
	transform: scale(1.2);
	
}



/**************ContentArea2*************/

/**************ContentArea3*************/
.background-blue{
	
	background-color:#1E6091;
}
