/* Reset & Base */
body {
    margin: 0;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    background-color: #121212;
    color: #ffffff;
    text-align: center;
    font-family: "Cormorant Infant", serif;
}

h1, h2, h3 {
    font-family: "Poltawski Nowy", serif;
  }

img {
    max-width: 100%;
}

/* Navbar */
.one {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: fixed;
    width: 99%;
    top: 0;
    z-index: 999;
}
/* Scroll navbar effect */
/* .one {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
} */

.one.scrolled-nav {
  background-color: #000;
  box-shadow: 0 4px 10px rgba(255, 165, 0, 0.2);
}

.stats-section {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 100px auto;
  color: orange;
  font-family: 'Poltawski Nowy', serif;
}

.stat h2 {
  font-size: 3rem;
}

.stat p {
  font-size: 1.2rem;
  color: white;
}



.one-one {
    display: flex;
    align-items: center;
    gap: 10px;
}

.one-logo {
    width: 40px;
    height: 40px;
}

.one-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: orange;
}

.one-two {
    list-style: none;
    display: flex;
    margin-right: 20px;
}

.one-two li {
    margin: 0 10px;
}

.one-two a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s;
}

.one-two a:hover {
    color: orange;
}

.one-three {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* Hero */
.twobg{
    background: url('background\ \(7\).jpg') center/cover no-repeat;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.two {
    /* padding: 150px 20px 60px; */
    width: 99%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 10px;
    /* background: url('background\ \(7\).jpg') center/cover no-repeat;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
    color: white;
    background-color: rgba(0, 0, 0, 0.521);
    backdrop-filter: blur(10);
}



.two-one {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .two-one i {
    color: orange;
    animation: bounceIcon 1.5s infinite;
  }
  
  .two-two {
    color: orange;
  }
  
  .two-three {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .two-three i {
    color: orange;
  }
  
  .two-four {
    padding: 12px 25px;
    font-size: 1.1rem;
    background: orange;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
  }
  
  .two-four:hover {
    background: darkorange;
    transform: scale(1.05);
  }
  
  @keyframes bounceIcon {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  

/* Services */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 100px;
    margin-bottom: 50px;
    padding: 0 10px;
  }
  
  .activity-item {
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: orange;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .activity-item i {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
  }
  
  .activity-item:hover {
    transform: translateY(-5px);
    background-color: orange;
    color: black;
  }
  



/* Responsive */
@media (max-width: 768px) {

    .one {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 20px;
        position: fixed;
        width: 99%;
        top: 0;
        z-index: 999;
    }
    .one-two {
        display: none;
        flex-direction: column;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.603);
        backdrop-filter: blur(10);
        right: 30px;
        top: 60px;
        gap: 10px;
        padding: 10px;
    }

    .one-two.active {
        display: flex;
    }

    .one-three {
        display: block;
        margin-right: 20px;
    }







    .two {
      /* padding: 150px 20px 60px; */
      width: 99%;
      height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      margin: 10px;
      /* background: url('background\ \(7\).jpg') center/cover no-repeat;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat; */
      color: white;
      background-color: rgba(0, 0, 0, 0.521);
      backdrop-filter: blur(10);
  }

    .two-one {
      font-size: 30px;
      font-weight: bold;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 10px;
      display: flex;
      flex-direction: column;
    }

    .two-four {
      padding: 10px 20px;
      font-size: 10px;
      background: orange;
      color: white;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 5px 20px rgba(255, 165, 0, 0.3);
      transition: all 0.3s ease;
    }



}
