@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,600;0,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  color: white;
  background-color: black;
  overflow-x: hidden;
}

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

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== HEADER ===== */
header {
  background: #360DBD;
  padding: 20px 0;
  position: relative;
  z-index: 2;
  height: 90px;
}

.header-inner {
  position: relative;
}



.logo img {
  height: 40px;
}

nav.main-nav ul li a.active {
  color: #fce40f;
}


nav.main-nav {
  display: flex;
}

nav.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav.main-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

nav.main-nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #FCE40F;
  transition: width 0.3s ease;
}

nav.main-nav ul li a:hover {
  color: #FCE40F;
}

nav.main-nav ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn-register,
.btn-main {
  position: relative;
  background-color: #FCE40F;
  color: black;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  display: inline-block;
  width: fit-content;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-register {
  margin-left: 20px;
}

.btn-main::before,
.btn-register::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.2) 100%);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn-main:hover::before,
.btn-register:hover::before {
  left: 125%;
}

.btn-main:hover,
.btn-register:hover {
  color: black;
  box-shadow: 0 0 10px rgba(255, 255, 0, 0.4);
}

/* ===== BRACKET SECTION ===== */
.schedule-section {
  /* background-color: #0a0720; */
  background-color: #2E0182;
  padding: 80px 0;
  color: white;
}

.schedule-header {
  text-align: center;
  margin-bottom: 40px;
}

