/* --------------------------------------------------
   GLOBAL IMPORTS
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');


/* --------------------------------------------------
   BASE TYPOGRAPHY & GLOBAL ELEMENTS
-------------------------------------------------- */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #333;
}

/* Headings */
h1, h2 {
  margin-top: 2em;
  margin-bottom: 0.4em;
  font-weight: 700;
  color: #222;
  border-bottom: 2px solid #dfd4bb;
  padding-bottom: 4px;
  font-family: 'Poppins', sans-serif;
}

/* Legacy Lato headings */
h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
  color: rgb(1, 73, 145);
  font-family: Lato;
}

h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  color: rgb(119, 119, 119);
  font-family: Lato;
}

/* Paragraphs */
p {
  margin-bottom: 0.5em;
  color: #333;
  font-size: inherit;
  font-family: 'Poppins', sans-serif;
}

/* Lists */
ul, ol {
  font: inherit;
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin-bottom: 0.5em;
}

li {
  margin-bottom: 0.5em;
  color: #333;
  font-size: inherit;
  font-family: 'Poppins', sans-serif;
}

/* Links */
a:not(.button) {
  font-family: 'Poppins', sans-serif;
  font-size: inherit;
  color: #4F9BAA;
  text-decoration: underline;
  font-weight: 400;
}

a:not(.button):hover {
  color: #333;
}


/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
button, .button {
  display: inline-block;
  background: #4f9baa;
  padding: 10px 18px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  font-family: 'Poppins', sans-serif;
}

button:hover, .button:hover {
  background: #3a7f8a;
}


/* --------------------------------------------------
   RESPONSIVE TYPOGRAPHY
-------------------------------------------------- */
@media (max-width: 576px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.3rem; }
  p, a, button { font-size: 0.95rem; }
}


/* --------------------------------------------------
   FULLCALENDAR STYLES
-------------------------------------------------- */
.fc-daygrid-day-number {
  font-weight: 500;
  font-size: 16px;
  line-height: 8px;
  color: rgb(79, 155, 170);
  font-family: Lato;
}

.fc-daygrid-day {
  background-color: #fff;
}

.fc-day-today {
  background-color: rgb(223, 212, 187) !important;
}

.fc-col-header-cell {
  background-color: rgb(188, 166, 112);
}

.fc-col-header-cell-cushion {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #fff;
  font-family: Lato;
}

.fc button {
  font-weight: 700 !important;
  font-size: 16px !important;
  padding: 20px !important;
  text-transform: capitalize !important;
  color: #fff !important;
  background-color: rgb(79, 155, 170) !important;
  border-color: rgb(79, 155, 170) !important;
  font-family: 'Poppins', sans-serif !important;
}

.fc-toolbar {
  text-transform: none;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

.fc .fc-scrollgrid-section > td {
  border-color: rgb(79, 155, 170);
}

.fc-daygrid-dot-event {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding: 0;
  text-transform: none;
  color: #000;
  background-color: #fff;
  font-family: Lato;
}

.fc-h-event {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding: 0;
  text-transform: none;
  color: #fff;
  background-color: rgb(179, 66, 45);
  border-color: rgb(79, 155, 170);
  font-family: Lato;
}

.fc-daygrid-event-dot {
  display: none;
}


/* --------------------------------------------------
   PULL QUOTES
-------------------------------------------------- */
.pull-quote {
  background: #dfd4bb;
  border-left: 4px solid #4f9baa;
  padding: 1em;
  margin: 1em 0;
  font-size: 20px;
  font-style: italic;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .pull-quote {
    margin: 1em 0;
  }
}


/* --------------------------------------------------
   IMAGES
-------------------------------------------------- */
.responsive-float-image {
  float: right;
  width: 40%;             
  max-width: 600px;
  height: auto;
  margin-left: 20px;
  margin-bottom: 10px;
  display: block;
}

@media (max-width: 768px) {
  .responsive-float-image {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
    width: 100%;               
    max-width: 100%;
  }
}



/* --------------------------------------------------
   STYLED LINK BLOCKS
-------------------------------------------------- */
.styled-links a {
  display: block;
  background: #dfd4bb;
  padding: 10px 14px;
  margin: 6px 0;
  border-radius: 6px;
  text-decoration: none;
  color: #4f9baa;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
  font-family: 'Poppins', sans-serif;
}

.styled-links a:hover {
  background: #4f9baa;
  color: #fff;
}


/* --------------------------------------------------
   TABLES
-------------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 16px;
}

thead th {
  background-color: #4f9baa;
  color: #fff;
  text-align: left;
  padding: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  word-wrap: break-word;
}

tbody td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  word-wrap: break-word;
}

tbody tr:nth-child(even) {
  background-color: #dfd4bb;
}

tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}


/* --------------------------------------------------
   DATE ELEMENTS
-------------------------------------------------- */
.date,
.day,
.month {
  font-family: 'Poppins', sans-serif;
}


/* --------------------------------------------------
   PROFILE CARDS
-------------------------------------------------- */
.profile-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'Poppins', sans-serif;
}

.profile-card {
  width: 250px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: box-shadow 0.25s ease;
}

.profile-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.profile-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.profile-card h3,
.profile-card p {
  padding: 0 14px;
  text-align: left;
}

.profile-card h3 {
  margin-top: 12px;
  margin-bottom: 4px;
  color: #4f9baa;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.profile-card p {
  margin-bottom: 16px;
  color: #555;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
}


