@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPTMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPTBold.woff") format("woff");
  font-weight: 700;
  font-style: normal; 
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPTLight.woff") format("woff");
  font-weight: 400;
  font-style: normal; 
  font-display: swap;
}


:root {
  --blue: #014081;
  --blue-light: #1e78d6;
  --text: #0f172a;
  --bg: #ffffff;
  --bg-light: #F5F5F5;
}

* {
  box-sizing: border-box;
    line-height: 100%;
    margin: 0;
    padding: 0;
  font-family: "Futura PT";
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Futura PT",sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: 1520px;
  margin: auto;
  padding: 0 20px;
}

.countdown-content{
    padding: 0;
}

.header {
  background: var(--blue);
  color: #FBFBFB;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 96px;
}

.lang-switch button {
  background: none;
  border: none;
  color: #FBFBFB;
  cursor: pointer;
  font-weight: 500;
  font-family: 'Futura PT';
  font-size: 24px;
}
.hero-meta li strong{
  font-weight: 500;
}

.lang-switch{
    display: flex;
    align-items: center;
    gap: 16px;
}
/* HERO */
.hero {
  position: relative;
  background: url("../assets/hero.png") center/cover no-repeat;
  color: #FBFBFB;
  height: 640px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  padding: 120px 0;
}

.hero h1 {
  font-size: 56px;
  max-width: 1000px;
  text-shadow: 0px 4px 14px #000000B2;
  color: #F5F5F5;
  font-weight: 500;

}
.lang-switch button{
  padding: 8px;
}

.lang-switch button:hover{
  background-color: #FBFBFB;
  border-radius: 8px;
  color: #014081;
}
.subtitle {
  margin-top: 24px;
  font-size: 24px;
  max-width: 800px;
  text-shadow: 0px 4px 14px #000000B2;
  color: #F5F5F5;
  font-weight: 500;
}

.hero-meta {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  font-size: 20px;
  text-shadow: 0px 4px 14px #000000B2;
  color: #F5F5F5;

}

.hero-meta li{
    margin-top: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* BUTTONS */
.btn {
  border-radius: 16px;
  text-decoration: none;
  font-weight: 300;
  width: 300px;
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.btn.primary {
  background: #FBFBFB;
  color: var(--blue);
}
.btn.primary:hover{
  font-weight: 500;
  color: #2084EB;
  box-shadow: 0px 2px 4px 0px #12101029 inset;
  box-shadow: 0px 2px 40px 0px #12101066;

}
.container p strong{
  font-weight: 500;
}
.btn.outline {
  border: 2px solid #FBFBFB;
  color: #FBFBFB;
}

.btn.outline:hover {
  border: 3px solid #FBFBFB;
  box-shadow: 0px 2px 4px 0px #12101029 inset;
}

.btn.white {
  background: #FBFBFB;
  color: var(--blue);
}

#about{
  background: var(--bg-light);
}
#about h2{
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 32px;
    color: #014081;
}

#about p{
    font-size: 24px;
    font-weight: 400;
    color:#121010;
    line-height: 1.1;
}
/* COUNTDOWN */
.countdown {
  background: var(--bg-light);
  text-align: center;
  padding: 60px 0;
  color: #014081;
}

.pedo h2{
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 32px;
    color: #014081;
}

.schedule-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT */
.schedule-block h2 {
  margin-bottom: 32px;
  color: #014081;
  font-size: 40px;
  font-weight: 500;
}

.schedule {
  list-style: disc;
  padding-left: 20px;
}

.schedule li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* RIGHT */
.location-block h2 {
  margin-bottom: 32px;
  color: #014081;
  font-size: 40px;
  font-weight: 500;
}

.map-wrapper {
  width: 100%;
  height: 344px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}



.countdown h2 {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 24px;
}

.timer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-size: 120px;
}

.timer small {
  font-size: 56px;
  font-weight: 500;
  margin-top: 24px;
}

.timer div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer span {
  font-size: 120px;
  font-weight: 700;
}

/* SECTIONS */
.section {
  padding: 48px 0;
}

.section.light {
  background: var(--bg-light);
}

.grid-2 {
  display: grid;
  grid-template-columns: 619px 1fr;
  gap: 40px;
}

.rounded {
  border-radius: 16px;
  width: 619px;
  height: 630px;
}

/* CTA */
.cta {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background: #0b3a6f; /* тёмный центр */
  color: #fff;
  text-align: center;
}

/* светло-синие диагонали */
.cta-bg-left,
.cta-bg-right {
  position: absolute;
  top: 0;
  width: 35%;
  height: 100%;
  background: #1e88e5; /* светло-синий */
  z-index: 1;
}

.cta-bg-left {
  left: 0;
  clip-path: polygon(0 0, 100% 0, -25% 100%, 0 100%);
}

.cta-bg-right {
  right: 0;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
}

/* контент поверх */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.registration-info h2{
    margin-bottom: 24px;
    color: #014081;
    font-size: 40px;
    font-weight: 500;
}
.registration-info-content strong{
  font-weight: 500;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 24px;
}

/* кнопка как на скрине */
.cta-btn {
  background: #fff;
  color: #0b3a6f;
  padding: 12px 32px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
}

.cta-btn:hover{
  font-weight: 500;
  color: #2084EB;
  box-shadow: 0px 2px 4px 0px #12101029 inset;
  box-shadow: 0px 2px 40px 0px #12101066;
}


/* FAQ */
.faq details {
  background: var(--bg-light);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
}



.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #0b4c8a;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.faq-item {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  overflow: hidden;
  margin-bottom: 10px;
}

