/*last updated 02-25-26*/

body {
    font-family: Arial, sans-serif; /* Fixed typo from 'Ariel' */
    font-size: 16px; 
    line-height: 25px; 
    /* Sunset Gradient: Deep Purple to Warm Pink */
    background: linear-gradient(180deg, #4b2c5e 0%, #8e44ad 40%, #ed4264 100%) no-repeat fixed;
    margin: 0;
}

#wrapper {
    /* Changed to a semi-transparent white so the sunset peeks through */
    background-color: rgba(255, 255, 255, 0.85); 
    border: 2px solid #6c3483; /* Dark purple border */
    margin: auto; 
    width: 65%;
}

header {
    color: #FFFFFF; 
    text-align: center; 
    /* Deep Purple Header background */
    background-color: #301934; 
    height: 157px;
  
    color: #FFFFFF; 
    text-align: center; 
    background-color: #301934; 
    /* Fix: Remove the fixed 157px height and let it breathe */
    height: auto; 
    padding: 60px 20px; /* Adds space above and below the text */
}

header h1 {
    margin: 0; 
    /* Removed padding-top since the header container handles it now */
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 4rem; 
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2; /* Fix: Adds space between lines if the title wraps */
    
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}
}
}

nav {
    text-align: center; 
    font-size: 14px;  
    background-color: #6c3483; /* Vibrant Purple */
    border-bottom: 2px solid #301934;
    border-top: 2px solid #301934; 
    padding-bottom: 4px; 
    padding-top: 10px;
}

footer {
    clear: both; 
    border-top: 2px solid #301934; 
    padding-top: 4px; 
    padding-bottom: 2px; 
    color: #FFFFFF; 
    text-align: center;
    background-color: #6c3483; /* Matching Nav Purple */
}

/* Optional: Updated fieldset to match the pinker tones */
fieldset {
    background-color: #fce4ec; /* Soft pink */
    margin-bottom: 20px; 
    border-color: #ed4264;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #fce4ec 0%, #e1bee7 50%, #ffd700 100%) no-repeat fixed; /* Pink, Purple, and Gold */
    margin: 0;
    color: #4a148c; /* Deep Purple text */
}

#wrapper {
    background-color: rgba(255, 255, 255, 0.9); /* High elegance white */
    border: 1px solid #d4af37; /* Gold border */
    margin: 40px auto;
    width: 75%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

header {
    background: #301934; 
    padding: 80px 20px;
    border-bottom: 4px solid #d4af37; /* Gold accent line */
}



