@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/Playfair_Display/PlayfairDisplay.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
h1, h2, h3 {
  font-family: "Playfair Display", serif;
}
body{
    background: #F4F0EB;
}
.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  font-family: "Arial", sans-serif;
}

.logo{
    max-width: 200px;
}
.age{
    max-width: 50px;
}
.age-bg {
  max-width: 300px;
}
.header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.nav-left,
.nav-right {
  display: flex;
  align-items:center;
  justify-content: center;
  gap: 24px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav p{
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;
}
.nav a:hover {
  text-decoration: underline;
}

.nav-logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.12em;
}
.bright{
  color: #ff6012;
  font-weight: bold;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #fff;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  .nav a {
    color: #000;
  }
  .nav-left {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
  }

  .nav-left.active {
    display: flex;
  }
  .hero{
    padding: 200px 0;
  }
  .hero h1 {
    font-size: 40px!important;
  }
  .article-card img{
    height: 800px!important;
  }
}

.hero {
  min-height: 100vh;
  background: url(../img/1.webp) center / cover no-repeat;
}
.hero h1 {
  font-family: "Georgia", serif;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 32px;
}

.hero .btn-primary {
  background: #fff!important;
  color: #000;
  margin-top: 10px;
  padding: 14px 32px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  transition: .3s;
}

.hero .btn-primary:hover {
  transform: translateY(-5px);
}

.uppercase{
  text-transform: uppercase;
}

.img-overlay {
      position: relative;
      color: #fff;
    }
.img-overlay img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.img-overlay span {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}
section{
    padding: 90px 0;
}
footer{
    padding: 50px 0;
    background: #000;
    color: white;
}
footer a{
    color: white;
}
footer a:hover{
    color: #ff6012;
    text-decoration: underline;
}
footer ul{
    padding: 0;
}
footer ul li{
    list-style-type: none;
    text-decoration: none;
}
footer ul li a{
    color: white;
}
footer ul li a:hover{
    color: #ff6012;
    text-decoration: underline;
}
section > .container > .row{
    align-items: center;
    justify-content: center;
}
.copyright{
    text-align: center;
}
.about{
    max-width: 100%;
}
.game {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.image-block {
  position: relative;
  text-align: center;
}

.bg-2 {
    background: #E4CBB8;
}

.image-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  background: rgba(0,0,0,0.4);
}

.block-img{
    padding: 0;
}
.card{
    color: #fff;
    overflow: hidden;
    border-radius: .25rem !important;
}
#cards {
  padding: 80px 0;
}

#cards h2 {
  font-weight: 600;
}
.card-img-overlay{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 30px;
}
#cards .row{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.feature-card {
  border: none;
  border-radius: 8px;
  padding: 30px 24px;
  height: 100%;
}

.feature-card .card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card img {
  width: 40px;
  margin-bottom: 20px;
}

.feature-card .card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card .card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  flex-grow: 1;
}

.article-card img{
  height: 620px;
  object-fit: cover;
}

.article-overlay{
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.70) 45%,
    rgba(0,0,0,.75) 100%
  );
}
.wrapper{
    padding: 200px 0;
}
.wrapper h1{
    text-align: center;
}
.article-title{
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}

.article-bottom{
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.article-desc{
  font-size: 0.92rem;
  line-height: 1.25;
}

.contact-section{
  padding: 60px 0;
}

.contact-title{
  text-align: center;
  font-weight: 700;
  margin: 0 0 14px;
  color: #000;
}

.contact-subtitle{
  margin: 0 0 18px;
  color: #000;
  font-size: 18px;
  line-height: 1.35;
}

.contact-label{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 6px;
}

.contact-label .req{
  color: #ff6012;
  font-weight: 700;
}

.contact-input{
  height: 44px;
  border-radius: 20px;
  box-shadow: none;
}

.contact-input:focus{
  border-color: #000;
  box-shadow: none;
}
.bg-orange {
  background: #ff6012;
}
.contact-btn{
  background: #ff6012;
  color: #fff;
  border: 0;
  border-radius: 20px;
  padding: 12px 56px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  min-width: 260px;
}
.form-control{
    background: #fff;
}
.contact-btn:hover{
  background: #c05305;
  color: #fff;
}

.custom-form-group{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  color: #334155;
}
.custom-form{
    margin-bottom: 15px;
}
.custom-form-group input[type="checkbox"]{
  margin-top: 3px;
}

.mandatory{
  color: #e11d48;
  font-weight: 700;
}

.confirm-small{
  font-size: 14px;
  line-height: 1.35;
  color: #000;
}

.confirm-small a{
  color: #ff6a00;
  text-decoration: underline;
}

.contact-footnote{
  margin-top: 16px;
  font-size: 12px;
  color: #000;
}
.faq {
  padding: 80px 20px;
}

.faq__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

.faq__item {
  border-top: 1px solid #e6e6e6;
}

.faq__item:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.faq__icon {
  font-size: 24px;
  color: #ff6a00;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer p {
  margin: 0 0 16px;
  color: #444;
  line-height: 1.6;
}

.faq__answer ul {
  padding-left: 18px;
  margin: 0 0 20px;
}

.faq__answer li {
  margin-bottom: 8px;
  color: #444;
}

.faq__item.active .faq__answer {
  max-height: 600px;
}

.faq__item.active .faq__icon {
  content: "−";
}