@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0px;
  background-color: antiquewhite;
}

main {
  padding: 20px;
  background-color: antiquewhite;
}

h1, h2, h3 {
  text-align: center;
  padding: 0px;
  margin-top: 10px;
  color: #3F084D;
}

h4 {
  text-align: center;
  padding: 0px;
  margin-top: 10px;
  margin-bottom: 5px;
  color: antiquewhite;
}

nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header-logo {
  max-width: 600px;
  height: auto;
}

.navbar ul {
  list-style-type: none;
  background-color: #3F084D;
  padding: 0px;
  margin: 0px;
  overflow: hidden;
  border-radius: 25px;
}

.navbar a {
  color: antiquewhite;
  text-decoration: none;
  padding: 5px 15px;
  display: block;
  text-align: center;
}

.navbar a:hover {
  background-color: #7A1594;
}

.navbar li {
  float: left;
}

.calendar-container {
  max-width: 1200px;
  width: 100%;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.calendar-title {
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #333;
}

#calendar {
  width: 100%;
  min-height: 500px;
}
.unstyled-link {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.unstyled-link:hover {
  color: inherit;
  text-decoration: none;
}

/* Modal styling for event details */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  text-align: center;
}

.close-button {
  color: #3F084D;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-button:hover {
  color: #7A1594;
}

.tooltip {
  position: relative;
  display: inline-block;
  margin-right: 20px;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #3f084d;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.contact-container {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.contact-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  padding-left: 100px;
  padding-right: 100px;
}

.contact-left-title h2 {
  font-weight: 600;
  color: #3F084D;
  font-size: 40px;
  margin-bottom: 5px;
}

.contact-left-title hr {
  border: none;
  width: 150px;
  height: 5px;
  background-color: #3F084D;
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact-inputs {
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: #666;
  border-radius: 50px;
}

.contact-left textarea {
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
}

.contact-inputs:focus {
  border: 2px solid #511373;
}

.contact-inputs::placeholder {
  color: #A9A9A9;
}

.contact-left button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: antiquewhite;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(270deg, #511393, #3f084d);
  cursor: pointer;
}

.contact-left button img {
  height: 22px;
}

.contact-right img {
  width: 500px;
}

@media (max-width: 800px) {
  .contact-inputs {
    width: 80vw;
  }
  .contact-right {
    display: none;
  }
}

.centered-paragraph {
  background-color: #3F084D;
  text-align: justify;
  color: antiquewhite;
  padding: 20px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  border-radius: 25px;
}

.degree-wrapper {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.degree-list {
  max-width: 1000px;
  width: 100%;
}

.degree-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.degree-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.degree-text {
  flex: 1;
  max-width: 600px;
}
table {
  font-family: arial, sans-serif;
  width: 100%;
}

td, th {
  border: none;
  text-align: center;
}

.footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px 0;
  padding-bottom: 10px;
  background-color: #3F084D;
  color: antiquewhite;
  text-align: center;
}

div {
  padding: 15px;
}

/* Responsive calendar container */
@media (max-width: 768px) {
  .calendar-container {
    padding: 10px;
    max-width: 100%;
  }
}