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/OnBeach-closeup-Mini.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-bottom: 20px;
  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;
}
#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;
}

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)
}
*/
.main-title {
  color: white;
}

/****************experimental*********/
.container2 {
  display: flex; /* Aligns sidebar and content horizontally */
  background-color:#1E6091;
  justify-content: flex-start;
  position:relative;
  
}

/* Sidebar Styles */
.sidebar2 {
  width: 250px;
  padding: 20px;
  margin-top:78px;
	font-weight:bold;
	position:absolute;
	left: 95px;
	top: 145px;
}

.sidebar2 nav a {
  display: block;             /* Makes links stack vertically */
  color: white;               /* Default link color */
  text-decoration: none;      /* Removes default underline */
  padding: 15px 0;
  border-bottom: 1px solid #FFD447; /* Thin bottom border */
  transition: 0.3s;           /* Smooth color change */
}

/* Hover State */
.sidebar2 nav a:hover {
  color: orange;              /* Changes font to orange on hover */
  border-bottom-color: orange; /* Optional: matches border to font */
}

/* Main Content Styles */
.content {
  flex: 1;                    /* Takes up remaining width */
  padding: 40px;
  text-align:center;
  
  
}


/****************experimental*********/


/* Main Content Rectangles */
.main-content {  flex: 1; padding: 20px; display: flex; flex-direction: column; align-items: center;  }
.rectangle { 
  width: 80%; max-width: 850px; height:265px;  background: #F5EBDD; margin-bottom: 40px; 
  padding: 40px; border-radius: 8px; text-align: center; 
}

/* Picture with Lines */
.header-section { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.line { flex: 1; height: 1px; width:35px; background: #ccc; margin: 0 15px; }
.small-pic { width: 50px; height: 50px; border-radius: 50%; }

/* Big Blue Text and Button */
.blue-text { color: #1E6091; font-size: 2.5rem; margin: 20px 0; }
.button-link { 
  display: inline-block; padding: 10px 25px; background: #FFD447; font-weight:bold; 
  color: #1E6091; text-decoration: none; border-radius: 5px; 
}

/* Specific layout logic */
/* Top Row: Picture (left), Text (right) - Already handled by column template */
/* Bottom Row: Text (left), Picture (right) */

/* To make bottom left text twice as wide as bottom right picture,
   we need the text to span columns or adjust grid-template-columns. 
   Since the ratio flips, a simple grid is tricky. 
   Use grid-template-areas for exact control: */


/**************ContentArea2*************/

/**************ContentArea3*************/
