/* Schedule Section Custom Styles */

/* Section background color */
.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #FEFDF4; /* Requested background color */
  color: #333;
  font-size: 1rem;
  overflow: visible;
}

/* Container styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header styles */
.header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Enhanced H1 Heading Styles */
.heading_h1 {
  font-size: 5rem;
  font-weight: 900;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  display: block;
}

.eyebrow {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.heading_h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.subheading {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Tabs navigation */
.w-tabs {
  margin-bottom: 0;
}

.tabs_nav {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 0.5rem;
}

.tab_menu-button {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  background-color: transparent;
  border: 1px solid #E5E5E5;
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
}

.tab_menu-button:hover {
  background-color: #f8f8f8;
  border-color: #FFCB1E;
}

.tab_menu-button.w--current {
  background-color: #FFCB1E; /* Requested button background color */
  color: #333;
  border-color: #FFCB1E;
  box-shadow: none;
}

.tab_menu-button.w--current:hover {
  background-color: #FFCB1E;
  opacity: 0.95;
}

/* Tab content */
.tabs_content {
  margin-top: 2rem;
}

.w-tab-pane {
  display: none;
}

.w-tab-pane.w--tab-active {
  display: block;
}

/* Flex layout for schedule items */
.flex_vertical {
  display: flex;
  flex-direction: column;
}

.gap-small {
  gap: 1rem;
}

/* Card styles */
.card {
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  background-color: #fff;
  padding: 0;
  transition: all 0.2s ease;
  overflow: hidden;
  box-shadow: none;
}

.card:hover {
  border-color: #FFCB1E;
  box-shadow: 0 2px 8px rgba(255, 203, 30, 0.1);
}

.card_body {
  padding: 1.5rem;
}

.paragraph_large {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: normal;
}

.heading_h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card_body p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design */

/* Tablet styles */
@media screen and (max-width: 991px) {
  .heading_h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
  }
  
  .heading_h2 {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .tab_menu-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Mobile landscape */
@media screen and (max-width: 767px) {
  .heading_h1 {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
  }
  
  .heading_h2 {
    font-size: 1.75rem;
  }
  
  .subheading {
    font-size: 1rem;
  }
  
  .tabs_nav {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .tab_menu-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 1rem;
  }
  
  .card_body {
    padding: 1.25rem;
  }
  
  .heading_h3 {
    font-size: 1.125rem;
  }
}

/* Mobile portrait */
@media screen and (max-width: 479px) {
  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .heading_h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
  }
  
  .heading_h2 {
    font-size: 1.5rem;
  }
  
  .header {
    margin-bottom: 2rem;
  }
  
  .tabs_nav {
    margin-bottom: 1.5rem;
  }
  
  .tab_menu-button {
    padding: 0.875rem;
    font-size: 0.875rem;
  }
  
  .card_body {
    padding: 1rem;
  }
  
  .paragraph_large {
    font-size: 0.8rem;
  }
  
  .heading_h3 {
    font-size: 1rem;
  }
  
  .card_body p {
    font-size: 0.85rem;
  }
}

/* Additional utility classes */
.margin-bottom_xsmall {
  margin-bottom: 0.5rem;
}

.width_100percent_mobile-l {
  width: 100%;
}

.text-align_center {
  text-align: center;
}

/* Webflow tab functionality support */
.w-tab-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.w-tab-menu {
  position: relative;
}

.w-tab-content {
  position: relative;
}