/* controls color for the website */

:root
{ --color1:#2c3e50;
   --color2: #bdc3c7;
   --color3: rgb(117, 11, 131);
   --color4: #34495e;
   --color5: #9b59b6;
   font-family: "montserrat-alternates", sans-serif;
   font-weight: 600;
   font-style: italic; 
}


body{
  background-color: var(--color1);
  margin: 0;
  font-family: "montserrat-alternates", sans-serif;
  font-weight: 600;
  font-style: italic;

}
.center-heading {text-align: center;
   margin-top: 20px;

} 


.typewriter h1 {
      overflow: hidden;
      border-right: 0.15em solid var(--color2);
      white-space: nowrap;
      margin: 0 auto;
      letter-spacing: .1em;
      width: 0;
      animation:
        typing 5s steps(30, end) forwards,
        remove-cursor 3s forwards;
    }

    @keyframes typing {
      from { width: 0 }
      to { width: 90% }
    }

    @keyframes remove-cursor {
      0% { border-right: 0.15em solid var(--color2); }
      100% { border-right: none; }
    }




h1
{text-align: center;
   color: var(--color2);

}

.bannercontent{
   justify-content: center;
   display: flex;
}

h2{
   text-align: center;
   color: var(--color2);
}

h3{
   text-align: center;
   color: var(--color2);
}

/* Hide toggle by default */
.mobile-nav-toggle {
  display: none;
  font-size: 2rem;
  color: var(--color2);
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
}
/* Show hamburger on small screens */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }

  .hide-nav {
    display: none;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    background-color: var(--color3);
    width: 250px;
    height: 100%;
    padding: 20px;
    z-index: 99;
  }

  .mobile-nav.active {
    display: block;
  }

  .nav-bar {
    transform: none; /* remove slide-in effect on mobile */
    position: static;
  }

  .nav-bar ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .dropdown-content {
    position: static;
    max-width: none;
  }
}



/*Defines hide-nav container*/
.hide-nav{
height: 100%;
width: 150px;
position: fixed;
top: 0;
left: 0;
z-index: 10;
}

/*slides nav-bar in from left side of screen*/
.nav-bar{
   display: block;
   transform: translateX(-100%);
   transition: transform 0.4s ease-in-out;
   position: relative;
   width: 150px;
   height: 100%;
   margin-top: 0;
   z-index: 5;

}

/*reveals nav-bar on hover*/
.hide-nav:hover .nav-bar{
   transform: translateX(0);
}

.dropdown{
   position: relative;
}

/*set formating for dropdown and set to hide initially*/
.dropdown-content{
   background-color: var(--color3);
   position: absolute;
   max-width: 150px;
   top: 0%; /*replaces margin-top and this plus position absolute helps position 
   and keeps dropwdown visible when hovering*/
   left: 120px;
   color: var(--color1);
   z-index: 6;
   display:none;
}

/*only display dropdowncontent on hover*/
.dropdown:hover .dropdown-content{
   display: block;
   color: var(--color4);
}

.dropdown-content li{
   display: block;
}


ul
{
list-style-type: none;
background-color: var(--color3);
padding: 8px;
}

li {

   display: block;
   padding: inherit;

}

 a{color: var(--color2);

   text-decoration: none;
}

a:hover{
   text-decoration: underline;
   color: var(--color2);



}


/*Gallery with square grid thumbnails*/
.photocontainer{
width: 100%;
border: var(--color4) 5px;
background-color: var(--color1);
}



.photo-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      max-width: 80%;
      margin: 40px auto;
    }

    .gallery-item {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      cursor: pointer;
    }

.gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

.thumbnail {
  width: 300px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
    
.thumbnail:hover {
  transform: scale(1.05);
}

#overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
  
#overlay img {
  max-width: 90%;
  max-height: 90%;
}
  
#overlay:active {
  cursor: zoom-out;
}




    
.VidContainer{
   display: flex;
   justify-content: center;
   gap: 20px; /* space between videos */
   flex-wrap: wrap;  /* allows stacking on small screens */
   margin: 5%
}

.VidContainer iframe{
   width: 100%;
   max-width: 45%;/* each video takes up to 45% of the container */
   max-height: 100%;
   border: 5px solid var(--color2);
}

.AnimationContainer{
    display: flex;
   justify-content: center;
   gap: 20px; /* space between videos */
   flex-wrap: wrap;  /* allows stacking on small screens */
}

.AnimationContainer iframe{
   width: 100%;
   max-width: 45%;/* each video takes up to 45% of the container */
   max-height: 100%;
   border: 5px solid var(--color2);
}

.CenterGrid {
display:flex;
justify-self: center;
width: 90%;

}




/*Create Grid for images of various size*/
.designcontainer {
  display: grid;
  grid-template-areas:
    "header header"
    "menu content"
    "footer footer";
  grid-template-columns: 1fr 3fr;
  gap: 5px; /*inside line thickness*/
  background-color: var(--color2);
  padding: 5px; /*Border THickness*/
  max-height: fit-content;
  width: fit-content;
}


   .designcontainer > div {
      background-color: var(--color4);
      padding: 5px;
   }

   .designcontainer > div.header {
      width: fit-content;
      grid-area: header;
      display: flex;
      justify-content: center;
     background-color: var(--color4)
   }

   .designcontainer > div.menu {
      grid-area: menu;
      display: flex;
      justify-content: center;
      background-color: var(--color4);
   }

   .designcontainer > div.content {
      grid-area: content;
      justify-content: center;
      display: inline-flex;
      width: fit-content;
      background-color: var(--color4);
   }

   .designcontainer > div.content > span{
   padding-left: 10px;
   padding-right: 10px;
   }

   .designcontainer > div.footer {
   grid-area: footer;
   }

