:root {
  --dark:   #0d1f32;
  --dirty:  #b08b4f;
  --light:  #f4f4f4;
  --dark-light: rgba(13, 31, 50, 0.6);
}

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

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(
    135deg,
    #0d1f32 0%,
    #142b47 30%,
    #1b385c 60%,
    #223d66 100%
  );
  background-attachment: fixed;
  color: var(--light);

  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden !important;
}

/* NAVBAR */
.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  padding: 0 2rem;
  background: var(--dark);
  border-bottom: 4px solid var(--dirty);
}

/* language */


.language-switcher select {
  padding: 6px 12px;
  background-color: var(--dark);
  color: var(--light);
  border: 1px solid var(--dirty);
  border-radius: 4px;
  font-weight: bold;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 32px;
  cursor: pointer;
  z-index: 999;
  color: white;
}

/* Mobile menu hidden */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  background: var(--dark);
  width: 60%;
  height: 100vh;
  padding: 4rem 2rem;
  gap: 2rem;
  z-index: 998;
  box-shadow: -2px 0 10px rgba(0,0,0,0.3);
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
}

/* LINKOVE PORAVNANJE */
.nav-group {
  display: flex;
  gap: 1.5rem;
  justify-content: space-evenly;
  flex: 1;
}

.nav-group.left {
  justify-content: space-evenly;
}

.nav-group.right {
  justify-content: space-evenly;
}

.nav-group a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  transition: color 0.3s, background 0.3s;
  position: relative;
}

.nav-group a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dirty);
  transition: width 0.3s;
}

.nav-group a:hover::after {
  width: 100%;
}

/* DIJAMANT LOGO */
.logo-diamond {
  position: absolute;
  top: 39px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  z-index: 2;
}

.diamond {
  width: 100%;
  height: 100%;
  background: var(--dark);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--dirty);
  position: absolute;
  top: 19px;
}

.diamond-logo {
  width: 68%;
  transform: rotate(-45deg);
}

.logo-center {
  text-align: center;
  height: 150px;
  padding-bottom: 2em;
}


/* HERO */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 0.2em;
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInLeft 1s ease-out forwards;
}

.hero-sub {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dirty);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInLeft 1s ease-out forwards;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-300%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* HERO SLIKA */
.hero__img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background:
    url('../media/img/landing-slika1.png') no-repeat center center;
  background-size: cover;
  z-index: 1;
  overflow: hidden;

  opacity: 0;
  animation: fadeInImg 1s ease-out forwards;
  animation-delay: 1.6s;
}

@keyframes fadeInImg {
  to {
    opacity: 1;
  }
}

/* GRADIENTI GORE/DOLJE */
.hero__img::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, rgba(13,31,50,0.9), transparent);
  z-index: 2;
}

.hero__img::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to top, rgba(13,31,50,1.9), transparent);
  z-index: 2;
}

/* SADRŽAJ HERO SEKCIJE */
.hero__content {
  position: relative;
  z-index: 3;
  width: 55%;
  min-width: 300px;
  padding: 4rem 2rem;
  color: var(--light);
}

.hero__content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  display: inline-block;
}

.hero__content p {
  font-size: 1.2rem;
  max-width: 400px;
  line-height: 1.4;
}
.hero__content-srb p {
  font-size: 0.9rem
}
.hero__extra {
  font-size: 1rem;
  margin-top: 1.5rem;
  max-width: 420px;
  color: #c4cbd6;
  opacity: 0.8;
  font-style: italic;
}

.btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background: var(--dirty);
  color: var(--dark);
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.3s;

  opacity: 0;
  animation: fadeIn 1s ease-out forwards, shake 0.5s ease-in-out 1;
  animation-delay: 0.8s, 3.4s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}
.btn:hover {
  opacity: 0.8;
}

.title-topLine {
  letter-spacing: 100px;
}

