/* === IMPORT FONTU === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* === RESET === */
* {
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}

/* === ZÁKLADNÍ NASTAVENÍ === */
body {
    font-family: 'Poppins', sans-serif;
    background-color: black;
    margin: 0;
    padding-top: 50px;
    color: white;
}

/* === NAVIGACE === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #333;
}

.navbar > ul {
    list-style-type: none;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 16px;
}

.navbar li {
    position: relative;
}

.navbar li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar li a:hover {
    background-color: #111;
}

.active {
    background-color: #4d4c4c;
}

.navbar .search-form {
    margin-left: auto;
    display: flex;
    padding-top: 16px;
    
}

.navbar .search-form input[type="text"] {
    max-width: 15vw;
    padding: 6px;
    border: none;
    margin-right: 16px;
    font-size: 17px;
    background-color: #4d4c4c;
    color: white;
}

/* === DROPDOWN MENU === */
.dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    min-width: 160px;
    z-index: 2000;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    flex-direction: column;
    list-style-type: none;
    padding-left: 0;
}

.dropdown-content li a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    width: 100%;
    font-size: 0.8em;
}

.dropdown-content li a:hover {
    background-color: #111;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown > a::after {
    content: " ▼";
    font-size: 0.6em;
}

/* === HLAVIČKA (HEADER) === */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38vh;
    margin-top: 5%;
    flex-direction: column;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 70vw;
    width: 100%;
    padding: 20px;
}

.header-text {
    color: white;
    text-align: right;
    margin-top: 7%;
}

.header-text h1 {
    font-size: 3.5vw;
    margin-bottom: 2vh;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 100%;
}

.index-header {
    width: 100%;
    height: auto;
    margin-left: 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index-header img {
    width: 42vw;
    height: auto;
    object-fit: contain;
}

/* === TLAČÍTKA === */
.button {
    background-color: black;
    border: 0.1px solid white;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    margin: 4px 2px;
    cursor: pointer;
    transition-duration: 0.4s;
    border-radius: 8px;
    margin-top: 3%;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
}

.button:hover {
    background-color: white;
    color: black;
}

/* === FLEX SEKCE === */
.card-heading {
    margin-left: 10%;
    margin-top: 5%;
    font-weight: 200;
}

.flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100vw;
    width: 100%;
}

.text-box {
    color: white;
    text-align: center;
    margin-top: 8%;
}

.text-box h2 {
    font-size: 2vw;
    color: white;
    margin-bottom: 2vh;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10%;
}

.text-box p {
    font-size: 1.5vw;
    flex-wrap: wrap;
    width: 60%;
    align-items: right;
    margin-left: 20%;
    margin-right: auto;
    margin-top: 10%;
    line-height: 170%;
    text-align: justify;
}

.img-box {
    width: 40%;
    height: auto;
    display: flex;
    justify-content: left;
    align-items: left;
    margin-top: 16%;
    margin-right: 1vw;
}

.img-box img {
    width: 42vw;
    height: auto;
    object-fit: contain;
    margin-top: 2vw;
}

/* === KARTY === */
.card-box {
    box-sizing: border-box;
    border: 0.1px solid white;
    border-radius: 12px;
    margin: 2%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-self: center;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2%;
    margin: 2%;
    border-radius: 12px;
    border: 0.1px dashed white;
    width: 23vw;
    max-width: 300px;
    min-width: 200px;
    text-align: center;
    line-height: 1.7;
    background-color: black;
    min-height: 520px;
}

.card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 50px 50px 0 0;
    margin-bottom: 0;
}

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bottom {
    margin-top: 1rem;
}

/* === FOOTER === */
footer {
    box-sizing: border-box;
}

.footer-container {
    width: 100%;
    padding: 70px 30px 20px;
}

.footer-container p {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons a {
    text-decoration: none;
    color: white;
    padding: 10px;
    margin: 30px;
    border-radius: 8px;
}

.social-icons a i {
    font-size: 2em;
    opacity: 0.8;
    color: white;
}

.social-icons a:hover {
    transition-duration: 0.8s;
    border: 0.1px solid white;
}

.social-icons a:hover i {
    transition-duration: 0.8s;
}

.footer-bottom p {
    text-align: center;
    margin: 0 auto;
    font-weight: 100;
    font-size: smaller;
    padding: 10px;
}
.about-title{
    font-size: 3.5vw;
    margin-top: 5%;
    margin-bottom: 2%;
    margin-left: 5%;
}
.about-header {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
  }
  
  .about-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

.about-intro p {
    font-size: 1.2rem;
    margin: 3% 10%;
    line-height: 1.6;
    text-align: justify;
    padding-left: 15%;
    padding-right: 15%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.4s ease-out forwards;
    animation-delay: 0.3s; /* plynulý nástup po načtení stránky */
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  
    background: rgba(0, 0, 0, 0.5); /* poloprůhledný tmavý překryv */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
    text-align: center;
  }
  
  .intro-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: white;
    font-weight: 200;
    line-height: 1.6;
    max-width: 70%;
    text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.5); /* jemný stín pro čitelnost */
    margin: 0;
  }