/* --------------------------------------------------
   MOBILE MENU ICONS
-------------------------------------------------- */
.menu-icon-burger,
.menu-icon-close {
  fill: #fff;
}
.sidebarBody ul.level-1 > li > a{font-family: Poppins}
.sidebarBody ul.level-1 > li > a{font-size: 18px}
.sidebarBody ul.level-1 > li > a{font-weight: 700}
.sidebarBody ul.level-1 > li > a{text-transform: none}
.sidebarBody ul.level-1 > li > a{color: rgb(1, 73, 145)}
.sidebarBody ul.level-1{background-color: rgb(255, 255, 255)}
.sidebarBody ul.level-1 > li:hover > a{color: rgb(57, 57, 57)}
.sidebarBody ul.level-1 > li:hover{background-color: rgb(255, 255, 255)}
.sidebarBody ul.level-1.selected > li {background-color: rgb(255, 255, 255)}
.sidebarBody ul.level-1.selected > li > a{color: rgb(57, 57, 57)}
.sidebarBody ul.level-1 > li > a{padding-left: 10px !important; padding-right: 10px !important}
.sidebarBody ul.level-1 > li > a{padding-top: 10px !important; padding-bottom: 10px !important}
.sidebarBody ul.level-2 > li > a{font-family: Poppins}
.sidebarBody ul.level-2 > li > a{font-size: 16px}
.sidebarBody ul.level-2 > li > a{font-weight: 400}
.sidebarBody ul.level-2 > li > a{text-transform: none}
.sidebarBody ul.level-2 > li > a{color: rgb(1, 73, 145)}
.sidebarBody ul.level-2{background-color: rgb(255, 255, 255)}
.sidebarBody ul.level-2 > li:hover > a{color: rgb(57, 57, 57)}
.sidebarBody ul.level-2 > li:hover{background-color: rgb(245, 245, 245)}
.sidebarBody ul.level-2.selected > li {background-color: rgb(245, 245, 245)}
.sidebarBody ul.level-2.selected > li > a{color: rgb(57, 57, 57)}
.sidebarBody ul.level-2 > li > a{padding-left: 10px !important; padding-right: 10px !important}
.sidebarBody ul.level-2 > li > a{padding-top: 10px !important; padding-bottom: 10px !important}
.sidebarBody ul.level-3 > li > a{font-family: Poppins}
.sidebarBody ul.level-3 > li > a{font-size: 16px}
.sidebarBody ul.level-3 > li > a{font-weight: 400}
.sidebarBody ul.level-3 > li > a{text-transform: none}
.sidebarBody ul.level-3 > li > a{color: rgb(1, 73, 145)}
.sidebarBody ul.level-3{background-color: rgb(255, 255, 255)}
.sidebarBody ul.level-3 > li:hover > a{color: rgb(57, 57, 57)}
.sidebarBody ul.level-3 > li:hover{background-color: rgb(245, 245, 245)}
.sidebarBody ul.level-3.selected > li {background-color: rgb(245, 245, 245)}
.sidebarBody ul.level-3.selected > li > a{color: rgb(57, 57, 57)}
.sidebarBody ul.level-3 > li > a{padding-left: 10px !important; padding-right: 10px !important}
.sidebarBody ul.level-3 > li > a{padding-top: 10px !important; padding-bottom: 10px !important}
.sidebarBody ul.level-4 > li > a{font-family: Poppins}
.sidebarBody ul.level-4 > li > a{font-size: 16px}
.sidebarBody ul.level-4 > li > a{font-weight: 400}
.sidebarBody ul.level-4 > li > a{text-transform: none}
.sidebarBody ul.level-4 > li > a{color: rgb(1, 73, 145)}
.sidebarBody ul.level-4{background-color: rgb(255, 255, 255)}
.sidebarBody ul.level-4 > li:hover > a{color: rgb(57, 57, 57)}
.sidebarBody ul.level-4 > li:hover{background-color: rgb(245, 245, 245)}
.sidebarBody ul.level-4.selected > li {background-color: rgb(245, 245, 245)}
.sidebarBody ul.level-4.selected > li > a{color: rgb(57, 57, 57)}
.sidebarBody ul.level-4 > li > a{padding-left: 10px !important; padding-right: 10px !important}
.sidebarBody ul.level-4 > li > a{padding-top: 10px !important; padding-bottom: 10px !important}
.sidebarBody ul.level-5 > li > a{font-family: Poppins}
.sidebarBody ul.level-5 > li > a{font-size: 16px}
.sidebarBody ul.level-5 > li > a{font-weight: 400}
.sidebarBody ul.level-5 > li > a{text-transform: none}
.sidebarBody ul.level-5 > li > a{color: rgb(1, 73, 145)}
.sidebarBody ul.level-5{background-color: rgb(255, 255, 255)}
.sidebarBody ul.level-5 > li:hover > a{color: rgb(57, 57, 57)}
.sidebarBody ul.level-5 > li:hover{background-color: rgb(245, 245, 245)}
.sidebarBody ul.level-5.selected > li {background-color: rgb(245, 245, 245)}
.sidebarBody ul.level-5.selected > li > a{color: rgb(57, 57, 57)}
.sidebarBody ul.level-5 > li > a{padding-left: 10px !important; padding-right: 10px !important}
.sidebarBody ul.level-5 > li > a{padding-top: 10px !important; padding-bottom: 10px !important}
