@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Yantramanav:400,700");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
:root {
  --dark-color: hsla(0, 0%, 3.3%, 1);
  --light-color: hsla(0, 0%, 90%, 1);
  --gold-color: rgb(177, 129, 11);
  --gray-color: hsla(0, 0%, 10.3%, 1);
  --bg-color: hsla(43.2, 67.4%, 99%, 1);
  --slightly-darker-bg-color:hsla(50, 99.5%, 92.9%, 1);
  --white-color: hsla(0, 0%, 99%, 1);
  --black-color: hsla(0,0,0,1);
  --nav-height: 50px;
}

/*---------------------------------------------*/
html {
  font-size: 16px;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-width: 300px;
  overflow-x: hidden;
  font-family: "Yantramanav", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-color);
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

.main-container {
  width: 100%;
  height: auto;
  margin-top: var(--nav-height);
  padding-bottom: calc(var(--nav-height) + 30px);
  padding-left: 3vw;
  padding-right: 3vw;
  background: var(--bg-color);
  overflow-x: hidden;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.page {
  max-width: 850px;
  margin: 0 auto;
  padding-top: 75px;
}
.page-title {
  font-size: 3rem;
  font-weight: 500;
  color: var(--gold-color);
  margin: 0;
  position: relative;
  display: inline-block;
}
.page-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-color), transparent);
  border-radius: 2px;
}
.page-divider {
  width: 50%;
  color: var(--gold-color);
  margin: 10px 0 50px 0;
  height: 2px;
  background: var(--gold-color);
  border: none;
}
.page-divider-dark {
  width: 50%;
  color: var(--dark-color);
  margin: 10px 0 15px 0;
  height: 2px;
  background: var(--dark-color);
  border: none;
}
.page-text {
  font-size: 1.3rem;
  line-height: 1.95rem;
  text-align: justify;
  color: var(--gray-color);
}
.page-text-a {
  text-decoration: none;
  color: hsl(207.8, 46.4%, 49.3%);
}
.page-text-a:hover, .page-text-a:focus {
  color: hsl(207.7, 87.7%, 32.6%);
  transition: all 0.3s ease-out;
}
.page-text-a:active {
  color: var(--gold-color);
}

.footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  background: var(--slightly-darker-bg-color);
  color: var(--gray-color);
}
.footer-span {
  height: 100%;
  vertical-align: middle;
  display: inline-block;
}
.footer-text {
  padding: 0;
  margin: 0;
  vertical-align: middle;
  display: inline-block;
  font-size: 1rem;
  padding: 15px 0;
}