/* === TÝM / LEKTOŘI === */
.team-section {
    margin: 5% 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }
  
  .team-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  
    width: 70%;
    margin: 0 0 0 5%;
  
    padding: 2%;
    border: 0.1px dashed white;
    border-radius: 12px;
    background-color: transparent;
  
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out forwards;
  }
  
  /* Překlopí pořadí prvků a animace zprava */
  .team-card.reverse {
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-left: auto;
    margin-right: 5%;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out forwards;
  }
  
  .team-card.reverse .team-info {
    margin-left: 0;
    margin-right: 0;
    flex: 1;
    text-align: right;
  }
  
  .team-card.reverse .team-info h2,
  .team-card.reverse .team-info h3,
  .team-card.reverse .team-info p {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
  }
  
  /* Přidání postupného zpoždění animací */
  .team-card:nth-of-type(1) {
    animation-delay: 1s;
  }
  
  .team-card:nth-of-type(2) {
    animation-delay: 1.5s;
  }
  
  .team-card:nth-of-type(3) {
    animation-delay: 2s;
  }
  
  .team-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
  }
  
  .team-info {
    flex: 1;
    margin-right: 30%;
  }
  
  .team-card.reverse .team-info {
    margin-left: 30%;
    margin-right: 0;
  }
  
  .team-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }
  
  .team-info h3 {
    font-size: 1.1rem;
    font-weight: 300;
    color: #ccc;
    margin-bottom: 1rem;
  }
  
  .team-info p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
    margin: 0;
  }
  
  /* Slide-in zleva */
  @keyframes slideInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Slide-in zprava */
  @keyframes slideInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

/* === MODAL GALERIE === */
.gallery-title {
  font-size: 3.5vw;
  margin-top: 5%;
  margin-bottom: 2%;
  margin-left: 5%;
}

.gallery-intro {
  font-size: 1.2rem;
  margin: 3% 10%;
  line-height: 1.6;
  text-align: justify;
  padding-left: 15%;
  padding-right: 15%;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.4s ease-out forwards;
  animation-delay: 0.3s;
}

.gallery-section h2 {
  margin-left: 10%;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.gallery-page {
  padding: 5% 10%;
}

.gallery-heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
  margin-left: 5%;
  margin-right: 5%;
}

.gallery-grid figure {
  margin: 0;
  padding: 0;
  text-align: left;
  color: #ccc;
  font-size: 0.9rem;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}


.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.gallery-grid a {
  display: block;
}