.faq-header {
  width: 100%;
  padding: 22px 26px;
  font-size: 18px;
  font-weight: 600;
  color: #0b4c8a;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-body {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-item.active .faq-body {
  padding: 0 26px 22px;
  max-height: 500px;
}

.faq-body p {
  margin: 12px 0;
  color: #1f2937;
  line-height: 1.6;
}

.faq-body a {
  color: #1e78d6;
  text-decoration: underline;
}

/* Arrow */
.arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #0b4c8a;
  border-bottom: 2px solid #0b4c8a;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(-135deg);
}

#pp-overlay {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;     
  height: 5316px;
  opacity: 0.2;      
  pointer-events: none;
  z-index: 999999;
}

body {
  display: flex;
  justify-content: center;
  flex-direction: column;
}


.registration-info {
  margin: 60px 0;
}

.registration-info-content {
  line-height: 1.6;
  color: #014081;
  font-size: 24px;
}

.registration {
  background: #fff;
}

.registration-card {
  background: #fff;
  border-radius: 16px;
}
.registration-card {
  overflow: hidden;
}

.google-form {
  width: 100%;
  height: 3500px; /* с запасом */
  border: none;
}

.footer-diagonal {
  position: relative;
  background: #ffffff;
  padding: 60px 0;
  overflow: hidden;
}

/* Синие диагонали */
.footer-bg-left,
.footer-bg-right {
  position: absolute;
  top: 0;
  width: 35%;
  height: 100%;
  background: var(--blue);
  z-index: 1;
}

.footer-bg-left {
  left: 0;
  clip-path: polygon(0 0, 100% 0, -25% 100%, 0 100%);
}

.footer-bg-right {
  right: 0;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
}

/* Контент */
.footer-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #0b3a6f;
}

.footer-content h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

.footer-address,
.footer-contact {
  font-size: 20px;
  margin: 4px 0;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.schedule-item {
  font-size: 20px;
  color: #014081;
  padding: 19px 32px;
  background: #FBFBFB;
  border-radius: 16px;
}

.schedule-date {
  font-weight: 500;
}

.schedule-sep {
  margin: 0 6px;
}

.mobile{
  display: none;
}

.web{
  display: flex;
}

.schedule-text {
  font-weight: 400;
  color: #121010;
}

@media (max-width: 468px){
  .container{
    max-width: 361px;
    padding: 0;
  }
  .lang-switch{
    gap: 8px;
  }
  .lang-switch button{
    padding: 13px 8px;
  }
  .lang-switch button{
    font-size: 16px;
  }
  .logo{
    width: 129px;
  }
  .header-inner{
    height: 72px;
  }
  .hero h1{
    font-size: 32px;
    line-height: 1.3;
  }
  .hero-actions{
    flex-direction: column;
  }
  .hero-actions.btn{
    width: 100%;
  }
  .hero-content{
    padding: 24px 0;
  }
  .subtitle{
    margin-top: 16px;
    font-size: 20px;
    line-height: 1.5;
  }
  .subtitle span{
    font-size: 20px !important;
  }
  .hero-meta{
    margin-top: 16px;
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: 79px;
  }
  .hero-meta li{
    margin-top: 8px;
  }
  .btn{
    width: 100%;
    height: 48px;
    font-size: 20px;
  }
  .hero{
    height: 560px;
  }
  .countdown h2 {
    font-size: 32px;
  }
  .countdown{
    padding: 40px;
  }
  .timer span{
    font-size: 40px;
  }
  .timer small{
    font-size: 20px;
    margin-top: 12px;
  }
  .timer{
    font-size: 40px;
    gap:11px;
  }
  .rounded{
    width: 100%;
    height: 367px;
  }
  .grid-2{
    display: flex;
    flex-direction: column;
  }
  .faq-grid{
    grid-template-columns: 1fr;
  }
  .faq-item{
    width: 361px;
  }
  .mobile{
    display: block;
  }

  .web{
    display: none;
  }
  .section{
    padding: 20px 0;
  }
  #about h2{
    margin-bottom: 24px;
  }
  .schedule-location{
    grid-template-columns: 1fr;
  }
  .schedule-block h2{
    font-size: 28px;
  }
  #about p{
    font-size: 20px;
    line-height: 1.3;
  }
  .schedule-item{
    font-size: 16px;
    padding: 13px 16px;
  }
  .schedule-text{
    line-height: 1.3;
  }
  .map-wrapper{
    height: 200px;
  }
  .cta-content h2{
    font-size: 28px;
  }
  .cta-content p{
    font-size: 16px;
  }
  .cta-btn{
    width: 270px;
  }
  .faq-section{
    padding: 40px 0;
  }
  .faq-title{
    font-weight: 500;
    font-size: 28px;
  }
  .faq-header{
    padding: 16px;
    font-size: 20px;
    font-weight: 500;
  }
  .faq-grid{
    gap: 0px;
  }
  .faq-item{
    margin-bottom: 16px;
  }
  .footer-diagonal{
    padding: 96px 0 184px 0;
  }
  .footer-bg-left, .footer-bg-right {
    width: 100%;
  }
  .footer-bg-left{
    clip-path: polygon(0 0, 100% 0, -261% 100%, 0 100%);
  }
  .footer-bg-right{
    clip-path: polygon(273% 0, 100% 0, 100% 100%, 0 100%);
  }
  .footer-content h3{
    font-size: 20px;
  }
  .footer-address, .footer-contact{
    font-size: 16px;
    line-height: 1.5;
  }
  .container p strong{
    font-weight: 400;
  }
  .registration_info_title{
    font-weight: 500;
    font-size: 28px;
  }
  .registration-info-content strong{
    font-size: 20px;
  }
  .registration-info-content{
    font-size: 20px;
    line-height: 1.3;
  }
}