/* _content/ebalmun2/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-k459dcepzi] {
  position: relative;
  display: flex;
  flex-direction: column;
}


.content[b-k459dcepzi] {
  margin-top: var(--navbar-height);
}


main[b-k459dcepzi] {
  flex: 1;
}


html[b-k459dcepzi],
body[b-k459dcepzi] {
  height: 100%;
  margin: 0;
}

body[b-k459dcepzi] {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#blazor-error-ui[b-k459dcepzi] {
  color-scheme: light only;
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

  #blazor-error-ui .dismiss[b-k459dcepzi] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
  }


footer[b-k459dcepzi] {
  margin-top: 1rem;
}

header[b-k459dcepzi] {
  background: #fff5f5;
  box-shadow: 0 2px 8px rgba(200, 30, 30, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: slideDown 0.6s cubic-bezier(.77, 0, .18, 1);
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.footer-bottom p[b-k459dcepzi] {
  margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-content[b-k459dcepzi] {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    justify-content: center;
  }

  .footer-bottom-content[b-k459dcepzi] {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom-links[b-k459dcepzi] {
    justify-content: center;
  }
}
/* _content/ebalmun2/Components/Layout/NavMenu.razor.rz.scp.css */
/* Navigation */
.navbar[b-jb6nwn91rt] {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  box-shadow: none;
  display: unset;
}



.nav-container[b-jb6nwn91rt] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
  gap: 2.5rem;
}



.nav-logo[b-jb6nwn91rt] {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #c62828;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 12px;
  text-decoration: none;
}

  .nav-logo img[b-jb6nwn91rt] {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  }

  .nav-logo:hover img[b-jb6nwn91rt] {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(3px 3px 8px rgba(221, 21, 13, 0.4));
  }

.nav-menu[b-jb6nwn91rt] {
  display: flex;
  align-items: center;
  gap: 2rem;
}


.nav-link[b-jb6nwn91rt] {
  text-decoration: none;
  color: #000000;
  font-family: 'SF Pro Text', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
  overflow: visible;
  transition: color 0.3s ease;
}

  .nav-link:hover[b-jb6nwn91rt] {
    color: #c62828;
  }

  .nav-link[b-jb6nwn91rt]::after {
    content: '';
    display: block;
    position: absolute;
    margin-top: 0px;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c62828 60%, #ad1d1d 100%);
    border-radius: 2px;
    transition: width 0.25s cubic-bezier(.77, 0, .18, 1);
  }

  .nav-link:hover[b-jb6nwn91rt]::after {
    width: 100%;
  }



/* Mobil drawer bar */
.nav-toggle[b-jb6nwn91rt] {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1201;
}

  .nav-toggle .bar[b-jb6nwn91rt] {
    width: 28px;
    height: 4px;
    background: #c62828;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
  }

  .nav-toggle:hover .bar[b-jb6nwn91rt] {
      transform: scaleX(1.15);
  }
  .nav-toggle:active .bar[b-jb6nwn91rt] {
    transform: scaleX(0.9);
  }

    .nav-toggle .bar.top.open[b-jb6nwn91rt] {
      transform: rotate(45deg) scaleX(1.235);
      transform-origin: left;
    }

    .nav-toggle .bar.middle.open[b-jb6nwn91rt] {
      transform: scaleX(0);
    }

    .nav-toggle .bar.bottom.open[b-jb6nwn91rt] {
      transform: rotate(-45deg) scaleX(1.235);
      transform-origin: left;
    }