.slogan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateX(100px);
  animation: slideInRight 1s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes slideInRight {
  0% {
    transform: translateX(300%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.slogan-text {
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  opacity: 0.9;
  color: var(--light);
  text-align: center;
}



.line {
  width: 60px;
  height: 2px;
  background-color: var(--dirty);
}

.hero__extra {
  font-size: 1rem;
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(40px);
  animation: slideInUp 1s ease-out forwards;
  animation-delay: 0.6s;
}

@keyframes slideInUp {
  0% {
    transform: translateY(300%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*---------------ABOUT US------------------*/
.about {
  padding: 0;
  background: var(--dark);
  color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  overflow: hidden;
}

.about__container {
  max-width: 800px;
  transform: translateX(-400px); 
  transition: transform 0s;
  will-change: transform;
}

.about__container.in-view {
  transform: translateX(0);
  opacity: 1;
}

.about__container h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--dirty);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: right;
  width: 100%; 
}

.about__container .line {
  width: 80px;
  height: 4px;
  background: var(--dirty);
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}

.about__container p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

/*---------------MISSION------------------*/
.mission {
  padding: 0;
  background: var(--dark);
  color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  overflow: hidden;
}

.mission__container {
  max-width: 800px;
  transform: translateX(400px); 
  transition: transform 0s; 
  will-change: transform;
}

.mission__container.in-view {
  transform: translateX(0);
  opacity: 1;
}

.mission__container h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--dirty);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mission__container .line {
  width: 80px;
  height: 4px;
  background: var(--dirty);
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}

.mission__container p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

/*---------------VISION------------------*/
.vision {
  padding: 0;
  background: var(--dark);
  color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  overflow: hidden;
}

.vision__container {
  max-width: 800px;
  transform: translateX(-400px); 
  transition: transform 0s;
  will-change: transform;
}

.vision__container.in-view {
  transform: translateX(0);
  opacity: 1;
}

.vision__container h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--dirty);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: right;
  width: 100%; 
}

.vision__container .line {
  width: 80px;
  height: 4px;
  background: var(--dirty);
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}

.vision__container p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}


/*------------Geometrijski oblici------------------*/

.visuals-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* zauzmi cijeli ekran po visini */
  padding: 12rem;
}

.visuals {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: nowrap;
}

/* GLOBALNI STIL ZA OBLIKE */
.shape {
  width: 300px;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  overflow: hidden;
}

/* KRUG */
.shape.circle {
  border-radius: 50%;
  background-image: linear-gradient(rgba(13, 31, 50, 0.8), rgba(13, 31, 50, 0.4)), url(../media/img/football-boots-landing.jpeg);
  background-size: cover;
  background-position: center;
}

/* TROUGAO FIX */
.shape.triangle {
  width: 300px;
  height: 300px;
  background-image: linear-gradient(rgba(13, 31, 50, 0.8), rgba(13, 31, 50, 0.4)), url(../media/img/football-boots-landing.jpeg);
  background-size: cover;
  background-position: center;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  border-radius: 2px; 
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  position: relative;
}



/* Zadrži ključnu riječ iznad */
.shape.triangle .keyword {
  position: absolute;
  z-index: 2;
  color: var(--dark);
  font-weight: bold;
  text-transform: uppercase;
  bottom: 100px;
  color: #b08b4f;
  text-shadow: 0 0 6px rgba(0,0,0,0.3);
}

/* ROUNDED KOCKA */
.shape.rounded {
  border-radius: 30px;
  background-image: linear-gradient(rgba(13, 31, 50, 0.4), rgba(13, 31, 50, 0.8)), url(../media/img/football-boots-landing.jpeg);
  background-size: cover;
  background-position: center;
}

/* KLJUČNA RIJEČ U CENTRU */
.keyword {
  font-size: 1.3rem;
  color: var(--dirty);
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
  z-index: 2;
}






.visuals__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
}

.visuals__text {
  max-width: 400px;
  color: var(--light);
  text-align: center; 
  margin: 0 auto;     
}



.visuals__text p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  padding-top: 6em;
}



/*------------------------Animacija za tekst-----------------------*/


.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}



/*----------------------Our team------------------------------------*/
.team-section {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.team-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .team-cards {
    flex-direction: row;
  }
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--dirty);
  border-radius: 10px;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  color: var(--light);
  will-change: transform, opacity;
  transition: opacity 0.2s ease-out;
  opacity: 0;
  transform: translateX(0);
}

.team-card.left {
  transform: translateX(-200px);
  z-index: 2;
}
.team-card.center {
  opacity: 1;
  transform: translateX(0);
  z-index: 3;
}

.team-card.right {
  transform: translateX(200px);
  z-index: 1;
}

.team-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--dirty);
}

