
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*====COLOR===*/
  --menyala:#A11D28;
  --biru:#2F75AF;
  --putih: #fff;
  --text-light: #6b7280;
  

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --judul-font: "Poppins", sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: 1.4rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (max-width: 1150px) {
  :root {
    --normal-font-size: 1.2rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}


/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}


/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  left: 0;
  background-color: var(--putih);
  z-index: 4;
  box-shadow: 0 .5rem 1rem var(--menyala);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--putih);

}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.nav__logo {
padding-top: 25px;
padding-left: 5px;
padding-bottom: 25px;
width: 35%;
}

.nav__close, 
.nav__toggle {
  display: flex;
  padding-top: 50px;
  color: var(--menyala);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 800px) {
  .header {
    position: fixed;
    width: 100%;
    height: 13%;
    left: 0;
    background-color: var(--putih);
    z-index: 4;
    box-shadow: 0 .5rem 1rem var(--menyala);
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--putih);
  
  }
  .nav__menu {
    position: fixed;
    left: -100%;
    top: 50px;
    background-color: var(--putih);
    z-index: -1;
    width: 100%;
    height: 100%;
    padding: 6rem 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left .4s;

  }

  .nav__item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform .4s ease-out, visibility .4s;
  }

  .nav__logo {
    padding-top: 70px;
      width: 40%;
     
    }

  .nav__item:nth-child(1) {
    transition-delay: .1s;
  }
  .nav__item:nth-child(2) {
    transition-delay: .2s;
  }
  .nav__item:nth-child(3) {
    transition-delay: .3s;
  }
  .nav__item:nth-child(4) {
    transition-delay: .4s;
  }
  .nav__item:nth-child(5) {
    transition-delay: .5s;
  }
}

/*end screen mobile*/

.nav__list, 
.nav__social {
  display: flex;
  text-decoration: none;
  list-style: none;
  font-size: var(--normal-font-size);
  padding-top: 10px;
}

.nav__list {
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  position: relative;
  color: var(--biru);
  font-weight: bold;
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
  text-decoration: none;
  list-style: none;
  font-family: var(--body-font);
}

.nav__link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.nav__link span {
  position: relative;
  transition: margin .4s;
}

.nav__link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--biru);
  transition: width .4s ease-out;
}

/* Animation link on hover */
.nav__link:hover span {
  margin-left: 2.5rem;
}

.nav__link:hover i {
  opacity: 1;
  visibility: visible;
}

.nav__link:hover span::after {
  width: 100%;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: .4;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__social {
  column-gap: 1rem;
}

.nav__social-link {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: transform .4s;
}

.nav__social-link:hover {
  transform: translateY(-.25rem);
}

.nav__social-link svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform .4s;
}

.nav__social-link:hover svg {
    transform: translateY(-.25rem);
}