.bottombanner{
   background-color: var(--color2);
   width: 80%;
   justify-content: center;
}
        
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/** Base **/

*,
::before,
::after {
  box-sizing: border-box;
}

* {
  border: 0;
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-family-body);
  font-optical-sizing: auto;
  font-style: normal;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

[type="checkbox"],
[type="radio"],
[type="range"] {
  appearance: none;
  flex-shrink: 0;
  padding: 0;
  user-select: none;
}

[type="checkbox"]:focus,
[type="radio"]:focus,
[type="range"]:focus {
  outline: none;
}

/** Components **/

.fs-form {
  display: grid;
  row-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) {
  column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

fieldset {
  display: grid;
  margin: 1.5rem 0;
  row-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) fieldset {
  column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  grid-column: 1 / -1;
}

.fs-fieldset-title {
  color: var(--color-text-default);
  font-family: var(--font-family-display);
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  grid-column: 1 / -1;
}

.fs-field {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.fs-label {
  color: var(--color-text-default);
  display: block;
  font-family: var(--font-family-display);
  font-size: 1rem;
  line-height: 1.25rem;
}

.fs-description {
  color: var(--color-text-muted);
  display: block;
  font-size: 1rem;
  line-height: 1.25rem;
}

.fs-button-group {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) .fs-button-group {
  grid-column: 1 / -1;
}

.fs-button {
  background-color: var(--color-primary);
  border-radius: 9999px;
  color: white;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  padding: 0.75rem 2rem;
  transition-duration: 200ms;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fs-button:hover {
  background-color: var(--color-primary-active);
}

.fs-button:focus-visible {
  background-color: var(--color-primary-active);
  outline: 4px solid var(--color-highlight);
}

.fs-input,
.fs-select {
  appearance: none;
  border-radius: 9999px;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: var(--color-text-default);
  font-size: 1rem;
  height: 3rem;
  line-height: 1.5rem;
  outline: none;
  padding-left: 1rem;
  padding-right: 1rem;
}

.fs-input:focus-visible,
.fs-select:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1px inset;
}

.fs-input::placeholder {
  color: var(--color-text-muted);
}

.fs-checkbox-group,
.fs-radio-group {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.fs-checkbox-field,
.fs-radio-field {
  column-gap: 0.5rem;
  display: flex;
}

:is(.fs-checkbox-field, .fs-radio-field) .fs-label + .fs-description {
  margin-top: 0.25rem;
}

.fs-checkbox-wrapper,
.fs-radio-wrapper {
  align-items: center;
  display: flex;
  height: 1.25rem;
}

.fs-checkbox,
.fs-radio {
  background-color: #fff;
  border: 1px solid var(--color-border-default);
  height: 1.25rem;
  width: 1.25rem;
}

.fs-checkbox {
  border-radius: 0.25rem;
}

.fs-radio {
  border-radius: 100%;
}

.fs-checkbox:checked,
.fs-radio:checked {
  background-color: var(--color-primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-color: transparent;
}

.fs-checkbox:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

.fs-radio:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

.fs-checkbox:focus-visible,
.fs-radio:focus-visible {
  border-color: var(--color-border-active);
  outline: 4px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-checkbox:checked:focus-visible,
.fs-radio:checked:focus-visible {
  border-color: transparent;
}

.fs-select {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.625em 1.625em;
  padding-right: 2.875rem;
}

.fs-slider {
  background: transparent;
  cursor: pointer;
  height: 1.25rem;
  width: 100%;
}

.fs-slider::-moz-range-track {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  height: 0.5rem;
}

.fs-slider::-webkit-slider-runnable-track {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  height: 0.5rem;
}

.fs-slider::-moz-range-thumb {
  background-color: var(--color-primary);
  border: none; /* Removes extra border that FF applies */
  border-radius: 50%;
  height: 1.25rem;
  width: 1.25rem;
}

.fs-slider::-webkit-slider-thumb {
  appearance: none;
  background-color: var(--color-primary);
  border-radius: 50%;
  height: 1.25rem;
  margin-top: -0.375rem; /* Centers thumb on the track */
  width: 1.25rem;
}

.fs-slider:focus-visible::-moz-range-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fs-slider:focus-visible::-webkit-slider-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fs-switch-field {
  align-items: center;
  column-gap: 0.75rem;
  display: flex;
  justify-content: space-between;
}

.fs-switch {
  background-color: var(--color-background-alt);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2.75' fill='white'/%3e%3c/svg%3e");
  background-position: left center;
  background-repeat: no-repeat;
  border-radius: 1.25rem;
  cursor: pointer;
  height: 1.25rem;
  transition-duration: 200ms;
  transition-property: background-color, background-position;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 2.5rem;
}

.fs-switch:checked {
  background-color: var(--color-primary);
  background-position: right center;
}

.fs-switch:focus-visible {
  outline: 4px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-textarea {
  appearance: none;
  border-radius: 0.75rem;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: var(--color-text-default);
  font-size: 1rem;
  line-height: 1.5rem;
  outline: none;
  padding: 0.5rem 0.75rem;
  resize: vertical;
}

.fs-textarea:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1px inset;
}

.fs-textarea::placeholder {
  color: var(--color-text-muted);
}@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.fsform{
      justify-content: center;
      width: 80%;
}