.schedule-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.view-toggle {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.toggle-btn {
  background: none;
  border: 2px solid #fce40f;
  color: #fce40f;
  padding: 10px 20px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active,
.toggle-btn:hover {
  background-color: #fce40f;
  color: black;
}

.schedule-timeline {
  display: none;
}

.schedule-timeline.active {
  display: block;
}

.timeline-list {
  position: relative;
  margin: 0 auto;
  padding-left: 40px;
  max-width: 700px;
  border-left: 3px solid #fce40f;
}

.timeline-list li {
  margin-bottom: 30px;
  position: relative;
  list-style: none;
}

.timeline-list .dot {
  position: absolute;
  left: -49px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #0a0720;
  border: 4px solid #fce40f;
  border-radius: 50%;
}

.timeline-list strong {
  font-weight: 700;
  color: #fce40f;
  display: block;
  margin-bottom: 5px;
}

.timeline-list .event {
  font-weight: 600;
}

.timeline-list .event small {
  display: block;
  font-size: 14px;
  color: #ccc;
  margin-top: 4px;
}

/* === Turniejowa Drabinka === */
.tournament-bracket {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  overflow-x: auto;
  overflow-y: hidden;
}

.round {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.match {
  background: #281c48;
  padding: 20px;
  border-left: 4px solid #fce40f;
  min-width: 200px;
  font-weight: bold;
}

.bracket-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bracket-lines line {
  stroke: #fce40f;
  stroke-width: 2;
}

.tournament-bracket:not(.active) {
  display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: url("image.png") center center / cover no-repeat;
    min-height: calc(100vh - 90px);
    overflow: hidden;
    display: flex;
    align-items: center;

  }

  .overlay {
    width: 100%;
    z-index: 2;
    margin-bottom: 90px;
  }
  
  .hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  
  .hero h1 {
    font-size: 90px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
  }
  
  .hero p {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 50px;
    max-width: 600px;
  }
  
  .corner-graphic {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    max-width: 100%;
  }
  
  /* ===== STRIPES ===== */
  .hero-stripes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }
  
  .hero-stripe {
    position: absolute;
    border-radius: 2px;
  }
  
  .hero-stripe.left {
    left: -250px;
    animation: stripe-left-to-right linear infinite;
  }
  
  .hero-stripe.right {
    right: -250px;
    animation: stripe-right-to-left linear infinite;
  }
  
  @keyframes stripe-left-to-right {
    0% { transform: translateX(0); opacity: 0.1; }
    50% { opacity: 0.1; }
    100% { transform: translateX(120vw); opacity: 0.0; }
  }
  
  @keyframes stripe-right-to-left {
    0% { transform: translateX(0); opacity: 0.1; }
    50% { opacity: 0.1; }
    100% { transform: translateX(-120vw); opacity: 0.0; }
  }
  
  /* ===== SLIDER ===== */
  .hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0 20px;
  }
  
  .slide.active {
    opacity: 1;
    z-index: 3;
  }
  
  /* ===== COUNTDOWN LAYOUT ===== */
  .countdown-layout .pre-countdown {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fce40f;
    margin-bottom: 5px;
    letter-spacing: 1px;
  }
  
  .countdown-layout .countdown-days {
    font-size: 130px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1;
  }
  
  .countdown-layout .countdown-rest {
    font-size: 50px;
    font-weight: 900;
    color: #fce40f;
    margin-bottom: 50px;
    line-height: 1.3;
  }
  
  .countdown-layout .btn-main {
    font-size: 18px;
    padding: 15px 35px;
    margin: 0;
  }
  
  .slide.slide-hero-3 .overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  .hero-slide-3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .hero-slide-3 .hero-text {
    max-width: 900px;
  }
  
  .hero-slide-3 .hero-date span {
    font-size: 94px;
    font-weight: 900;
    color: #fce40f;
    text-transform: uppercase;
  }
  
  .hero-slide-3 .hero-title {
    font-size: 64px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin: 20px 0 10px;
  }
  
  .hero-slide-3 .hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
  }
  
  .hero-slide-3 .btn-main {
    font-size: 18px;
    padding: 16px 34px;
    font-weight: 900;
    background-color: #fce40f;
    color: #000;
  }
  
  .hero-slide-3 .hero-logo img {
    max-width: 480px;
    height: auto;
  }
  
  /* ===== DOTS ===== */
  .slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  
  .slider-dots .dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.4;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .slider-dots .dot.active {
    background: #fce40f;
    opacity: 1;
    transform: scale(1.3);
  }
  
  /* ===== GLITCH ===== */
  .hero-glitch {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .glitch-word {
    display: inline-block;
  }

  
  /* Responsive & Hamburger Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }
  
  @media (max-width: 1024px) {
    .hero h1 {
      font-size: 64px;
    }
  
    .hero p {
      font-size: 20px;
    }
  
    .corner-graphic {
      max-width: 80%;
    }
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .btn-register {
      display: none;
    }
  
    nav.main-nav {
      position: fixed;
      top: 90px; /* wysokość Twojego headera */
      left: 0;
      width: 100%;
      background: #000;
      overflow: hidden;
      max-height: 0;
      /* opacity: 0; */
      transition: max-height 0.4s ease;
      z-index: 99;
    }
    
  
    nav.main-nav.open {
      max-height: 500px;
      /* opacity: 1; */
    }
  
    nav.main-nav ul {
      flex-direction: column;
      padding: 25px;
      gap: 20px;
    }
  
    nav.main-nav ul li a {
      font-size: 16px;
    }
  
    .hero h1,
    .hero-title {
      font-size: 56px;
      line-height: 1.1;
    }
  
    .hero-slide-3 .hero-date span {
      font-size: 56px;
    }
  
    .hero-slide-3 .hero-title {
      font-size: 42px;
    }
  
    .hero-slide-3 .hero-subtitle {
      font-size: 18px;
      margin-bottom: 30px;
    }
  
  
    .btn-main {
      font-size: 14px;
      padding: 12px 24px;
    }
  
    .slide {
      padding: 0 10px;
    }
  
    .hero-logo {
      display: none;
    }
  
    .slider-dots {
      bottom: 60px;
    }
    .hero p {
      font-size: 18px;
      text-align: center;
    }
  
    .btn-main {
      font-size: 16px;
      padding: 14px 28px;
    }
  
    .hero-glitch {
      justify-content: center;
      text-align: center;
    }
  
    .hero .container {
      align-items: center;
      text-align: center;
    }
  
    .corner-graphic {
      max-width: 70%;
    }
  
    .countdown-layout .countdown-days {
      font-size: 76px;
      margin-bottom: 20px;
    }
  
    .countdown-layout .countdown-rest {
      font-size: 40px;
      margin-bottom: 40px;
    }
  
    .countdown-layout .pre-countdown {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .countdown-layout .countdown-rest {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      /* font-size: 26px; opcjonalnie: zwiększ trochę czytelność */
    }
  
    .countdown-layout .countdown-rest span {
      display: block;
    }

  }
  

  @media (max-width: 1023px) and (min-width: 769px) {
    .menu-toggle {
      display: block;
    }
  
    .btn-register {
      display: none;
    }

    .hero-logo {
      display: none;
    }
  
    nav.main-nav {
      position: fixed;
      top: 90px;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.95);
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s ease;
      z-index: 999;
    }
  
    nav.main-nav.open {
      max-height: 500px;
    }
  
    nav.main-nav ul {
      flex-direction: column;
      padding: 25px;
      gap: 20px;
    }
  
    nav.main-nav ul li a {
      font-size: 18px;
      padding: 6px 0;
      display: block;
    }

    .corner-graphic {
      max-width: 90%;
    }
  }
  
  @media (max-width: 1024px) {
    .tournament-bracket {
      display: none !important;
    }
  
    .view-toggle .toggle-btn[data-view="bracket"] {
      display: none;
    }
  }
  

  /* Domyślny header */