.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.modal img{
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.modal:target {
  display: flex;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
  z-index: 10001;
  cursor: pointer;
}

.modal-close:hover {
  color: #ccc;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  z-index: 10000;
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

.modal-nav:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* === FIGURE / CAPTIONS === */
figure.gallery-item {
  margin: 0;
}

figure.gallery-item figcaption {
  text-align: left;
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.5rem;
}

/* === VIDEO LINK IMAGE === */
.video-thumbnail {
  position: relative;
  display: inline-block;
}


.video-thumbnail::after {
  content: '\25B6';
  font-size: 3rem;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  pointer-events: none;
}

/* Styluj figure galerie videa (nezávisle na .gallery-grid) */
.gallery-section > figure.gallery-item {
  width: 16%;
  min-width: 180px;
  margin-left: 5%;
  margin-right: 5%;
}

/* A zmenši náhled videa */
.gallery-section > figure.gallery-item img {
  height: 180px;
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-section > figure.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.modal video {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.courses-title {
  font-size: 3vw;
  margin-top: 5%;
  margin-bottom: 2%;
  margin-left: 5%;
}

.courses-intro {
  margin: 3% 10%;
  padding: 2%;
  text-align: justify;
  line-height: 1.7;
  color: #ddd;
  animation: fadeInUp 1.4s ease-out forwards;
  transform: translateY(20px);
  opacity: 0;
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.courses-gallery-cta {
  margin: 4% 10%;
  padding-left: 1.5rem;
  border-left: 2px solid white;
  text-align: left;
  max-width: 600px;
  animation: fadeInLeft 1.4s ease-out forwards;
  transform: translateX(-30px);
  opacity: 0;
  animation-delay: 0.6s;
}

.courses-gallery-cta p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 600;
}
@keyframes fadeInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* === GAME DEVELOPMENT COURSE PAGE === */
.game-hero {
  position: relative;
  background: url("Images/game_header.jpg") center/cover no-repeat;
  color: white;
  padding: 5% 10%;
  text-align: center;
  overflow: hidden;
}

.game-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Tmavý overlay */
  z-index: 0;
}

.game-hero h1,
.game-hero p {
  position: relative;
  z-index: 1;
}


.game-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.game-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: #ccc;
}

.course-intro {
  margin: 4% 15%;
  font-size: 1.1rem;
  line-height: 1.8;
  animation: fadeInUp 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 0.6s;
  text-align: justify;
}

.course-learn {
  margin: 4% 15%;
  animation: fadeInUp 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 0.9s;
}

.course-learn h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.course-learn ul {
  list-style: none;
  padding-left: 0;
}

.course-learn li {
  padding-left: 1.2em;
  margin-bottom: 0.7em;
  position: relative;
}

.course-cta {
  text-align: center;
  margin: 5% 0;
  animation: fadeInUp 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 1.2s;
}

.course-cta .button {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 0.8em 2em;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.course-cta .button:hover {
  background-color: white;
  color: black;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.or-text {
  font-size: 1rem;
  color: white;
  opacity: 0.7;
}

/* Animace */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === FAQ SECTION === */
.faq-section {
  padding: 5% 10%;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.faq-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 1rem 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 30px;
}

.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-item h2 {
  font-size: 1.2rem;
  position: relative;
  padding-right: 2rem;
}

.faq-item h2::after {
  content: '\f078';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.faq-item.active h2::after {
  transform: rotate(180deg);
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  margin-top: 0.5rem;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
}

/* Fade-in keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*search mark*/
mark {
  background-color: #ccc;
  color: black;
  font-weight: bold;
}
.form-box, .confirmation-box {
  background: #222;
  padding: 2rem;
  max-width: 400px;
  margin: 2rem auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

label {
  display: block;
  margin-bottom: 0.5rem;
}

input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 5px;
}

button {
  background: white;
  color: black;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

.qrcode {
  margin: 1rem auto;
  width: fit-content;
}

/* === TERMS SECTION === */
.terms-section {
  padding: 5% 10%;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.terms-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.terms-section h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.terms-section p {
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
  color: #ccc;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === FAQ SECTION === */
.faq-section {
  padding: 5% 10%;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.faq-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 1rem 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-item h2 {
  font-size: 1.2rem;
  position: relative;
  padding-right: 2rem;
}

.faq-item h2::after {
  content: '\f078';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.faq-item.active h2::after {
  transform: rotate(180deg);
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  margin-top: 0.5rem;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
}

/* Fade-in keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === CONTACT PAGE === */
.contact-section {
  padding: 5% 10%;
  max-width: 1400px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.contact-section hgroup h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.contact-section hgroup p {
  font-size: 1.2rem;
  color: #aaa;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-section form {
  display: grid;
  gap: 1rem;
}

.contact-section label {
  display: block;
  margin-bottom: 0.3rem;
}

.contact-section input,
.contact-section textarea {
  width: 80%;
  padding: 0.5rem;
  border-radius: 5px;
  border: none;
}

.contact-section button {
  background-color: black;
  border: 0.1px solid white;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.1rem;
  margin: 4px 2px;
  cursor: pointer;
  transition-duration: 0.4s;
  border-radius: 8px;
  margin-top: 3%;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  width: 40%;
}
.contact-section button:hover {
  background-color: white;
  color: black;
}

.contact-time,
.contact-map,
.contact-figure {
  margin-top: 3rem;
  text-align: center;
}

.contact-figure figure img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.contact-map-article figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #ccc;
  font-weight: 200;
}


.contact-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
  margin-top: 1rem;
}
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-form-article,
.contact-map-article {
  flex: 1 1 45%;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}
.contact-info {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-info article {
  flex: 1 1 45%;
  text-align: center;
  background-color: #1e1e1e;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.05);
}

.contact-info h3 {
  margin-bottom: 0.5rem;
}


