@font-face {
  font-family: 'Poppins';
  src: url('../font/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #666;
    background-color: #fff;
    background-attachment: fixed;
    position: relative;
    font-weight: 400;
    letter-spacing: 0px;
}

.judges {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin; /* biar scroll bar lebih ramping (Firefox) */
  }
  
  .judge {
    flex: 0 0 auto;
    text-align: center;
    scroll-snap-align: start;
  }
  
  .judge img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ddd;
    margin-bottom: 10px;
    transition: transform 0.3s;
  }
  
  .judge img:hover {
    transform: scale(1.1);
  }
  
  .judge p {
    font-size: 14px;
    color: #333;
    margin: 0;
  }
  


  @media (min-width: 768px) {
    .judges {
      flex-wrap: wrap;
      /* justify-content: center; */
    }
    .judge {
      margin-bottom: 30px;
    }
  }
  


  /* TABLE RESPONSIVE ====================================================== */
  .table-responsive {
    overflow-x: auto;
    margin-bottom: 20px;
    /* border: 1px solid #ddd; */
    border-radius: 6px;
  }
  
  .table-responsive table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
  }
  
  .table-responsive th,
  .table-responsive td {
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
  }
  
  .table-responsive thead {
    /* background-color: #f5f5f5; */
    font-weight: bold;
  }
  
  .table-responsive tr:hover {
    /* background-color: #fafafa; */
  }


  /* MARGIN BOTTOM */

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }  /* 4px */
.mb-2 { margin-bottom: 0.5rem !important; }   /* 8px */
.mb-3 { margin-bottom: 1rem !important; }     /* 16px */
.mb-4 { margin-bottom: 1.5rem !important; }   /* 24px */
.mb-5 { margin-bottom: 3rem !important; }     /* 48px */

.isotope-nav > button.active, .isotope-nav > button.is-checked {
    border-color: #ffbd0a;
    background : #ffbd0a;
    color:#fff;
}

.isotope-nav > button {
    display: inline-block;
    padding: 5px 15px;
    color: #666;
    background: transparent;
    border-radius: 30px;
    border: 1px solid transparent;
    letter-spacing: 0.75px;
}

.text-end {
    text-align: right !important;
  }

.blog-type .welcome-item .welcome-content {
    background: #fff;
    text-align: left;
    color: #858585;
    padding: 5px 5px 5px;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
  color: rgba(0, 0, 0, .9);
  font-weight: 500;
  border-bottom: 2px solid #e6e6e6;
}

/* Navbar */
    .navbar {
        /* background: #0052D4; */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .navbar .nav-link {
        border : 1px solid #a6c437 !important;
        border-radius: 30px;
        color: #a6c437 !important;
        font-weight: 400;
        margin: 0 0.75rem;
        transition: all 0.3s ease;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        /* background-color: rgba(255, 255, 255, 0.2); */
        background-color : #a6c437;
        border-radius: 30px;
        padding: 8px 20px;
        color: #ffffff !important;
    }

    .navbar-brand {
        font-weight: bold;
        color: #fff !important;
    }

    .logo {
        width: 210px;
        height: auto;
    }

    @media (max-width: 768px) {
        .navbar .nav-link {
            border : 1px solid #a6c437 !important;
            border-radius: 30px;
            color: #a6c437 !important;
            font-weight: 400;
            margin: 0 0.75rem;
            transition: all 0.3s ease;
            margin-bottom: 0.75rem;
            padding: 8px 20px;
        }

        .logo {
            width: 150px;
            height: auto;
        }

        .navbar-nav {
            display: flex;
            flex-direction: column;
            padding-left: 0;
            margin-bottom: 0;
            margin-top: 16px;
            list-style: none;
        }
    
    }

    @media (min-width: 992px) {
        .navbar-expand-lg .navbar-nav .nav-link {
            padding: 8px 20px;
        }

        
    }
    
.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.75rem;
    line-height: 1;
    background-color: #a6c437;
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: box-shadow .15s ease-in-out;
}

/* Btn XS */
.btn-xs {
    padding: 0.25rem 0.4rem;
    font-size: 0.75rem;
    line-height: 1.2;
    border-radius: 0.2rem;
}

/* Tombol default auto width */
.btn-responsive {
    width: auto;
}

/* Jika layar maksimal 576px (HP), ubah jadi full width */
@media (max-width: 576px) {
    .btn-responsive {
        width: 100%;
        display: block;
    }
}

/* Styling section heading */
.upcoming-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #878787; /* abu gelap */
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.upcoming-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: #a6c437; /* bootstrap primary */
  margin-top: 8px;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
}

/* Custom card */
.card.upcoming-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.upcoming-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card.upcoming-card .card-img-top {
  height: 250px;
  object-fit: cover;
}

.card.upcoming-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0d6efd;
}

.card.upcoming-card .card-text {
  color: #374151;
  font-size: 0.95rem;
}

.card.upcoming-card .btn {
  border-radius: 25px;
  padding: 6px 20px;
}