header {
    position: relative;
    background: #4600CA;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  /* Sticky po scrollu */
  header.scrolled {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #4600CA;
    opacity: 0.95;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease forwards;
  }
  
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  /* Żeby zawartość strony nie skakała */
  body.has-scrolled {
    padding-top: 90px; /* dopasuj do wysokości headera */
  }
  





  #scrollToTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    background-color: #fce40f;
    color: #11043C;
    font-size: 24px;
    padding: 12px 16px;
    border: none;
    /* border-radius: 8px; */
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
  }
  
  #scrollToTop:hover {
    background-color: #fff200;
  }
  
  #scrollToTop.show {
    opacity: 1;
    visibility: visible;
  }
  







/* === INFO SECTION === */
/* === INFO SECTION (typografia i estetyka) === */
.info-section {
    /* background-color: #11043C; */
    background-color: #4600CA;
    color: #ffffff;
    padding: 100px 20px;
    font-family: 'Barlow', sans-serif;
  }
  
  .info-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2e2e2e;
  }
  
/*   .info-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 50px 70px;
  } */

.info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}


@media (min-width: 768px) {
  .info-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px 70px;
  }
}

  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }
  
  .info-icon {
    flex-shrink: 0;
    font-size: 36px;
    color: #fce40f;
    margin-top: 5px;
    line-height: 1;
  }
  
  .info-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  
  .info-content p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    font-weight: 400;
  }
  
  .info-content a {
    color: #11043C;
    font-weight: 700;
    background-color: #fce40f;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 0 5px rgba(252, 228, 15, 0.4);
    transition: all 0.3s ease;
  }
  
  .info-content a:hover {
    background-color: #fff200;
    color: #11043C;
    text-decoration: underline;
    box-shadow: 0 0 10px rgba(252, 228, 15, 0.6);
  }
  
  
  

  







  /* === FOOTER === */
.site-footer {
    /* background: #0a0720; */
    background: #000000;
    color: #ccc;
    padding: 60px 20px 30px;
    font-size: 15px;
  }
  
  .footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-col h4 {
    font-size: 16px;
    color: #fce40f;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 8px;
  }
  
  .footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-col ul li a:hover {
    color: #fce40f;
  }
  
  .footer-col p {
    color: #999;
    line-height: 1.6;
  }
  
  .footer-logo {
    height: 40px;
    margin-bottom: 15px;
  }
  
  .footer-social a {
    color: #fce40f;
    font-size: 20px;
    margin-right: 15px;
    transition: transform 0.3s ease;
  }
  
  .footer-social a:hover {
    transform: scale(1.2);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #666;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
  }
  
.footer-col:last-child {
  align-items: flex-end;
  text-align: left;
}