/* Show menu */
.show-menu {
  left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 800px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle, 
  .nav__close {
    display: none;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .nav__link i {
    font-size: 1.5rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 3.5rem;
  }

  
}

hr {
  border: none;
  left: -100px;
  height: 2px;
  color: var(--menyala); 
  background-color: var(--menyala);
}
/* -- CSS TAMPILAN ATAS START --*/

.section {
  background-color: var(--putih);
  padding-left: 100px;
  
}

.section__container {
  min-height: 85vh;
  max-width: var(--max-width);
  margin: auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 200px;
}

.subtitle {
  font-family: var(--judul-font);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0;
}

.title {
  font-family: var(--judul-font);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 3rem;
  color: #A11D28;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.title span {
  font-weight: 600;
}

.description {
  font-family: var(--judul-font);
  line-height: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.action__btns {
  display: flex;
  gap: 1rem;
}

.action__btns a {
  font-size: 1.2rem;
  font-family: var(--body-font);
  font-weight: 600;
  letter-spacing: 2px;
  padding: 0.5rem 1.2rem;
  outline: none;
  border: 2px solid #A11D28;
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none; /* Menghapus garis bawah pada link */
  color: #A11D28;
}

.next:hover {
  background-color: #A11D28;
  color: #ffffff;
}


.images {
  width: 45%;
  height: 80%;
  position: absolute;
  bottom: 0;
  right: 100px;
  top:140px;
 
}

.images img {
  height: 100%;
  position: absolute;
  left: 60%;
  bottom: 0;
  transform: translateX(-50%);
  transition: bottom 1s, left 1s;
}

.images:hover .shape{
  bottom: 20px;
}

.images:hover .org{
  left: 65%;
}

@media (max-width: 750px) {
  .section {
    background-color: var(--extra-light);
    padding-left: 0px;
  }

  .section__container {
    padding: 10rem 1rem 5rem 1rem;
    text-align: center;
    grid-template-columns: repeat(1, 1fr);
  }

  .images {
    width: 20%;
    height: 50%;
    position: static;
    align-items: center;
    bottom: 0;
    
  }
  .images img {
    height: 50%;
    position: absolute;
    left: 50%;
    bottom: 280px;
    transform: translateX(-50%);
    transition: bottom 1s, left 1s;
  }
  
  .images:hover .shape{
    bottom: 290px;
  }
  
  .images:hover .org{
    left: 55%;
  }

  .subtitle {
    font-family: var(--judul-font);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 150px;
    margin-bottom: 0.5rem;
  }

  .title {
    font-family: var(--judul-font);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 3rem;
    color: #A11D28;
    margin-bottom: 1rem;
  }

  .title span {
    font-weight: 600;
  }

  .action__btns {
    display: flex;
    place-items: center;
    gap: 1rem;
  }

  .action__btns a {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0.5rem 1.2rem;
    outline: none;
    place-items: center;
    border: 2px solid #A11D28;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
  }
}
/* -- CSS TAMPILAN ATAS END --*/
/*-- CSS TAMPILAN MODAL START --*/
.modal {
  display: none;
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 80%;
  max-width: 700px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  animation-name: animatetop;
  animation-duration: 0.4s;
  background-color: white;
}

@keyframes animatetop {
  from { top: -300px; opacity: 0 }
  to { top: 0; opacity: 1 }
}

.modal-header, .modal-footer {
  padding: 1em;
  text-align: center;
  background-color: var(--biru);
  color: white;
}

.modal-body {
  padding: 2em;
  text-align: center;
}

.close {
  color: white;
  margin-top: -15px;
  float: right;
  font-size: 1.5em;
  font-weight: bold;
  font-family: var(--body-font);
}

.close:hover, .close:focus {
  color: var(--menyala);
  text-decoration: none;
  cursor: pointer;

}

.btn {
  padding: 0.5em 1em;
  border: none;
  background-color: var(--putih);
  color: var(--biru);
  cursor: pointer;
  font-size: 1em;
  
}

.btn:hover {
  background-color: var(--menyala);
  text-decoration: none;
  color: #fff;
}

/*-- CSS TAMPILAN MODAL END --*/
/*-- CSS TAMPILAN LINK START --*/
.card-container {
  gap: 20px;
  display: flex;
  font-family: var(--body-font);
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  margin-bottom: 30px;
  text-decoration: none;
}

.card {
  background-color: #fff;
  width:250px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s;
  padding: 20px;
  text-align: center;
  position: relative; /* Add this line */
}

.card::before { /* Add this block */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 117, 175, 0.1); /* Adjust color and opacity as needed */
  z-index: -1;
}

.card:hover {
  transform: translateY(-10px);
}

.card p {
  padding-top: 20px;
  color: #666;
  margin: 0 0 20px;
  text-decoration: none;
}

.card-button {
  background-color: var(--biru);
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition: background-color 0.2s, transform 0.2s;
}

.card-button:hover {
  background-color: white;
  color: var(--menyala);
  transform: scale(1.05);
  border: 2px solid var(--menyala);
}

.card-button.clicked {
  transform: scale(1.1);
  background-color: white;
  border: 2px solid var(--menyala);
  transition: transform 0.1s, background-color 0.2s, color 0.2s;
}

@media (max-width: 750px) {
  .card-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 20%;
    padding-top: 20px; /* Sesuaikan sesuai kebutuhan */
  }

  .card {
    width: 70%;
  }
}
/*-- CSS TAMPILAN LINK END --*/
/*-- CSS TAMPILAN TM START*/
.timeline-container {
  align-items: center;
  margin-left:35px;
  padding: 20px 0;
  overflow-x: hidden;
  white-space: nowrap;
  margin-bottom: 30px;
  font-family: var(--body-font);
}

