:root {
  --orange: #fca311;
  --dark-blue: #14213D;
  --light-blue: #007ce0;
  --black: #000;
  --white: #fff;
  --grey: #e5e5e5;
}

#main-header {
	background: url("../../assets/images/backgrounds/header-background.png") no-repeat fixed center;
	background-size: cover;
    height: 70vh; /* Full viewport height */
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 15px 0;
} 


#summit > h2 {
    text-align: center;
    text-decoration: underline;
    margin: 30px;
    color: #fff;
}

.info-section {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: center;
    padding: 20px 10px;
    margin: 10px;
    background-color: #000;
  }
  
.info-box {
    text-align: center;
    flex: 1;
    padding: 10px;
}

.info-box i {
    font-size: 36px;
    margin-bottom: 10px;
    color: #007ce0;
  }
  
  .info-box h3 {
    font-size: 18px;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #fca311;
  }
  
  .info-box p {
    font-size: 14px;
    margin: 0;
    color: #ccc;
  }

  .schedule-container {
    background-color: #2c3e50;
    box-shadow: 5.5px 4.5px 0 #2c3a47;
    border-radius: 8px;
    padding: 20px;
    max-width: 600px;
    margin: 10px auto 10px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); */
  }
  
  .schedule-header h2 {
    margin: 0;
    color: #007ce0;
  }
  
  .schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
  }
  
  .schedule-table .event-row {
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .schedule-table .event-row:hover {
    background-color: #34495e;
  }
  
  .schedule-table td {
    padding: 10px;
    border-bottom: 1px solid #34495e;
    color: #fff;
  }
  
  .schedule-table td:first-child {
    width: 40%;
    color: #fca311;
  }
  
  .schedule-table .hidden-info {
    display: none;
    background-color: #34495e;
    color: #c5e4e8;
    font-size: 0.9rem;
    transition: all 0.2s ease;
  }
  
  .schedule-table .event-row:hover + .hidden-info {
    display: table-row;
    animation: expand 0.2s ease-in-out;
  }
  
  .schedule-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #fca311;
    text-align: center;
  }
  
  @keyframes expand {
    from {
      opacity: 0;
      transform: scaleY(0);
    }
    to {
      opacity: 1;
      transform: scaleY(1);
    }
  }

#handbook {
    /* display: flex; */
    margin-top: 10px;
}

#handbook > h2 {
    color: white;
    text-decoration: underline;
    text-align: center; /* Center the text horizontally */
    margin: 0 0 20px 0; /* Add space below the heading */
    font-size: 24px;    /* Adjust font size as needed */
}

#handbook iframe {
    display: block;      /* Ensures it starts on a new line */
    margin: 0 auto;      /* Centers the iframe */
    width: 80%;          /* Adjust iframe width */
    height: 600px;       /* Adjust iframe height */
    border: none;        /* Remove border */
}



.accordion-item {
    background: linear-gradient(135deg, #1a1a1a, #141414);
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
  }

.faq-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  border-radius: 10px;
}

  .accordion-header {
    border-bottom: none;
  }
  
  .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1a1a1a, #212121);
    color: #fca311;
  }

  .accordion-button {
    background-color: transparent;
    color: #fca311;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    outline: none;
    box-shadow: none;
  }

  .accordion-button:focus {
    outline: none;
    box-shadow: none;
  }

  .accordion-body {
    background-color: #1d1e1f;
    color: #ffffff;
  }

.accordion-button::after {
    filter: invert(1); /* Makes the arrow white */
}