@media (max-width: 768px) {
  .footer-col:last-child {
    align-items: flex-start !important;
    text-align: left !important;
  }
}

  



  .teams-slider-section {
    background-color: #2E0182;
    padding: 80px 0;
    position: relative;
  }
  
  .teams-slider-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .team-card {
    /* background: #281c48; */
    background: #0a0720;
    padding: 30px 20px;
    /* border-radius: 16px; */
    margin-top: 15px;
    text-align: center;
    border: 6px solid #262435;
    transition: all 0.3s ease;
    
  }
  
  .team-card:hover {
    /* transform: translateY(-6px); */
    border: 6px solid #fce40f;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  }
  
  .team-logo {
    max-width: 150px;
    margin: 0 auto 15px;
    /* filter: brightness(0) invert(1);  */
  }
  
  .team-name {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .team-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
  }
  
  .team-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 2px solid #fff;
  }
  
  .team-avatars .extra {
    font-weight: bold;
    font-size: 16px;
    color: #fce40f;
    margin-left: 6px;
  }
  
  .team-stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #ffffff22;
    padding-top: 20px;
  }
  
  .team-stats div {
    text-align: center;
  }
  
  .team-stats span {
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #fce40f;
  }
  
  .team-stats small {
    font-size: 12px;
    color: #ccc;
    text-transform: uppercase;
  }

  .team-school {
    font-size: 18px;
    font-weight: 600;
    color: #fce40f;
    margin-top: 10px;
  }
  
  
  /* Swiper custom */
/* === Sekcja slidera drużyn === */

/* === Wrapper do pozycjonowania strzałek POZA swiperem === */
.slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 30px;
}



/* === Swiper custom === */

/* Strzałki */
.swiper-button-next,
.swiper-button-prev {
  color: #fce40f !important;
  background-color: rgba(0, 0, 0, 0.1);
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  z-index: 10;
  position: relative; /* ważne w nowym układzie */
  margin: -70px;
  padding: 26px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #fce40f;
  color: #000 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

/* Kropki (pagination) */
.swiper-pagination {
  margin-bottom: -30px;
  position: relative;
}

.swiper-pagination-bullets {
  text-align: center;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #ccc !important;
  opacity: 0.6;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #fce40f !important;
  opacity: 1;
  transform: scale(1.5);
}

/* Spacing dla dolnej kropki */
.teams-slider-section .swiper {
  padding-bottom: 20px;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .team-card {
    min-height: 320px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}


.mobile-login {
  display: none;
}

@media (max-width: 768px) {
  .mobile-login {
    display: block;
    margin-top: 10px;
  }

  .mobile-login a {
    font-weight: bold;
    color: #fce40f;
    text-transform: uppercase;
    padding: 10px 0;
    display: block;
  }

  .mobile-login a:hover {
    color: white;
  }
}

@media (max-width: 1308px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  .slider-wrapper {
    gap: 0; /* lub np. 10px jeśli chcesz zostawić minimalny odstęp */
  }
}






/* ADMIN */
.input-style {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: none;
  outline: none;
  background: #fff;
  color: #000;
  margin-top: 5px;
  border-radius: 4px;
}

.form-style label {
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 5px;
}




.teams-placeholder-box {
  background-color: #1c0642;
  border: 2px solid #fce40f;
  padding: 30px 20px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #fce40f;
  max-width: 600px;
  margin: 0 auto 30px auto;
  border-radius: 8px;
}

.simple-countdown {
  text-align: center;
  color: #ffffff;
  margin-top: 10px;
}

.simple-countdown .pre-countdown {
  font-size: 16px;
  color: #fce40f;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.simple-countdown .countdown-days {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.simple-countdown .countdown-rest {
  font-size: 24px;
  font-weight: bold;
  color: #fce40f;
  display: flex;
  justify-content: center;
  gap: 15px;
}








/* O TURNIEJU i GALERIA */
.about-section {
  padding: 80px 0;
  background-color: #4600CA;
  color: #fff;
}

.about-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.about-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.about-gallery {
  flex: 1 1 40%;
  max-width: 500px;
}

.about-gallery img {
  width: 100%;
  border-radius: 8px;
}

.about-text p {
  margin-bottom: 1.5em;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
}

.about-text strong {
  color: #fce40f;
  font-weight: 600;
}

