@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Global Styles */

* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-left: 0%;
  padding-right: 0%;
  background: #29211e;
}

a{
  text-decoration: none;
}

/* Container Styles */
.container {
  display: flex;
  height: 89vh;
}
.main-wrapper{
  flex: 2;
}

@media only screen and (max-width: 1000px) {
  .container {
    flex-direction: column;
  }
  .side-bar{
    background: #114;
    color: white !important;
  }
  .side-bar a{
    color: #363636 !important;
  }
}



/* Navigation Menu Styles */

nav.nav-menu {
  width: 100%;
  height: 0%;
  background-color:#29211e;
  padding: 2em;
  padding-top: 2%;
  padding-left: 0%;
  padding-right: 0%;
}

nav.nav-menu ul {
  width: 100%;
  border-width: 10px;
  display: flex;
  align-items: center;
  align-content: center;
  list-style: none;
  font-size: clamp(.8rem, 1.2vw, 2rem); 
  font-weight: bold;
  
}

.nav-menu .nav-item {
  padding: 15px;
  transition: background-color 500ms ease-in-out;
}

.nav-menu .nav-item:hover {
  cursor: pointer;
  background-color: #dc5f1f;
}

.nav-menu .nav-item a{
  text-decoration: none;
  color: black;
}


/* Main Content Wrapper Styles */
.main-wrapper {
  background: #a69884;
  padding: 2em;
  padding-top: 0%;
  padding-bottom: 0%;
  padding-left: 0%;
  padding-right: 0%;
}

section {
  margin-bottom: 0%;
  padding-top: 0%;
  padding-bottom: 0%;

}

section.head,
section.youtube-embed {
  text-align: center;
}

.button-link {
  display: block;
  margin: 20px 0 0 0;
  padding: 10px 50px;
  width: fit-content;
  background: #dc5f1f;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  transition: 0.3s transform ease-in-out;
}

.button-link:hover {
  transform: scale(1.05);
}

h1 {
  font-size: 34px;
  margin-top: 0%;
  margin-bottom: 20px;
  color: black;
}

h2 {
  margin-bottom: 20px;
  font-size: 28px;
  text-align: left;
  color: black;

}

h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: black;

}
ul{
  padding-left: 30px;
  text-align: justify;
  color: white;
  }
  
  .side ul{
    text-align: justify;
    margin-bottom: 10px;
    line-height: 1.5rem;
    font-family: "Cormorant SC", sans-serif;
    font-size:30px;

  }

  ol{
    padding-left: 40px;
    }
    
    .side ol{
      text-align: justify;
      margin-bottom: 10px;
      line-height: 1.5rem;
      font-family: "Cormorant SC", sans-serif;
      font-size:1.125em;
  
    }

p {
  text-align: justify;
  margin-bottom: 10px;
  line-height: 1.5rem;
  color: white
  ;
}

img {
  max-width: 100%;
  float: left;
  float: right;
  border-radius: px;
  margin: 0px;
}

.two-col {
  display: flex;
  justify-content: space-between;
  border-radius: 0%;
  gap: 0px;
}

.two-col div {
  width: 100%;
  padding-top: 0%;
  padding-bottom: 0%;
  padding-left: 0%;
  padding-right: 0%;
}

@media only screen and (max-width: 900px) {
  body {
    padding: 0;
  }

  .two-col {
    flex-direction: column;
  }

  .two-col div {
    width: 100%;
  }

  .main-wrapper {
    padding: 5%;
  }
}
.styled-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
}

.styled-table th, .styled-table td {
  border: 1px solid #ddd;
  padding: 8px;
}

.styled-table th {
  background-color: #f2f2f2;
  font-weight: bold;
  text-align: left;
}

/* Footer styling */
footer {
    background-color: #29211e;
    color: white;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 10px;
    display: inline-block;
}

.footer-section p, .footer-section a {
    color: white;
    margin: 5px 0;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    background-color: #29211e;
    border-top: 1px solid #444;
}
.collapsible-group {
  width: 100%;
  max-width: 100%;
  border-radius: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  padding-left: 30%;
  text-align: left;
}

details {
  margin-bottom: 10px;
}

summary {
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  color: #007BFF;
}

details p {
  margin: 10px 0 0;
}