/* =========================
   HERO SLIDER
========================= */

      .hero-slider {
        width: 100%;
        height: 100vh;
        position: relative;
        overflow: hidden;
      }

      /* =========================
   TITLE
========================= */

      .slider-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 20;
        text-align: center;
        width: 90%;
      }

      .slider-title h1 {
        color: #fff;
        font-size: 60px;
        font-weight: 800;
        letter-spacing: 2px;
        text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      }

      .slider-title p {
        color: #f5d76e;
        margin-top: 15px;
        font-size: 20px;
        font-weight: 400;
        text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
      }

      /* =========================
   SLIDES
========================= */

      .slides {
        width: 100%;
        height: 100%;
        position: relative;
      }

      .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        inset: 0;

        opacity: 0;
        visibility: hidden;

        transition:
          opacity 1.2s ease,
          visibility 1.2s ease,
          transform 8s ease;

        transform: scale(1.1);
      }

      .slide.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
      }

      .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* DARK OVERLAY */

      .slide::before {
        content: "";
        position: absolute;
        inset: 0;

        background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));

        z-index: 1;
      }

      /* =========================
   NAVIGATION BULLETS
========================= */

      .slider-nav {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);

        display: flex;
        gap: 14px;

        z-index: 30;
      }

      .bullet {
        width: 14px;
        height: 14px;
        border-radius: 50%;

        background: rgba(255, 255, 255, 0.5);

        cursor: pointer;

        transition: 0.4s;
      }

      .bullet.active {
        width: 40px;
        border-radius: 20px;

        background: #ffd700;

        box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
      }

      /* =========================
   RESPONSIVE
========================= */

      @media (max-width: 992px) {
        .hero-slider {
          height: 85vh;
        }

        .slider-title h1 {
          font-size: 42px;
        }

        .slider-title p {
          font-size: 17px;
        }
      }

      @media (max-width: 600px) {
        .hero-slider {
          height: 75vh;
        }

        .slider-title h1 {
          font-size: 28px;
          line-height: 1.3;
        }

        .slider-title p {
          font-size: 14px;
          margin-top: 10px;
        }

        .slider-nav {
          bottom: 25px;
        }

        .bullet {
          width: 12px;
          height: 12px;
        }

        .bullet.active {
          width: 34px;
        }
      }