.timeline {
  display: flex;
  position: relative;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
}
.judul {
  font-family: var(--judul-font);
  text-align: center;
  font-size: 2rem;
  margin-left: -5%;
  font-weight: 600;

  padding-top: 20px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, rgba(47, 117, 175, 1) 0%, rgba(223, 48, 48, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: glow 1.5s infinite alternate;
}

.judul-our {
  font-family: var(--judul-font);
  text-align: center;
  font-size: 2rem;
  
  font-weight: 600;
  padding-top: 130px;
  background: linear-gradient(90deg, rgba(47, 117, 175, 1) 0%, rgba(223, 48, 48, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: glow 1.5s infinite alternate;
}

.judul2 {
  font-family: var(--judul-font);
  text-align: center;
  font-size: 2rem;
  margin-left: -5%;
  font-weight: 600;
  padding-top: 20px;
  padding-bottom: 2px;
  background: linear-gradient(90deg, rgba(47, 117, 175, 1) 0%, rgba(223, 48, 48, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: glow 1.5s infinite alternate;
}


@keyframes glow {
  from {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2), 0 0 10px rgba(223, 48, 48, 1), 0 0 30px rgba(47, 117, 175, 0.1);
  }
  to {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2),  0 0 30px rgba(47, 117, 175, 0.3), 0 0 40px rgba(47, 117, 175, 0.1);
  }
}


.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(30% - 20px);
  height: 4px; /* Lebih tebal */
  background: var(--biru)
}

.timeline-item {
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  align-items: center;
  margin-right: 40px;
  background: var(--putih);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  width: 250px; /* Tentukan ukuran yang diinginkan */
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 0;
  height: 0;
  border-left: 10px solid #bf1010;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: translateY(-50%);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #333;
}

.timeline-item p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.timeline-item span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #999;
  padding-bottom: 10px;
}

.timeline-item button {
  background-color: var(--biru);
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition: background-color 0.2s, transform 0.2s;
}

.timeline-item button:hover{
  background-color: white;
  color: var(--menyala);
  transform: scale(1.05);
  border: 2px solid var(--menyala);
}

.timeline-item.clicked {
  transform: scale(1.1);
  background-color: white;
  border: 2px solid var(--menyala);
  transition: transform 0.1s, background-color 0.2s, color 0.2s;
}
.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 750px) {
  .timeline {
    display: block;
    padding-top: 20px;
    text-align: center;
  }

  .timeline-item {
    display: block;
    margin: 0 auto 30px;
    width: 90%;
    max-width: 300px; /* Sesuaikan ukuran yang diinginkan */
  }

  .timeline-item::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border: none;
  }
  .judul {
    font-family: var(--judul-font);
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    padding-top: 10px;
    padding-bottom: 10px;
    background: linear-gradient(90deg, rgba(47, 117, 175, 1) 0%, rgba(223, 48, 48, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: glow 1.5s infinite alternate;
  }
}

/*-- CSS TAMPILAN NEWS & VIDEO START --*/
.container1 {
    max-width: 1160px;
    margin: 0 auto;
    padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  }

/* Video Container */
.video-container1 {
  position: relative;
  margin-left:20%;
  width: 60%;
  max-width: 900px;
  height: 270px; /* Fixed height for landscape */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(135deg, #A11D28, #A11D28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container1:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.video-container1 iframe {

  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  border: none;
}

.video-container1:before {
  content: '';

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.video-container1 .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3em;
  color: white;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
  z-index: 2;
}

.video-container1 .play-button:hover {
  color: var(--biru);
  transform: scale(1.1);
}

@keyframes gradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

.video-container1 {
  background: linear-gradient(270deg, #A11D28, #2F75AF, #A11D28);
  background-size: 600% 600%;
  animation: gradient 10s ease infinite;
}
@media (max-width: 750px) {
  .container1 {
    width: 380px;
    height: 800px;
    margin: 90px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
  }
  .video-container1 {
    width: 100%;
    max-width: none;
    margin-left: 0;
    left: -1px;
    height: 40%; /* Fixed height for landscape */
  }
}
/*-- CSS TAMPILAN VIDEO END --*/

/* News Section */
  .news-container1 {
          font-family: var(--body-font);
          position: relative;
          display: flex;
          align-items: center;
          overflow-x: auto;
          scrollbar-width: none; 
          -ms-overflow-style: none; 
          white-space: nowrap;
          padding: 20px 0;
        }

.news-container1::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.news-item {
          flex: 0 0 auto;
          width: 25%; /* Adjusted width */
          margin-right: 20px; /* Reduced margin */
          background-color: #f9f9f9;
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 0 10px rgba(0,0,0,0.1);
          transition: transform 0.3s ease;
        }
        
        .news-item img {
          width: 100%; /* Ensure the image fills its container */
          height: 150px; /* Adjusted height */
          display: block;
          border-top-left-radius: 10px;
          border-top-right-radius: 10px;
        }
        
        .news-item:last-child {
          margin-right: 0;
        }

.news-item:hover {
  transform: scale(1.03);
}

.news-content {
  padding: 15px;
  text-align: left;
  color: #333;
}

.show-more {
  display: block;
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #A11D28;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  text-align: center;
}

.show-more:hover {
  background-color: #2F75AF;
}


.arrow-container{
          position: absolute;
          top: 65%;
          width: 100%;
          display: flex;
          justify-content: space-between;
          padding-right: 40px;
          transform: translateY(-25%);
          pointer-events: none;
        }
        
 .arrow {
          width: 40px;
          height: 40px;
          background-color: var(--menyala);
          color: #fff;
          font-size: 24px;
          text-align: center;
          line-height: 40px;
          cursor: pointer;
          z-index: 3;
          display: flex;
          justify-content: center;
          align-items: center;
          border-radius: 50%;
          pointer-events: auto;
        }
        .arrow:hover {
          background-color: #2F75AF;
        }



@media (max-width: 768px) {
  .news-item {
      width: 30%;
  }
  .news-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
}

.news-container1 {
    overflow-x: auto;
    padding: 20px 40px;
    gap:20px
}

.arrow {
    display: block;
}
}

@media (max-width: 576px) {
  .news-item {
      width: 100%;
      margin-right: 0;
      margin-bottom: 20px;
  }

  .news-container1 {
      overflow-x: auto;
      padding: 20px 40px;
      gap:20px
  }

  .arrow {
      display: block;
  }
}

/*-- CSS FOOTER--*/
.footer {
  box-shadow: 0 .1rem 1rem var(--menyala);
  font-family: var(--body-font);
  background-color: var(--putih);
  padding: 15px;
  text-align: center;
}

.nav__social2 {
  align-items: center;
  margin-left: 47%;
  display: flex;
  text-decoration: none;
  list-style: none;
  font-size: var(--normal-font-size);
  padding-top: 5px;
}

.nav__social2 {
  column-gap: 1rem;
}

.nav__social2-link {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: transform .4s;
}

.nav__social2-link:hover {
  transform: translateY(-.25rem);
}

.nav__social2-link svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform .4s;
}

.nav__social2-link:hover svg {
    transform: translateY(-.25rem);
}

@media (max-width: 750px) {
.nav__social2 {
  align-items: center;
  margin-left: 37%;
  display: flex;
  text-decoration: none;
  list-style: none;
  font-size: var(--normal-font-size);
  padding-top: 5px;
}
}

/*-- CSS LOGO SERIES--*/
.logo-container {
  gap: 70px;
  display: flex;
  font-family: var(--body-font);
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 50px;
  text-decoration: none;
}

.logo-item {
  text-align: center;
  background-color: #ffffff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px var(--menyala)
}

.circle-logo {
  width: 240px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;

}



.circle-logo-alazka{
  width: 240px;
  height: 110px;
  border-radius: 5%;
  overflow: hidden;
}


.logo-description {
  font-size: 16px;
  color: #333;
  font-weight: bold;
 
}
@media (max-width: 768px) {
  .logo-container {
    flex-direction: column;
    gap: 20px;
    align-items:center;
    justify-content: center;
    
  }
  .judul-our {
    font-family: var(--judul-font);
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(47, 117, 175, 1) 0%, rgba(223, 48, 48, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: glow 1.5s infinite alternate;
  }
  .logo-item {
    text-align: center;
  background-color: #ffffff;
  border-radius: 10px;

  }

  .circle-logo,
  .circle-logo-alazka {
    width: 240px;
    height: 200px;
    justify-content: center;

  }

  .logo-description {
    font-size: 14px;
    margin-top:-30%;
  }
}

/*-- CSS LOGO SERIES END--*/

/*-- CSS Deskripsi Pasfest 2--*/
.content-container {
  display: flex;
  flex-direction: column;  
  font-family: var(--body-font);
  
  justify-content: center;

 
 
  text-decoration: none;

  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 800px;
  width: 100%;
}

.content-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.image-section {
  flex: 1;
  padding-left: 3%;

}

.image-section img {
  width: 100%;
  height: auto;
  object-fit: cover;

}

.text-section {
  flex: 2;
  padding: 10px;
}

.text-section h2 {
  padding-top: 5%;
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.text-section p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Responsivitas untuk tampilan mobile */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;     
    justify-content: center;     
    padding: 10px;          
    width: 70%;             
  }

  .image-section, .text-section {
    width: 100%;             
    padding: 0;     
  }

  .text-section h2 {
    font-size: 17px;        
    padding-top: 1px;      
  }

  .text-section p {
    font-size: 12px;         
    line-height: 1.4;       
  }

  .image-section img {
    width: 40%;             
    height: auto;            
    justify-content: center;
  }
}

/*-- CSS Deskripsi Pasfest 2 END--*/