
@import url('https://fonts.googleapis.com/css?family=PT+Serif&display=swap');


body {
  
  font-family: 'PT Serif', 'serif'; 
  

  
}




a:hover {
  color: #c58959;
}
.btn-primary:hover {
  background-color: #c58959;
  border-color: #c58959;
}


.card-footer {
  padding: 1rem;
}

/* Link transitions */
a {
  transition: opacity 0.1s linear;
}

/* Change opacity on hover */
a:hover {
  opacity: 0.8;
}

/* Top Header */
.top-header {
  text-align: center;
  padding: 5px 0;
}

.top-header a {
  color: #000;
}

.top-header .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-header .header__icon-links {
  display: flex;
  gap: 1rem;
}

/* Main Header */
.main-header {
  padding: 10px 0;
  text-align: center;
}

.navbar-light .navbar-nav .nav-link {
  color: #000 !important;
}

.navbar-nav .nav-item {
  margin: 0 10px;
}

.main-header .navbar-nav {
  justify-content: center;
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-tertiary {
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  letter-spacing: .02em;
  line-height: 1.2em;
  font-size: 1rem; /* Updated font size */
  border-radius: 6.4px;
  padding: 1rem 1.3rem; /* Updated padding */
  border: 0;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Navigation Dropdown Specific Styles */
.navbar .dropdown-menu {
    background-color: #fff
    border: none;
    border-radius: 0;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.navbar .dropdown-item {
    color: #000;
    background-color: #fff;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar .dropdown-item:hover {
    background-color: #fff; /* White background on hover */
    color: #c58959; 
    text-decoration: underline;
}

/* Remove Dropdown Arrow */
.hs-has-sub-menu .nav-link::after {
  display: none !important;
}

.hs-has-sub-menu .nav-link[aria-expanded="true"],
.hs-has-sub-menu .nav-link:hover {
  color: #fff;
  background-color: transparent;
  text-decoration: underline;
}

.hs-has-sub-menu .dropdown-menu {
  left: 0 !important;
  right: auto !important;
  background-color: #fff !important;
  padding: 0 !important;
  border: none;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Header Adjustments */
@media (max-width: 991.98px) {
  .header__icon-links {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
  }

  .navbar-toggler {
    margin: 0 auto;
    border: 1px solid #000;
    padding: 5px;
    background-color: transparent;
    display: block;
  }

  .navbar-toggler .bi-list,
  .navbar-toggler .bi-x {
    font-size: 24px;
    color: #000;
  }

  .navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .main-header .navbar-nav {
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
  }

  .navbar-nav .nav-item {
    margin-bottom: 10px;
  }

  .navbar-nav .nav-link {
    color: #fff !important;
    font-size: 18px;
  }

  .dropdown-menu {
    text-align: left;
    width: 100%;
    padding: 10px 15px;
    background-color: #fff;
    box-shadow: none;
  }

  .dropdown-item {
    width: 100%;
    padding: 10px 0;
    color: #fff;
    text-align: left;
  }

  .dropdown-item:hover {
    background-color: #fff;
    color: #36b4c7;
    text-decoration: underline;
  }
}

p.performance__title .font-size-1 {
  font-size: 1.5rem;
}

/*Perf Buttons*/
.performances-list .performance__button-container {
  flex: 0 0 auto;
  text-align: right;
  padding-top: inherit;
}

.performances-list .performance__btn {
  font-style: normal;
  font-weight: 600;
  text-transform: none;
  letter-spacing: .02em;
  line-height: 1.2em;
  font-size: 1.2rem;
  padding: 1rem 1.3rem; 
  border-radius: 5px;
  background-color: #c58959;
  color: #fff;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/*Perf Date*/
.performances-list .performances__date-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #ffe3d1; 
  font-size: 24px;
  font-weight: 400;
  position: relative;
  border: none;
  padding: 15px;
  margin-bottom: 0px;
  width: 100%;
  color: #c58959;
}

.performances-list .performances__date-header span {
  width: auto;
  display: inline-block;
  position: relative;
  text-align: left;
}