html {
    background-color: var(--bg-color);
}

body {
    background-color: var(--bg-color); 
    font-size: 16px;
    color: var(--text-color);
    font-family: Tahoma, sans-serif; 
    margin: 50px;
}

h1 {
    background-color: #D2CFF5;
    font-family: 'Times New Roman', Times, serif;
    font-size: 48px;
    text-align: center;
    font-weight: 1000;
    color:black;
}

h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 36px;
    color:black;
}

h3 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
}

h4 {
  font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
}

p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    color:black;
}

a:link{
  color:#684fb5;
}

a:visited{
  color:#215959;
}

a:hover{
  color:#538989;
}

a:active{
  color:#8c37c1;
}

button {
    background: #EEAECA;
    background: radial-gradient(circle, #eeafca 0%, #94bbe9 100%);
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    text-decoration: underline;
}

button:hover {
    color: #5e819d;
}

.header-container { 
  padding-top: 10px;
  margin-top: 15px;
  text-align: start;
  display: flex;
  flex-direction: column;
}

.header-item:nth-of-type(1){
  width: 30%;
}

.header-item:nth-of-type(2){
 width: 70%;
}

#header-img{
  width: 120px;
  height: 120px;
}

.footer { 
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  font-family: 'Times New Roman', Times, serif
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    padding: 0 1rem;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    margin-right: 100px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--accent-color);
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    position: relative;
}

.nav-links li a:hover {
    color: var(--hover-color);
}


.header-container {
    margin-top: 80px; 
}

.schedule-container { 
  padding-top: 10px;
  margin-top: 15px;
  text-align: start;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
}
.schedule-header{
  text-align: start;
  margin-bottom: 20px;
}

.rsvp-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  padding-bottom: 50px;
}

.rsvp-para{
  width: 55%;
  padding-right: 10px;
  font-family: 'Times New Roman', Times, serif;
}

.rsvp-participants{
  width: 45%;
  padding-right: 10px;
}

#rsvp-button{
  margin-top: 20px;
}

.form-container{
  font-family: 'Times New Roman', Times, serif;
}

form {
    display: flex;
    flex-direction: row;
    width: 200px;
    gap: 20px;
}

.error {
  border-style: solid;
  border-width: 2px;
  border-color: red;
  background-color: pink;
}

:root {
    /* Light Mode */
    --bg-color: #a6a0cf;
    --text-color: #231942;

    /* Dark Mode */
    --bg-color-dark-mode: #3e3377;
    --text-color-dark-mode: #fff;

    /* Accent Colors */
    --accent-color-light: #d2cff5;
    --accent-color-medium: #684fb5;
    --accent-color-dark: #482f95;
    --accent-color-darkest: #231942;
    --accent-color-green: #28eb76;

    /* Error Colors */
    --error-color: #f8bbd0;
    --error-color-border: #e63946;
}