/* Main Page CSS */
:root {
    --primary-color: #EF767A;
    --secondary-color: #456990;
    --accent-1: #EEB868;
    --accent-2: #49BEAA;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    background-color: var(--primary-color);
}

header img {
    height: 120px;
    margin-bottom: 10px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 60px;
}

nav a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 3px;
    background-color: var(--accent-2);
    transition: width 0.3s;
}

nav a:hover {
    color: var(--accent-1);
}

nav a:hover::after {
    width: 100%;
}
.text-box-container {
    margin: 20px auto;
    max-width: 600px;
    text-align: left;
    font-family: Arial, sans-serif;
}

.text-box-container label {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color); /* #456990 */
    display: block;
    margin-bottom: 10px;
}

.styled-textbox {
    width: 100%;
    height: auto;
    min-height: 150px;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid var(--accent-1); /* #EEB868 */
    background-color: #fff;
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
    resize: none; /* removes manual resizing */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.styled-textbox:focus {
    outline: none;
    border-color: var(--primary-color); /* #EF767A */
    box-shadow: 0 0 10px rgba(239, 118, 122, 0.5);
}
:root { 
    --primary: #EF767A; 
    --secondary: #456990; 
    --accent1: #EEB868; 
    --accent2: #49BEAA; 
} 
  
body { 
    font-family: Tahoma, sans-serif; 
    margin: 0; 
    padding: 0; 
    background-color: #fff; 
    color: #333; 
} 
  
h1, h2 { 
    font-family: Georgia, serif; 
    color: var(--secondary); 
} 
  
header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background-color: var(--primary); 
    padding: 10px 20px; 
    color: white; 
} 
  
.logo { 
    font-size: 1.5em; 
    font-weight: bold; 
} 
  
nav a { 
    margin: 0 10px; 
    color: white; 
    text-decoration: none; 
    font-weight: bold; 
} 
  
.hero-image { 
    text-align: center; 
    background-color: var(--accent1); 
    padding: 20px; 
} 
  
.hero-image img { 
    width: 90%; 
    max-width: 600px; 
    height: auto; 
    border: 3px solid var(--secondary); 
} 
  
.content { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    margin: 30px 0; 
    padding: 0 15px; 
} 
  
.image-box img { 
    border: 2px solid var(--secondary); 
    margin-bottom: 20px; 
    width: 100%; 
    max-width: 400px; 
} 
  
.text-content { 
    max-width: 700px; 
    margin-bottom: 30px; 
} 
  
.text-content p { 
    margin-bottom: 15px; 
    line-height: 1.6; 
} 
  
.donation-appeal { 
    font-weight: bold; 
    color: var(--primary); 
} 
  
.cta-button { 
    background-color: var(--accent2); 
    color: white; 
    padding: 10px 20px; 
    font-weight: bold; 
    border: none; 
    border-radius: 10px; 
    cursor: pointer; 
    margin-top: 10px; 
} 
  
.form-box { 
    border: 3px solid var(--primary); 
    padding: 20px; 
    border-radius: 20px; 
    width: 90%; 
    max-width: 400px; 
    background-color: #fff; 
    margin-bottom: 40px; 
} 
  
.form-box h2 { 
    text-align: center; 
    color: var(--secondary); 
    margin-top: 0; 
} 
  
.form-box form { 
    display: flex; 
    flex-direction: column; 
} 
  
.form-box input { 
    margin-bottom: 10px; 
    padding: 8px; 
    border: 2px solid var(--accent2); 
    border-radius: 5px; 
} 
  
.form-box button { 
    padding: 10px; 
    background-color: var(--accent2); 
    color: white; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
} 
  
footer { 
    background-color: var(--secondary); 
    color: white; 
    text-align: center; 
    padding: 10px; 
} 


/* Sign Up Page CSS */

#user-input {
    display: grid;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: #456990;
    color: #eeb868;
    justify-self: center;
    justify-content: center;
    padding: 5px 10px;
    border: 5px solid #49beaa;
    border-radius: 10px;
}

#full_name {
    grid-row: 2/3;
    width: 300px;
}

#elable {
    grid-row: 4/5;
}

#email {
    grid-row: 5/6;
}

#mlable {
    grid-row: 7/8;
}

#message {
    grid-row: 8/9;
    height: 150px;
}

#button {
    grid-row: 10/11;
}

/* Date Idea Page CSS */