.nav-drawer[b-jb6nwn91rt] {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 260px;
  background: #fff5f5;
  box-shadow: 2px 0 16px rgba(198, 40, 40, 0.08);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.25s cubic-bezier(.77, 0, .18, 1);
  padding-top: 2.5rem;
}

  .nav-drawer.open[b-jb6nwn91rt] {
    display: block;
    transform: translateX(0);
  }

  .nav-drawer ul[b-jb6nwn91rt] {
    list-style: none;
    padding: 0 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-drawer a[b-jb6nwn91rt] {
    color: #c62828;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
  }

    .nav-drawer a:hover[b-jb6nwn91rt] {
      color: #f76161;
    }

.drawer-backdrop[b-jb6nwn91rt] {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  opacity: 1;
  z-index: 1199;
  transition: all 0.25s;
}

  .drawer-backdrop.open[b-jb6nwn91rt] {
    display: block;
    opacity: 1;
    background: rgba(0, 0, 0, 0.18);
  }

body.drawer-open[b-jb6nwn91rt] {
  overflow: hidden;
}

@media (max-width: 992px) {
  .nav-menu[b-jb6nwn91rt] {
    display: none;
  }

  .nav-toggle[b-jb6nwn91rt] {
    display: flex;
  }

  .nav-drawer[b-jb6nwn91rt] {
    display: block;
  }
}
/* _content/ebalmun2/Components/Pages/Committees.razor.rz.scp.css */

/* Komite kartları */
.committee-card[b-l1lria6ev5] {
  width: 500px;
  cursor: pointer;
  text-decoration: none;
}

.committee-card h3[b-l1lria6ev5] {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 1.4rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.committee-topic[b-l1lria6ev5] {
  color: #2563eb;
  font-family: 'SF Pro Text', sans-serif;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.committee-description[b-l1lria6ev5] {
  color: #475569;
  font-family: 'SF Pro Text', sans-serif;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.committee-details[b-l1lria6ev5] {
  display: flex;
  gap: 1rem;
  position: relative;
  bottom: 0rem;
}

.language[b-l1lria6ev5], .level[b-l1lria6ev5] {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.language[b-l1lria6ev5] {
  background: #dbeafe;
  color: #1d4ed8;
}

.level-starter[b-l1lria6ev5] {
  background: #ecfdf5;
  color: #059669;
}

.level-intermediate[b-l1lria6ev5] {
  background: #fdfaec;
  color: #968d05;
}

.level-expert[b-l1lria6ev5] {
  background: #fdecec;
  color: #960505;
}
/* _content/ebalmun2/Components/Pages/Contact.razor.rz.scp.css */
.contact a[b-gbj57kycsm] {
  color: #c62828;
  text-decoration: underline;
}
/* _content/ebalmun2/Components/Pages/Home.razor.rz.scp.css */
/* Hero Section */
.hero[b-wblt2838yu] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-container[b-wblt2838yu] {
  display: flex;
  align-items: center;  
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  gap: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  background: linear-gradient(315deg, #ff6b6b 0%, #764ba2 100%);
}

.hero-content[b-wblt2838yu] {
  color: white;
  text-align: left;
  padding: 2rem 4rem;
  z-index: 10;
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-gallery[b-wblt2838yu] {
  height: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-title[b-wblt2838yu] {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero-subtitle[b-wblt2838yu] {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  letter-spacing: -0.01em;
}

.hero-description[b-wblt2838yu] {
  font-family: 'SF Pro Text', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-info[b-wblt2838yu] {
  display: flex;
  justify-content: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.info-item[b-wblt2838yu] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.hero-buttons[b-wblt2838yu] {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}


.scroll-indicator[b-wblt2838yu] {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 5;
}

.scroll-arrow[b-wblt2838yu] {
  font-size: 2rem;
}


.slideshow-container[b-wblt2838yu] {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: transparent;
  mask: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 15%, rgba(0, 0, 0, 1) 45%);
  -webkit-mask: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 15%, rgba(0, 0, 0, 1) 45%);
  box-sizing: border-box;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  grid-auto-rows: 100%;
}

.slide[b-wblt2838yu] {
  display: block;
  position: relative;
  /* animation: slideIn 0.5s ease-in-out; */
  height: 100%;
  transition: .2s all;
}

.slide.active[b-wblt2838yu] {
  display: block;
}

.slide img[b-wblt2838yu] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-sizing: border-box;
}

.slide-caption[b-wblt2838yu] {
  position: absolute;
  bottom: 4rem;
  left: 2rem;
  right: 2rem;
  color: white;
  padding: 1rem;
  font-family: 'SF Pro Text', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  z-index: 5;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.9), 2px 2px 8px rgba(0, 0, 0, 0.8), 4px 4px 12px rgba(0, 0, 0, 0.6);
}

.slide-prev[b-wblt2838yu],
.slide-next[b-wblt2838yu] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  padding: 1rem;
  cursor: pointer;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.slide-prev[b-wblt2838yu] {
  left: 1rem;
}

.slide-next[b-wblt2838yu] {
  right: 1rem;
}

.slide-prev:hover[b-wblt2838yu],
.slide-next:hover[b-wblt2838yu] {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}


/* About Section */
.features[b-wblt2838yu] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.feature[b-wblt2838yu] {
  text-align: center;
  padding: 2rem;
}

.feature h4[b-wblt2838yu] {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.stat-item[b-wblt2838yu] {
  text-align: center;
  padding: 2rem;
}

.stat-number[b-wblt2838yu] {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--button-accent);
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
  letter-spacing: -0.02em;
}

.stat-item p[b-wblt2838yu] {
  color: var(--bs-secondary);
  font-weight: 500;
  transition: all .25s;
}

.stat-item:hover h3[b-wblt2838yu] {
  transform: scale(1.09);
}

@media (min-width: 1200px) {
  .hero[b-wblt2838yu] {
    height: calc(100vh - var(--navbar-height));
    min-height: 720px !important;
  }
}


/* Mobile Responsiveness */
@media (max-width: 1200px) {

  .hero-container[b-wblt2838yu] {
    height: auto;
    min-height: 100vh;
  }

  .hero-content[b-wblt2838yu] {
    text-align: center;
    padding: 2rem;
    order: 1;
    align-self: center;
    justify-content: center;
  }


  .hero-gallery[b-wblt2838yu] {
    height: 50vh;
    order: 2;
  }

  .slide img[b-wblt2838yu] {
    height: 50vh;
  }

  .hero[b-wblt2838yu] {
    min-height: 100vh;
  }

  .hero-title[b-wblt2838yu] {
    font-size: 2.5rem;
  }

  .hero-subtitle[b-wblt2838yu] {
    font-size: 1.2rem;
  }

  .hero-buttons[b-wblt2838yu] {
        justify-content : center;
  }
  .hero-info[b-wblt2838yu] {
    align-self: center;
  }



  .slideshow-container[b-wblt2838yu] {
    mask: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 15%, rgba(0, 0, 0, 1) 45%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 15%, rgba(0, 0, 0, 1) 45%);
  }
}

@media (max-width: 640px) {
  .hero-info[b-wblt2838yu] {
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .hero-title[b-wblt2838yu] {
    font-size: 2rem;
  }

  .hero-subtitle[b-wblt2838yu] {
    font-size: 1rem;
  }
  .hero-buttons[b-wblt2838yu] {
    flex-direction: column;
  }
}
/* _content/ebalmun2/Components/Pages/Register.razor.rz.scp.css */
/* Registration Section */
.registration[b-upis647jja] {
  padding: 5rem 0;
} 


.info-list[b-upis647jja] {
  display: grid;
  gap: 1.5rem;
}

.info-item[b-upis647jja] {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon[b-upis647jja] {
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.registration-form-container[b-upis647jja] {
  padding: 2rem;
  pointer-events: none;
}

.registration-form[b-upis647jja] {
  pointer-events: none;
}

.form-group[b-upis647jja] {
  margin-bottom: 1.5rem;
}

.form-group label[b-upis647jja] {
  display: block;
  color: #374151;
  font-family: 'SF Pro Text', sans-serif;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.form-group input[b-upis647jja],
.form-group select[b-upis647jja],
.form-group textarea[b-upis647jja] {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'SF Pro Text', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  letter-spacing: -0.01em;
  line-height: normal;
  background-color: #f2f2f286;
}

  .form-group input:focus[b-upis647jja],
  .form-group select:focus[b-upis647jja],
  .form-group textarea:focus[b-upis647jja] {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: transparent;
  }

.form-group textarea[b-upis647jja] {
  resize: vertical;
  min-height: 120px;
}