@media screen and (max-width:950px) {
  html {
    font-size: 13px;
  }
  .page {
    width: 90%;
    margin: 0 auto;
  }
  .page-divider {
    width: 90%;
  }
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  min-width: 300px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  font-size: 1.2rem;
  background: rgba(255, 252, 238, 0.95);
  backdrop-filter: blur(10px);
  height: var(--nav-height);
  padding: 5px 40px 0 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.nav-logo {
  align-self: stretch;
}
.nav-logo-text {
  cursor: pointer;
  color: var(--gray-color);
  vertical-align: middle;
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-logo-text:hover, .nav-logo-text:focus {
  color: var(--gold-color);
  transition: all 0.4s ease-in;
}
.nav-logo-text:active {
  text-decoration: underline;
}
.nav-valign {
  height: 100%;
  vertical-align: middle;
  display: inline-block;
}
.nav-bar {
  list-style: none;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.nav-bar-item {
  align-self: stretch;
  /* margins */
  margin: 0 10px;
}
.nav-bar-item:first-child {
  margin-left: 0;
}
.nav-bar-item:last-child {
  margin-right: 0;
}
.nav-bar-item {
  /*------------*/
}
.nav-bar-item-active a {
  border-bottom: 2px solid var(--dark-color);
}
.nav-bar-item-a {
  color: var(--dark-color);
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
}
.nav-bar-item-a:hover, .nav-bar-item-a:focus {
  color: var(--gold-color);
  transition: all 0.3s ease-out;
}
.nav-bar-item-a:active {
  color: var(--gold-color);
  border-bottom: 2px solid var(--gold-color);
}

.m-nav {
  display: none;
  background: var(--slightly-darker-bg-color);
  font-size: 1.2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.m-nav-top {
  height: var(--nav-height);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.m-nav-top-item {
  align-self: stretch;
}
.m-nav-top-item-valign {
  height: 100%;
  vertical-align: middle;
  display: inline-block;
}
.m-nav-top-item-logo {
  align-self: stretch;
  cursor: pointer;
  color: var(--dark-color);
  vertical-align: middle;
  display: inline-block;
  margin: 0;
  padding: 5px 0 0 0;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}
.m-nav-top-item-logo:hover, .m-nav-top-item-logo:focus {
  color: var(--gold-color);
  transition: all 0.4s ease-in;
}
.m-nav-top-item-logo:active {
  text-decoration: underline;
}
.m-nav-top-item-hamburger {
  font-size: 2rem;
}
.m-nav-top-item-hamburger:before {
  content: "≡";
}
.m-nav-top-item-hamburger {
  vertical-align: middle;
  border: none;
  background: transparent;
  cursor: pointer;
}
.m-nav-top-item-hamburger:hover, .m-nav-top-item-hamburger:active {
  color: var(--gold-color);
  transition: all 0.3s ease-out;
}
.m-nav-top-item-hamburger:active {
  color: var(--gold-color);
}
.m-nav-bar {
  height: calc(100vh - var(--nav-height));
  display: none;
  list-style: none;
  width: 100%;
}
.m-nav-bar-item {
  /* margins */
  margin: 15px 0;
}
.m-nav-bar-item:first-child {
  margin-top: 0;
}
.m-nav-bar-item:last-child {
  margin-bottom: 0;
}
.m-nav-bar-item {
  /*------------*/
  text-align: center;
  font-size: 1.7rem;
}
.m-nav-bar-item-active a {
  border-bottom: 2px solid var(--light-color);
}
.m-nav-bar-item-a {
  color: var(--light-color);
  text-decoration: none;
}
.m-nav-bar-item-a:hover, .m-nav-bar-item-a:focus {
  color: var(--dark-color);
  transition: all 0.3s ease-out;
}
.m-nav-bar-item-a:active {
  color: var(--dark-color);
  border-bottom: 2px solid var(--dark-color);
}
.m-nav-active {
  height: 100vh;
  background: var(--gold-color);
}
.m-nav-active .m-nav-top {
  color: var(--light-color);
}
.m-nav-active .m-nav-top-item-hamburger, .m-nav-active .m-nav-top-item-logo {
  color: var(--light-color);
}
.m-nav-active .m-nav-top-item-hamburger:hover, .m-nav-active .m-nav-top-item-hamburger:focus, .m-nav-active .m-nav-top-item-logo:hover, .m-nav-active .m-nav-top-item-logo:focus {
  color: var(--dark-color);
  transition: all 0.3s ease-out;
}
.m-nav-active .m-nav-top-item-hamburger:active, .m-nav-active .m-nav-top-item-logo:active {
  color: var(--dark-color);
}
.m-nav-active .m-nav-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.m-nav-active {
  transition: all 0.3s ease-in;
}

@media screen and (max-width:950px) {
  .nav {
    display: none;
  }
  .m-nav {
    display: block;
  }
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 0;
  animation: dropdownSlide 0.3s ease-out;
  padding: 8px 0;
  z-index: 1000;
}
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--dark-color);
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}
.dropdown-menu a:hover {
  background: linear-gradient(90deg, rgba(206, 184, 136, 0.1) 0%, transparent 100%);
  border-left-color: var(--gold-color);
  padding-left: 24px;
}
.dropdown:hover .dropdown-menu, .dropdown-menu:hover {
  display: block;
}
.dropdown-arrow {
  margin-left: 5px;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}
.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
:root {
  --primary-gold: #CEB888;
  --primary-gold-dark: #b8a678;
  --primary-gold-light: #e8dcc8;
  --accent-blue: #667eea;
  --accent-purple: #764ba2;
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
}

.hack-button {
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}
.hack-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.hack-button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}
.hack-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.hack-button:active::after {
  width: 300px;
  height: 300px;
}

.component,
.component-light,
.component-light-yellow {
  transition: all var(--transition-base);
}
.component:hover,
.component-light:hover,
.component-light-yellow:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.component-image {
  transition: all var(--transition-base);
}
.component-image:hover {
  transform: scale(1.05) rotate(2deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.scale-in {
  animation: scaleIn 0.4s ease-out;
}

.dropdown-menu {
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.dropdown-menu a {
  transition: all var(--transition-fast);
}
.dropdown-menu a:hover {
  background: linear-gradient(90deg, var(--primary-gold-light) 0%, transparent 100%);
  padding-left: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: var(--primary-gold);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

*:focus-visible {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

img[data-loaded=false] {
  filter: blur(10px);
  transition: filter 0.3s;
}
img[data-loaded=true] {
  filter: blur(0);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--neutral-100);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold-dark);
}

@media print {
  .nav,
  .m-nav,
  .hack-button {
    display: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.masthead {
  margin-top: 40px;
  margin-bottom: 6vh;
  text-align: center;
  padding: 0 3vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.masthead-title {
  color: var(--gold-color);
  font-size: 4rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
}
.masthead-subtitle {
  color: var(--gray-color);
  font-weight: 400;
  font-size: 1.4rem;
  margin: 0;
  line-height: 1.6;
}
.masthead-logo {
  margin: 30px 0;
  width: 300px;
  filter: drop-shadow(0 4px 12px rgba(177, 129, 11, 0.2));
  transition: transform 0.3s ease;
}
.masthead-logo:hover {
  transform: scale(1.05);
}
.masthead-header {
  color: var(--gold-color);
  font-weight: 600;
  font-size: 2.5rem;
  margin: 0 0 2vh 0;
  position: relative;
  display: inline-block;
}
.masthead-header::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
  border-radius: 2px;
}

.image {
  object-fit: scale-down;
}
.image-1 {
  background-image: url("./../../images/home/1.jpeg");
}

.scavengerBox {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3vh 3vw 3vh 3vw;
  margin: 3vh 3vw 3vh 3vw;
  border-style: solid;
  border-width: medium;
  border-color: var(--dark-color);
  background-color: var(--light-color);
}

.scavengerButton {
  cursor: pointer;
  display: block;
  border: 3px solid var(--gold-color);
  background: transparent;
  color: var(--gold-color);
  font-weight: bold;
  padding: 10px 20px;
  margin-top: 3vh;
  width: 50vw;
}
.scavengerButton:hover, .scavengerButton:focus {
  background: var(--gold-color);
  color: var(--bg-color);
  transition: all 0.3s ease-in;
}
.scavengerButton:active {
  -webkit-box-shadow: inset 0px 0px 2px 2px rgb(85, 85, 85);
  -moz-box-shadow: inset 0px 0px 2px 2px rgb(85, 85, 85);
  box-shadow: inset 0px 0px 2px 2px rgb(85, 85, 85);
}

.component {
  text-align: center;
  margin: 4vh auto;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6vh 5vw;
  background: rgb(240, 240, 242);
  border-radius: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.component.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.component:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(177, 129, 11, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
}
.component-text {
  color: var(--gray-color);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 2vh 0;
  max-width: 900px;
}
.component-light {
  background: linear-gradient(135deg, rgb(245, 230, 180) 0%, rgb(240, 220, 160) 100%);
  text-align: center;
  margin: 4vh auto;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6vh 5vw;
  border-radius: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.component-light.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.component-light:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(177, 129, 11, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
}
.component-image {
  width: 200px;
  height: 200px;
  background: var(--white-color);
  margin: 0 auto 4vh auto;
  border: 3px solid var(--gold-color);
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(177, 129, 11, 0.2);
}
.component-image:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 8px 20px rgba(177, 129, 11, 0.3);
}
.component-image-center {
  width: 200px;
  height: 200px;
  background: var(--white-color);
  margin: 0 auto 4vh auto;
  border: 3px solid var(--gold-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(177, 129, 11, 0.2);
}
.component-image-center:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 8px 20px rgba(177, 129, 11, 0.3);
}
.component-poster {
  width: 500px;
  margin: 0 auto 4vh auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.component-poster-center {
  display: block;
  width: 500px;
  max-width: 90%;
  margin: 3vh auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hack-button {
  cursor: pointer;
  display: inline-block;
  border: none;
  background: linear-gradient(135deg, var(--gold-color) 0%, rgb(157, 114, 9) 100%);
  color: var(--white-color);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 32px;
  margin-top: 3vh;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(177, 129, 11, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.hack-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.hack-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(177, 129, 11, 0.4);
}
.hack-button:hover::before {
  left: 100%;
}
.hack-button:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(177, 129, 11, 0.3);
}

.hack-button-no-margin {
  cursor: pointer;
  display: block;
  border: 3px solid var(--gold-color);
  background: transparent;
  color: var(--gold-color);
  font-weight: bold;
  padding: 10px 20px;
}
.hack-button-no-margin:hover, .hack-button-no-margin:focus {
  background: var(--gold-color);
  color: var(--bg-color);
  transition: all 0.3s ease-in;
}
.hack-button-no-margin:active {
  -webkit-box-shadow: inset 0px 0px 2px 2px rgb(85, 85, 85);
  -moz-box-shadow: inset 0px 0px 2px 2px rgb(85, 85, 85);
  box-shadow: inset 0px 0px 2px 2px rgb(85, 85, 85);
}

.calendar {
  text-align: center;
  margin-top: 3vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bot-contact {
  text-align: center;
  margin: 4vh auto;
  max-width: 1400px;
  padding: 8vh 5vw;
  background: linear-gradient(135deg, rgb(200, 165, 80) 0%, rgb(210, 175, 90) 100%);
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(177, 129, 11, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.bot-contact.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.bot-contact:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 16px 40px rgba(177, 129, 11, 0.4), 0 8px 20px rgba(0, 0, 0, 0.15);
}
.bot-contact-icons {
  align-self: center;
  flex-direction: row;
  align-items: center;
  display: flex;
  gap: 3vw;
  margin-top: 3vh;
}
.bot-contact-icons img {
  align-self: center;
  max-width: 80px;
  max-height: 80px;
  width: 12vw;
  height: 12vw;
  background: var(--white-color);
  border-radius: 50%;
  padding: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.bot-contact-icons img:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.bot-contact-text {
  color: var(--white-color);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 1vh 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.bot-contact-text a {
  color: var(--white-color);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.bot-contact-text a:hover {
  text-decoration-color: var(--white-color);
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

* {
  box-sizing: border-box;
}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  margin: auto;
  text-align: center;
  margin-top: 3vh;
}

.SlideImg {
  max-width: 100%;
  max-height: 100%;
  border-style: solid;
}

/* Hide the images by default */
.mySlides {
  display: none;
  max-width: 80%;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: var(--dark-color);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  vertical-align: top;
  line-height: 320px;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.Slidetext {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width:950px) {
  .masthead {
    margin-top: 60px;
    padding: 0 5vw;
  }
  .masthead-title {
    font-size: 2.5rem;
  }
  .masthead-subtitle {
    font-size: 1.1rem;
  }
  .masthead-logo {
    width: 180px;
  }
  .masthead-header {
    font-size: 2rem;
  }
  .component,
  .component-light {
    margin: 3vh 2vw;
    padding: 4vh 4vw;
    border-radius: 20px;
  }
  .component-text,
  .component-light-text {
    font-size: 1.1rem;
  }
  .component-image, .component-image-center,
  .component-light-image,
  .component-light-image-center {
    width: 160px;
    height: 160px;
  }
  .component-poster,
  .component-light-poster {
    width: 90%;
    max-width: 400px;
  }
  .bot-contact {
    margin: 3vh 2vw;
    padding: 5vh 4vw;
    border-radius: 20px;
  }
  .bot-contact-text {
    font-size: 1.2rem;
  }
  .bot-contact-icons img {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
  }
  .hack-button {
    font-size: 1rem;
    padding: 12px 24px;
  }
}
.faq-container {
  max-width: 800px;
  margin: 3vh auto;
}

.faq-question {
  background: var(--white-color);
  padding: 20px 25px;
  margin: 15px 0;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-color);
  display: flex;
  align-items: center;
  gap: 15px;
}
.faq-question:hover {
  background: var(--slightly-darker-bg-color);
  box-shadow: 0 4px 12px rgba(177, 129, 11, 0.15);
  transform: translateY(-2px);
}
.faq-question .plus-icon {
  color: var(--gold-color);
  font-size: 1.5rem;
  font-weight: bold;
  min-width: 25px;
  transition: transform 0.3s ease;
}
.faq-question.active .plus-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: rgb(250, 250, 250);
  border-radius: 0 0 12px 12px;
  margin-top: -15px;
  padding: 0 25px;
}
.faq-answer.show {
  max-height: 1000px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.faq-answer ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 10px 0;
}
.faq-answer ul li {
  color: var(--gray-color);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 10px 0;
}

/*
.background{
    background-image: url(/images/other/council.jpg);
    background-size: 100%;
    background-attachment: fixed;
    background-size: cover;
    max-width: 100%;
    width: 100%;
    //background-color: aqua;
}
*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.page-council {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0;
  animation: fadeIn 0.8s ease-out;
}
.page-council-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-color);
  margin: 0 0 15px 0;
  padding: 0;
  position: relative;
  display: inline-block;
  animation: slideIn 0.6s ease-out;
}
.page-council-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-color), transparent);
  border-radius: 2px;
}
.page-council-text {
  font-size: 1.1rem;
  line-height: 1.8rem;
  color: var(--gray-color);
  margin-bottom: 30px;
  animation: fadeInUp 0.7s ease-out 0.2s backwards;
}
.page-council-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 10px 0;
}
.page-council-members-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  gap: 20px;
  padding: 10px 0 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-color) var(--slightly-darker-bg-color);
}
.page-council-members-scroll::-webkit-scrollbar {
  height: 8px;
}
.page-council-members-scroll::-webkit-scrollbar-track {
  background: var(--slightly-darker-bg-color);
  border-radius: 10px;
}
.page-council-members-scroll::-webkit-scrollbar-thumb {
  background: var(--gold-color);
  border-radius: 10px;
}
.page-council-members-scroll::-webkit-scrollbar-thumb:hover {
  background: rgb(157, 114, 9);
}
.page-council-members-member {
  background: var(--white-color);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out backwards;
}
.page-council-members-member:nth-child(1) {
  animation-delay: 0.1s;
}
.page-council-members-member:nth-child(2) {
  animation-delay: 0.2s;
}
.page-council-members-member:nth-child(3) {
  animation-delay: 0.3s;
}
.page-council-members-member:nth-child(4) {
  animation-delay: 0.4s;
}
.page-council-members-member:nth-child(5) {
  animation-delay: 0.5s;
}
.page-council-members-member:nth-child(6) {
  animation-delay: 0.6s;
}
.page-council-members-member:nth-child(7) {
  animation-delay: 0.7s;
}
.page-council-members-member:nth-child(8) {
  animation-delay: 0.8s;
}
.page-council-members-member:nth-child(9) {
  animation-delay: 0.9s;
}
.page-council-members-member:nth-child(10) {
  animation-delay: 1s;
}
.page-council-members-member:nth-child(11) {
  animation-delay: 1.1s;
}
.page-council-members-member:nth-child(12) {
  animation-delay: 1.2s;
}
.page-council-members-member:nth-child(13) {
  animation-delay: 1.3s;
}
.page-council-members-member:nth-child(14) {
  animation-delay: 1.4s;
}
.page-council-members-member:nth-child(15) {
  animation-delay: 1.5s;
}
.page-council-members-member:nth-child(16) {
  animation-delay: 1.6s;
}
.page-council-members-member:nth-child(17) {
  animation-delay: 1.7s;
}
.page-council-members-member:nth-child(18) {
  animation-delay: 1.8s;
}
.page-council-members-member:nth-child(19) {
  animation-delay: 1.9s;
}
.page-council-members-member:nth-child(20) {
  animation-delay: 2s;
}
.page-council-members-member::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-color), rgb(157, 114, 9));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.page-council-members-member:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 16px 32px rgba(177, 129, 11, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
}
.page-council-members-member:hover::before {
  transform: scaleX(1);
}
.page-council-members-member:hover .page-council-members-member-img {
  transform: scale(1.05) rotate(2deg);
  border-color: var(--gold-color);
  box-shadow: 0 8px 16px rgba(177, 129, 11, 0.2);
}
.page-council-members-member:hover .page-council-members-member-name {
  color: var(--gold-color);
}
.page-council-members-member-img {
  width: 180px;
  height: 180px;
  background: var(--slightly-darker-bg-color);
  margin: 0 auto 20px auto;
  border: 3px solid var(--gray-color);
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.page-council-members-member-name {
  color: var(--gray-color);
  margin: 0 0 8px 0;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.page-council-members-member-position {
  color: var(--gold-color);
  margin: 0 0 5px 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.page-council-members-member-details {
  color: rgb(70, 70, 70);
  font-size: 0.9rem;
  margin: 5px 0 0 0;
  padding: 0;
}

.page {
  animation: fadeIn 0.8s ease-out;
}
.page-title {
  animation: slideIn 0.6s ease-out;
}
.page-text {
  animation: fadeInUp 0.7s ease-out 0.2s backwards;
}
.page-divider {
  animation: fadeInUp 0.5s ease-out 0.3s backwards;
}

@media screen and (max-width:950px) {
  .page-council {
    width: 95%;
    padding: 30px 0;
  }
  .page-council-title {
    font-size: 1.6rem;
  }
  .page-council-text {
    font-size: 1rem;
    line-height: 1.6rem;
  }
  .page-council-members {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .page-council-members-member {
    padding: 20px;
  }
  .page-council-members-member-img {
    width: 150px;
    height: 150px;
  }
  .page-council-members-member-name {
    font-size: 1.1rem;
    font-weight: 600;
  }
  .page-council-members-member-position {
    font-size: 0.95rem;
  }
  .page-council-members-member-details {
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 600px) {
  .page-council-members {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.resource-link {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold-color) 0%, rgb(157, 114, 9) 100%);
  padding: 18px 30px;
  border-radius: 12px;
  margin: 2vh 0 1vh 0;
  box-shadow: 0 4px 12px rgba(177, 129, 11, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.resource-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.resource-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(177, 129, 11, 0.4);
}
.resource-link:hover::before {
  left: 100%;
}
.resource-link:hover h2 {
  color: var(--white-color);
}
.resource-link:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(177, 129, 11, 0.3);
}
.resource-link h2 {
  color: var(--white-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
}

:root {
  --dark-color: hsla(0, 0%, 3.3%, 1);
  --light-color: hsla(0, 0%, 90%, 1);
  --gold-color: rgb(177, 129, 11);
  --gray-color: hsla(0, 0%, 10.3%, 1);
  --bg-color: hsla(43.2, 67.4%, 99%, 1);
  --slightly-darker-bg-color:hsla(50, 99.5%, 92.9%, 1);
  --white-color: hsla(0, 0%, 99%, 1);
  --black-color: hsla(0,0,0,1);
  --nav-height: 50px;
}

/*---------------------------------------------*/
.page-table {
  text-align: left;
  border-collapse: collapse;
  color: var(--gray-color);
  font-size: 1.2rem;
}
.page-table-thead {
  border-bottom: 1px solid;
  border-color: var(--gold-color);
}
.page-table-th {
  padding: 10px;
}
.page-table-td {
  padding: 10px;
}

.hack-button {
  cursor: pointer;
  display: block;
  border: 2px solid var(--gold-color);
  background: transparent;
  color: var(--gold-color);
  font-weight: bold;
  padding: 10px 20px;
}
.hack-button:hover, .hack-button:focus {
  background: var(--gold-color);
  color: var(--bg-color);
  transition: all 0.3s ease-in;
}
.hack-button:active {
  -webkit-box-shadow: inset 0px 0px 2px 2px rgb(85, 85, 85);
  -moz-box-shadow: inset 0px 0px 2px 2px rgb(85, 85, 85);
  box-shadow: inset 0px 0px 2px 2px rgb(85, 85, 85);
}

/*# sourceMappingURL=main.css.map */