.team-card .role {
  font-style: italic;
  margin-bottom: 0.25rem;
  color: #ccc;
}

.team-card .experience {
  font-weight: bold;
  color: #fff;
}

.team-title {
  font-size: 3rem;
  color: var(--dirty);
  font-weight: 900;
  margin-top: 2rem;
  margin-bottom: 2em;
  transform: scale(0.8) translateY(100px);
  opacity: 0;
  transition: all 0.4s ease-out;
  will-change: transform, opacity;
}

.team-title.show {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  animation: stampIn 0.5s ease forwards;
}

@keyframes stampIn {
  0% {
    transform: scale(2) rotate(-20deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}




/*--------------------Where we operate---------------------*/

.world-scroll-section {
  display: flex;
  position: relative;
  min-height: 50vh; 
  background: #0d1f32;
}

.left-content {
  position: sticky;
  top: 25vh;
  height: fit-content;
  width: 40%;
  padding: 4rem 2rem;
  z-index: 10;
}



#continent-description {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
}

.continents-track {
  width: 60%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 100vh; 
  padding-top: 100vh;
  padding-bottom: 100vh;
}

.continent {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
}

.continent img {
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.3));
}

.continent.visible {
  opacity: 1;
  transform: translateY(0);
}

.continent-title {
  font-size: 3rem;
  color: var(--dirty);
  font-weight: 900;
  margin-bottom: 1rem;
  opacity: 1;

}
.continent-title-center {
  font-size: 3rem;
    color: var(--dirty);
    font-weight: 900;
    margin-bottom: 3rem;
    opacity: 1;
    text-align: center !important;
    margin-top: 2em;
}





/*----------------Kontakt forma------------------*/
.contact-intro-section {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  background-color: #0d1f32;
}

.contact-intro-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

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

.contact-section {
  background-color: #0d1f32;
  padding: 5rem 2rem;
  color: #fff;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start; 
}

