:root {
  --purple: #7B6D8D;
  --blue: #A5C4D4;
  --pink: #EBBAB9;
  --yellow: #DDD78D;
  --black-olive: #37392E;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

ul li {
  color: var(--black-olive);
  text-align: left;
}

h1 {
  text-align: center;
  color: var(--yellow);
}

h2 {
  color: var(--pink);
  text-align: center;
}

h3 {
  text-align: left;
  color: var(--blue);
}

p {
  color: var(--yellow);
}

.about-us {
  text-align: left;
}

#footer {
  text-decoration: none;
  text-align: center;
}

body {
    background-color: var(--purple);
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: var(--blue);
}

nav {
    float: right;
    text-align: center;
}

.logo {
  position: relative;  
  width: 8%;
  height: 8%;
  padding: 0;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

.ss-image {
  width: 45%;
  height: 50%;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  background-color: var(--blue);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 20px;
}

header {
  background-color: #4CAF50;
  color: white;
  padding: 20px;
}

main {
  padding: 20px;
}

.calendar-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

button {
  padding: 8px 12px;
  background-color: #4CAF50;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

#today-button {
  margin-bottom: 15px;
  background-color: #2196F3;
}

#today-button:hover {
  background-color: #1e88e5;
}

#day-labels, #calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  max-width: 600px;
  margin: 0 auto;
}

#day-labels {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
}

#day-labels div {
  padding: 5px;
}

.day {
  border: 1px solid #ccc;
  padding: 20px;
  background-color: #f0f0f0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.day.unavailable {
  background-color: #ddd;
  color: #888;
  cursor: not-allowed;
}

.day.today {
  background-color: #FFFF99;
}

.empty {
  border: none;
  background: none;
}

.hidden {
  display: none;
}

/* Form Styling (for Contact Us page) */
form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: var(--blue);
  padding: 5%;
}

label {
  text-align: left;
  font-weight: bold;
  margin-bottom: 5px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

button:hover, form button:hover {
  background-color: #45a049;
}

form input {
  margin: 10px;
  padding: 8px;
  width: 200px;
}

form button {
  padding: 10px 20px;
  background-color: #4CAF50;
  border: none;
  color: white;
  cursor: pointer;
}

form button:hover {
  background-color: #45a049;
}

/* Footer Styling */
footer {
  margin-top: 40px;
  padding: 20px;
  background-color: var(--black-olive);
}