@import url("https://fonts.googleapis.com/css2?family=Trirong: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");


:root {
  --orange: #f25a06;
  --orange-hover: #c41824;
  --heading-font: "Trirong", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
  list-style-type: none;
}

section,
footer {
  overflow-x: hidden;
}

body {
  height: 100vh;
}

header {
  z-index: 999;
  background-color: rgba(56, 54, 54, 0.6);
}

/* Hero section */

.about-hero {
  background: url("../assets/bg.jpeg");
  color: white;
  padding: 180px 20px 100px;
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  font-family: var(--heading-font);
  color: var(--orange);
  letter-spacing: 2px;
}

.about-hero p {
  font-size: 1.2rem;
  font-style: italic;
  color: #f5f5f5;
}

@media (max-width: 480px) {
  .about-hero p{
    font-size: 1rem;
  }
}



/*---------- Main Content ----------*/
.about-sporty {
  padding: 90px 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.fun-block {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.fun-block.reverse {
  flex-direction: row-reverse;
}

.text {
  flex: 1;
  min-width: 260px;
}

.text h2 {
  font-family: var(--heading-font);
  color: var(--orange);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.img-box {
  flex: 1;
  min-width: 280px;
}

.img-box img {
  width: 80%;
  height: auto;
}


/* -------- RESPONSIVE -------- */
@media (max-width: 768px) {
  .about-hero.sporty h1 {
    font-size: 2.5rem;
  }

  .fun-block,
  .fun-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .text h2 {
    font-size: 1.7rem;
  }

  .text p {
    font-size: 1rem;
  }

  .img-box {
    margin-top: 20px;
  }
}

.visual-divider {
  position: relative;
  height: 100px;
  background: linear-gradient(135deg, var(--orange-hover) 60%, white 60%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* Optional responsive tweak */
@media (max-width: 600px) {
  .visual-divider {
    height: 80px;
  }
}

@media (max-width: 480px) {
 .about-hero h1 {
    font-size: 2.3rem 
  }
}