.contact-form-container {
  flex: 1 1 400px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  background-color: #1b2b42;
  color: #fff;
  border: none;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-form button {
  width: 100%;
  padding: 1rem;
  background-color: #b08b4f;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #5b4420;
}

.contact-info-box {
  flex: 1 1 300px;
  background-color: #1b2b42;
  padding: 2rem;
  margin-top: 4.4em;
  border-radius: 12px;
  color: #ccc;
}

.contact-info-box h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.contact-info-box p {
  margin: 0.5rem 0;
  font-size: 1rem;
}











/*FOOTER*/

.avision-link {
  color: #fff;
  text-decoration: underline;
}

.avision-link:hover {
  opacity: 0.8;
}

.site-footer {
  background-color: #0d1f32;
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #222;
  font-family: 'Inter', sans-serif;
}

.footer-logo {
  font-size: 2rem;
  color: white;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: white;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-social a {
  color: white;
  font-size: 1.2rem;
}

.footer-social a:hover {
  color: #bbb;
}

.footer-copy {
  font-size: 0.85rem;
}

.footer-copy a {
  color: white;
  text-decoration: underline;
  font-weight: bold;
}

.footer-copy a:hover {
  opacity: 0.8;
}







/*----------------BLOG---------------*/

.blog-section {
  padding: 60px 20px;
  background-color: #0d1f32;
}

.blog-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.blog-card {
  background-color: #b08b4f;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #000000;
}

.blog-card p {
  font-size: 0.95rem;
  color: #000000;
}

.blog-date {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #373737;
}


























/* — RESPONSIVE BREAKPOINTS — */
@media (max-width: 1024px) {
  .hero__content {
    width: 50%;
    padding: 3rem 1.5rem;
  }

  .hero__img {
    background-size: cover;
    background-position: right center;
  }

  .logo-diamond {
    top: 29px;
    width: 100px;
    height: 100px;
  }

  .diamond {
    top: 14px;
    left: -150px;
  }

  .nav-group {
    gap: 1rem;
  }
}

@media (min-width: 769px) {
  .nav-group {
    display: flex !important;
  }

  .hamburger,
  .mobile-menu {
    display: none !important;
  }



  .team-cards {
    flex-direction: row;
  }

  .operate-content {
    flex-direction: row;
    align-items: flex-start;
  }


  .visuals {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
  }

  .visuals__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    text-align: center;
  }

  .visuals__text {
    margin-top: 1rem;
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  .nav-group {
    justify-content: center;
    width: 100%;
    margin: 0.5rem 0;
  }

  .logo-diamond {
    position: relative;
    top: 0;
    transform: translateX(-50%) rotate(0);
    margin: 0 auto;
  }


  .contact-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-info-box {
    width: 100%;
  }

  .contact-form-container {
    width: 100%;
  }

  .hero {
    height: auto;
    padding-bottom: 2rem;
  }

  .hero__img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background:
      url('../media/img/landing-slika1.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
    overflow: hidden;
  
    opacity: 0;
    animation: fadeInImg 1s ease-out forwards;
    animation-delay: 1.6s;
  }
  
  @keyframes fadeInImg {
    to {
      opacity: 0.5;
    }
  }

  .slogan {
    
    margin-bottom: 7.5rem;
  }
  .hero__content {
    width: 100%;
    padding: 22rem 1rem;
    text-align: center;
    bottom: 200px;
  }


  .team-section {
    padding: 3rem 48px 2rem;
    
}
  .hero__content h1 {
    font-size: 2.5rem;
  }

  .hero__content p {
    font-size: 1rem;
    
  }

  .hero__img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background:
      url('../media/img/landing-slika1.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
    overflow: hidden;
  
    opacity: 0;
    animation: fadeInImg 1s ease-out forwards;
    animation-delay: 1.6s;
  }
  
  @keyframes fadeInImg {
    to {
      opacity: 0.2;
    }
  }

  .hero__img::before,
  .hero__img::after {
    height: 15%;
  }


  .about{
    padding: 4em 4em;
    background: linear-gradient(to bottom, rgba(13, 31, 50, 0.6), transparent);
  }

  .vision{
    padding: 4em 4em;
    background: linear-gradient(to bottom, rgba(13, 31, 50, 0.6), transparent);
  }
  .mission{
    padding: 4em 4em;
    
    background: linear-gradient(to top, rgba(13, 31, 50, 0.6), transparent);
  }


  .nav-group {
    display: none !important;
  }

  .language-switcher {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .navbar {
    justify-content: space-between;
    flex-direction: row;
    height: 80px;
  }

  .logo-diamond {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 16px;
    width: 80px;
    height: 80px;
  }

  .diamond {
    width: 100%;
    height: 100%;
    top: 21px;
    left: 0;
  }

  .diamond-logo {
    width: 68%;
    transform: rotate(-45deg);
  }


  .visuals {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }

  
  .visuals__item {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    max-width: 90%;
    text-align: left;
  }



  .visuals__text {
    text-align: left;
  }

  .visuals__text p {
    font-size: 0.95rem;
    text-align: center;
    padding-top: 2em;
  }


  .shape.triangle .keyword {
    bottom: 38px;
  }
  .shape.triangle {
   
    height: 128px;
    
  }

  .continent img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.3));
  }


  .visuals-wrapper {
    padding: 4rem 1rem;
  }

  .visuals {
    flex-direction: column;
    align-items: center;
    gap: 9rem;
  }

  .shape {
    width: 48vw;
    height: 29vw;
    max-width: 300px;
    max-height: 300px;
  }

  
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-links,
  .footer-socials-vertical {
    justify-content: center;
    align-items: center;
  }
  




  .world-scroll-section {
    flex-direction: column;
    min-height: auto;
    padding: 2rem 1rem;
  }

  .left-content {
    position: sticky;
    top: -4px;
    width: 100%;
    padding: 2rem 1rem;
    text-align: center;
    background: #0d1f32;
    z-index: 20;
  }

  .continents-track {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 70vh;
  }

  .continent {
    opacity: 0;
    transform: translateX(0px); /* S desna */
    transition: all 0.6s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
  }

  .continent.visible {
    opacity: 1;
    transform: translateX(0); /* U sredinu */
  }

  .continent img {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
  }

  .continent-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  #continent-description {
    font-size: 1.1rem;
    text-align: center;
    color: #ccc;
    margin: 0 auto;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .hero__content h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 1rem 1rem;
    font-size: 1.2rem;
    width: 200px;
    height: 56px;
    text-align: center;
  }
}


@media (max-width: 395px) {
  .hero__content p {
      font-size: 0.7rem;
  }
}