* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;

}

html {
    scroll-behavior: smooth;
    background-color: #FFB400;
}

body {
  overflow-x: hidden;
}

header {
    width: 100%;
    background-color: #F1EEFF;
    background-size: cover;
    background-position: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px); /* Efek blur kaca */
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  z-index: 100;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Tambahkan sedikit bayangan untuk kedalaman */
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: auto;
    margin-right: 10px;
    cursor: pointer;
}

.title {
    font-size: 24px;
    font-weight: bold;
    color: #4F359B;
    text-transform: uppercase;
}

.navbar-menu {
    display: flex;
    padding: 20px;
}

.navbar-menu ul {
    list-style: none;
    display: flex;
}

.navbar-menu li {
    margin-left: 20px;
}

.navbar-menu a {
    text-decoration: none;
    color: #4F359B;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    top: 8px;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: width 0.3s, background-color 0.3s, height 0.3s;
    width: 0;
}

.navbar-menu a:hover {
    color: #4F359B;
}

.navbar-menu a:hover::after {
    background-color: #4F359B;
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

@media (max-width: 800px) {
  .navbar-menu {
      display: none;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      padding: 20px 0;
  }

  .navbar-menu.active {
    display: block;
    backdrop-filter: blur(10px); /* Efek blur kaca */
    background-color: rgba(255, 255, 255, 0.1); /* Transparansi untuk efek kaca */
    z-index: 101;
    width: 40%;
    margin-top: 13px;
    left: 60%;
    text-align: left; /* Teks rata kiri */
    padding: 20px;
    border-radius: 8px; /* Opsional, membuat sudut melengkung untuk tampilan lebih halus */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Tambahkan sedikit bayangan untuk kedalaman */
}
  .navbar-menu ul {
      list-style: none;
      padding: 0;
      margin: 0;
      flex-direction: column;
      align-items: center;
  }

  .navbar-menu li {
      margin: 10px 0;
  }

  .menu-toggle {
      display: block;
      color: #4F359B;
      font-size: 24px;
      cursor: pointer;
  }
}

/*home*/
.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px; 
  height: auto;
  background-color: #F1EEFF;
}

.home .marquee {
    width: 100%;
    height: 300px;
    color: #4F359B;
    overflow: hidden;
    position: absolute;
    top: 300px;
    overflow: hidden;
    white-space: hidden;
}

.home .marquee:before,
.home .marquee:after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 1;
}

.home .marquee:before {
    left: 0;
    background: linear-gradient(to right, #F1EEFF 0%, transparent 100%);
}

.home .marquee:after {
    right: 0;
    background: linear-gradient(to left, #F1EEFF 0%, transparent 100%);
}

.home .marquee-content {
    list-style: none;
    display: inline-flex;
    height: 100%;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    position: absolute;
    animation: marquee-scroll linear infinite;
}

.home .marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 10rem;
    white-space: nowrap;
    position: relative;
    text-transform: uppercase;
    padding-right: 50px;
}

@keyframes scroll {
    0% { transform: translateX(10vw); }
    100% { transform: translateX(-500vw); }
}

.vertical-line {
    width: 2px;
    height: 25%;
    background-color: #4F359B;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 65%;
}

.scroll-text {
    margin: 15px auto;
    font-size: 16px;
    color: #4F359B;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(65% + 25%);
}

.content {
    width: 100%;
    position: absolute;
    text-align: center;
    top: calc(80% + 20%);
    padding-top: 80px;
    position: absolute;
}

.content h1 {
    font-size: 40px;
    font-weight: bold;
    margin-top: 0;
    color: #4F359B;
    background-color: transparent;
}

.content p {
    margin: 15px 100px;
    font-size: 16px;
    color: #4F359B;
    align-items: center;
    background-color: transparent;
}

button {
    width: 300px;
    padding: 15px 0;
    text-align: center;
    font-weight: bold;
    margin: 20px 10px;
    border-radius: 50px;
    font-size: 20px;
    border: 3px solid #4F359B;
    background: transparent;
    color: #4F359B;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

button span {
    background: #FFB400;
    height: 100%;
    width: 0;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: width 0.5s;
}

button:hover span {
    width: 100%;
}
  

/* About Me Section */
.about-me-section {
    background-color: #FFB400;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    margin-top: 90rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Row styling */
.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
    max-width: 1200px;
    width: 100%;
}

/* Column styling */
.col {
    flex: 1 1 300px;
    padding: 20px;
    gap: 20px;
    box-sizing: border-box;
}

/* About Me Profile */
.about-me-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.about-me-image {
    width: 100%;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10%;
    border: none;
}

/* About Me Name */
.about-me-name {
    font-size: 80px;
    font-weight: bold;
    color: #4F359B;
    text-transform: uppercase;
    line-height: 1;
    margin-top: -20px;
}

/* About Me Intro */
.about-me-intro {
    text-align: left;
    color: #FFFFFF;
    margin-top: 50px;
    align-content: center;
}

.about-me-intro h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.about-me-intro h3 {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.about-me-intro p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .col {
        flex: 1 1 45%;
    }

    .about-me-section {
        padding: 80px 40px;
    }
}

@media (max-width: 481px) {
    .about-me-section {
        padding: 60px 20px;
    }

    .about-me-name {
        font-size: 60px;
        align-content: center;
        object-position: 30px;
    }

    .about-me-intro h2 {
        font-size: 1.8rem;
    }

    .about-me-intro {
        min-width: fit-content;
    }

    .about-me-image {
        align-content: center;
    }
}


/*projects*/
.projects {
    overflow-x: hidden;
    position: relative;
}

.projects .marquee {
  color: #F1EEFF;
  overflow: hidden;
  white-space: nowrap;
  rotate: 2deg;  
  width: 105%; 
  height: 10%; 
  margin-top: 6%; 
  margin-left: -2%;
  z-index: 5;
  background-color: #4F359B;
  padding: 0;
  position: absolute;
}

.projects .marquee:before,
.projects .marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}

.projects .marquee:before {
  left: 0;
  background: linear-gradient(to right, #4F359B 0%, transparent 100%);
}

.projects .marquee:after {
  right: 0;
  background: linear-gradient(to left, #4F359B 0%, transparent 100%);
}

.projects .marquee-content {
  list-style: none;
  display: inline-flex;
  height: 100%;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  position: absolute;
  animation: scroll 60s linear infinite;
}

.projects .marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 5rem;
  white-space: nowrap;
  position: relative;
  text-transform: uppercase;
  padding-right: 50px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.main-content {
  background-color: #FFB400;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins: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{
    --w-image: 500px;
    --calculate: calc(3 / 2);
}

.carousel{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #FFB400;
}

.carousel .list{
    height: 100%;
    position: relative;
}

.carousel .list::before{
    position: absolute;
    width: var(--w-image);
    height: 100%;
    content: '';
    top: 0;
    left: calc(100% - calc(var(--w-image) * var(--calculate)));
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    z-index: 10;
    pointer-events: none;
}

.carousel .list .item{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item .image {
  position: absolute;
  top: 25%;
  left: 60%;  /* Remove nested calc */
  bottom: 80px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  font-weight: 500;
  width: 25%; /* Let the image size adjust based on `--w-image` */
  max-width: 100%; /* Ensure the image doesn't overflow */
}

.carousel .list .item .image img {
  width: 450px; /* Allow image to take up the full width of its container */
  margin-bottom: 20px;
  border-radius: 15px;
  border: none;
  filter: drop-shadow(0 25px 75px #9e0c0c55);
}

.carousel .list .item .main-content {
  height: 100%;
  display: grid;
  grid-template-columns: calc(100% - var(--w-image)); /* Adjust width based on image size */
  color: #FFFFFF;
}

.carousel .list .item .image figcaption{
    font-weight: bold;
    font-size: 1.3em;
    text-align: center;
    width: 70%;
    color: #FFFFFF;
    margin-top: -10%;
}


.carousel .list .item .main-content .contentc{
    padding: 150px 20px  20px 80px;
    width: 60%;
    margin-left: 10%;
}

.carousel .list .item .main-content .contentc h2{
    font-size: 5em;
    margin-top: 20%;
    color: #4F359B;
    font-weight: bolder;
    margin-bottom: -10px;
}

.carousel .list .item .main-content .contentc .cat{
    font-size: 3em;
    margin: 10px 0;
}

/* Arrows */
.arrows {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 50px);
  grid-template-rows: 50px;
  justify-content: center;
  gap: 30px;
  z-index: 10;
  align-items: center;
  margin-top: -30%;
}

.arrows button {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: #fff;
  font-family: monospace;
  font-size: large;
  font-weight: bold;
  box-shadow: 0 10px 40px #5555;
  cursor: pointer;
  transition: 0.5s;
  width: 60px;
  bottom: 50%;
}

.arrows button:hover {
  background-color: #eee5;
}

.carousel .list .item{
    display: none;
}
.carousel .list .item.active,
.carousel .list .item.other_1,
.carousel .list .item.other_2{
    display: block;
}

.carousel .list .item.active{
    z-index: 2;
}

.carousel .list .item.other_1,
.carousel .list .item.other_2{
    pointer-events: none;
}

.carousel .list .item.active .main-content{
    animation: showContent 1s ease-in-out 1 forwards;
}

@keyframes showContent{
    from{
        clip-path: circle(0% at 70% 50%);
    }to{
        clip-path: circle(100% at 70% 50%);
    }
}

.next .item.other_1{
    z-index: 1;
}

.next .item .image img,
.next .item .image figcaption{
    animation: effectNext .5s ease-in-out 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(calc(var(--transform-from)));
    }to{
        transform: translateX(calc(var(--transform-from) - var(--w-image)));
    }
}

.next .item.active .image{
    --transform-from: var(--w-image);
}

.next .item.other_1 .image{
    z-index: 3;
    --transform-from: 0px;
    overflow: hidden;
}

.next .item.other_2 .image{
    z-index: 3;
    --transform-from: calc(var(--w-image) * 2);
}

.arrows{
    z-index: 10;
}

/* prev */
.prev .list .item .image img,
.prev .list .item .image figcaption{
    animation: effectPrev 0.5s ease-in-out 1 forwards;
}

@keyframes effectPrev{
    from{
        transform: translateX(calc(var(--transform-from)));
    }to{
        transform: translateX(calc(var(--transform-from) + var(--w-image)));
    }
}

.prev .list .item.active .image{
    --transform-from: calc(var(--w-image) * -1);
    overflow: hidden;
}

.prev .list .item.other_1 .image{
    --transform-from: 0px;
    z-index: 3;
}

.prev .list .item.other_2 .image{
    z-index: 3;
    --transform-from: var(--w-image);
}

.prev .list .item.other_2 .main-content{
    opacity: 0;
}


@media screen and (max-width: 820px) {
  :root {
    --calculate: 1;
    --w-image: 600px; /* Reduce image size for very small screens */
  }
  .carousel .list .item .main-content .contentc h2 {
    font-size: 220%;
  }
  .carousel .list .item .main-content .contentc .cat {
    font-size: 170%;
  }
  .carousel .list .item .main-content .contentc p {
    font-size: 16px;
  }
  .carousel .list .item .main-content {
    width: 110%;
    margin-left: -9%;
    align-items: center;
  }
  .carousel .list .item .main-content p {
    width: 250px;
  }
  .carousel .list .item .image {
    width: 50%;  /* Make the image occupy more space */
    justify-content: center;
    left: 47%;
  }
  .carousel .list .item .image img{
    width: 300px;
  }
  .projects .marquee {
    margin-top: 20%;
  }
}

@media screen and (max-width: 480px) {

  .carousel .list .item .image {
      width: 100%;  /* Make the image occupy more space */
      justify-content: center;
      left: 0;
  }
  .carousel .list .item .image img{
    width: 90%;
  }
  .carousel .list .item .image figcaption {
      width: 100%;
      text-align: center;
  }
  .carousel .list .item .main-content .contentc {
      display: none;
  }
  .arrows {
      justify-content: center;
      margin-left: -3%;
  }
  .projects .marquee {
    margin-top: 30%;
  }
}

/*gallery*/
#gallery {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background-color: #FFB400;
}

.container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.items-links {
  width: 90%;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.item-link {
  border: 2px solid #4F359B;
  padding: 10px 30px;
  font: 18px;
  font-weight: 500;
  color: #4F359B;
  cursor: pointer;
  border-radius: 30px;
  transition: .4 ease;
}

.item-link:hover {
  background: #4F359B;
  color: #fff;
}

.menu-active {
  background: #4F359B;
  color: #fff;
}

.gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr); /* 3 kolom */
}

.gallery > .project-img {
  align-self: start; /* Biarkan tinggi sesuai konten */
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 20%;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: 0.4 ease;
}

.project-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(175, 175, 175, 0.4);
  animation: SclAnimation 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  grid-row: span calc(var(--aspect-ratio, 1)); /* Dinamis dengan properti CSS variabel */
}


.project-img:hover img {
  transform: scale(1.1);
}

@keyframes SlcAnimation {
  0%{
    transform: scale(0);
  }
  100%{
    transform: scale(1);
  }
}

.project-img:hover .overlay {
  top: 0;
}

@keyframes appear {
  from {
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

.overlay {
  position: absolute; /* Pastikan ini */
  top: 100%; /* Mulai di luar kotak */
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(transparent, #4F359B);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  transition: 0.4s ease;
}

.overlay h4 {
  font-size: 20px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 0 2px;
}

.overlay p {
  font-size: 14px;
  color: #F1EEFF;
  font-weight: bold;
  text-align: center;
  width: 90%;
}

.action-aria {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-block;
  width: fit-content;
  padding: 10px 20px;
  background-color: #4F359B;
  border-radius: 12px;
  text-decoration: none;
  color: #F1EEFF;
  font-size: 20px;
  font-weight: bold;
  border: 1px solid transparent;
  transition: 0.4s ease;
}

.btn:hover {
  background: #FFB400;
  border-color: #FFB400;
  border-width: 3px;
  color: #F1EEFF;
  font-weight: bold;
}

@media (max-width:1024px) {
  .container {
    width: 90%;
  }
  .items-links {
    width: 90%;
  }
}

@media (max-width:991px) {
  .items-links {
    gap: 20px;
    flex-wrap: wrap;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:600px) {
  .items-links {
    gap: 20px;
    flex-wrap: wrap;
  }
  .gallery{
    grid-template-columns: 1fr;
  }
  .project-img {
    height: max-content;
  }
}

/*contact*/
.contact {
  width: 100%;
  overflow: hidden;
  background-color: #FFFFFF;
}

.contact .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 150px;
  margin-bottom: 150px;
}

.contact .container > div {
  grid-column: 1/2;
}

.column {
  flex: 1;
  min-width: 250px; /* Ukuran minimum kolom */
  max-width: 48%;   /* Ukuran maksimum kolom untuk dua kolom di layar besar */
}

.contact-heading h1 {
  font-weight: 600;
  color: #4F359B;
  font-size: 3.5rem;
  line-height: 1.2;
  white-space: nowrap;
  margin-bottom: 1.2rem;
  text-align: left;
}

.contact-heading h1 span {
  color: #FFB400
}

.text {
  color: #100E09;
  line-height: 1.1;
  font-size: 1rem;
}

.text a {
  color: #4F359B;
  transition: 0.3s;
}

.text a:hover {
  color:#3a2775
}

.form-wrapper {
  max-width: 32rem;

}

.contact-form {
  display: grid;
  margin-top: 2.55rem;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 1rem;
}

.input-wrap {
  position: relative;
}

.input-wrap.w-100 {
  grid-column: span 2;
}

.contact-input {
  width: 100%;
  background-color: #F1EEFF;
  padding: 1.5rem 1.35rem calc(0.75rem - 2px) 1.35rem;
  border: none;
  outline: none;
  font-family: inherit;
  border-radius: 20px;
  color: #100E09;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  box-shadow: 0 0 0px #4F359B;
  transition: 0.3s;
}

.contact-input:hover {
  background-color: #e0dafb;
}

.input-wrap label {
  position: absolute;
  top: 50%;
  left: calc(1.35rem + 2px);
  transform: translateY(-50%);
  color:  #7e70a7;
  pointer-events: none;
  transition: 0.25s;
}

.input-wrap .icon {
  position: absolute;
  top: 50%;
  right: calc(1.35rem + 2px);
  transform: translateY(-50%);
  color: #7e70a7;
  pointer-events: none;
  font-size: 1.25rem;
  transition: 0.3s;
}

textarea.contact-input {
  resize: none;
  width: 100%;
  min-height: 150px;
}

textarea.contact-input ~ label {
  top: 1.2rem;
  transform: none;
}

textarea.contact-input ~ icon {
  top: 1.3rem;
  transform: none;
}

.input-wrap.focus .contact-input {
  background-color: #fff;
  border: 2px solid #4F359B;
  box-shadow: 0 0 0 5px #F1EEFF;
}

.input-wrap.focus label {
  color: #4F359B;
}

.input-wrap.focus .icon {
  color: #4F359B;
}

.input-wrap.not-empty label {
  font-size: 0.66rem;
  top: 0.75rem;
  transform: translateY(0);
}

.contact-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
  margin-top: 1rem;
  width: 100%;
  grid-column: span 2;
}

.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper img {
  max-width: 80%;
  height: auto;
  object-fit: cover;
  background-color: #FFB400;
  border-radius: 20%;
}

/* Responsive adjustments */
@media (min-width: 767px) {
  .contact .container {
    grid-template-columns: 1fr; /* Stack form and image vertically */
  }
  .image-wrapper img {
    max-height: 20%; /* Adjust image size for smaller screens */
  }
}

@media (max-width: 600px) {
  .image-wrapper img {
    display: none;
  }
  .form-wrapper {
    width: 140%;
    justify-items: center;
  }
  .contact-heading h1 {
    display: grid;
  }
}

/* Footer */
.footer {
  width: 100%;
  background-color: #FFB400;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* Tiga kolom untuk kiri, tengah, kanan */
  grid-template-rows: auto auto; /* Baris atas untuk konten, baris bawah untuk bottom */
  gap: 20px;
  justify-items: center; /* Tengahkan konten dalam kolom */
  align-items: start; /* Atur konten ke bagian atas */
  padding: 20px;
}

.footer-left {
  grid-column: 1; /* Kolom kiri */
}

.footer-center {
  grid-column: 2; /* Kolom tengah */
}

.footer-right {
  grid-column: 3; /* Kolom kanan */
}

.footer-bottom {
  grid-column: 1 / -1; /* Membentang di seluruh kolom */
  grid-row: 2; /* Posisikan di baris kedua */
  text-align: center;
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
}

.footer-left p, 
.footer-center a, 
.footer-right a {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  text-decoration: none;
  text-align: left;
}

.footer-center, 
.footer-right {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-weight: bold;
}

.footer-center a:hover, 
.footer-right a:hover {
  color: #4F359B;
}

.footer-spotify {
  margin-top: 20px;
  width: 100%;
  max-width: 500px;
}

.footer-spotify .contact-heading h1 {
  font-size: 2em;
}



/* Responsive adjustments */
@media screen and (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr; /* Dua kolom untuk tablet */
  }

  .footer-left {
    grid-column: 1 / span 2; /* Membentang di dua kolom */
  }

  .footer-center {
    grid-column: 1;
  }

  .footer-right {
    grid-column: 2;
  }
}
@media screen and (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr; /* Hanya satu kolom untuk ponsel */
    gap: 10px; /* Jarak antar elemen */
  }

  /* Spotify - Menempatkan di atas */
  .footer-left {
    text-align: center;
    margin-bottom: 10px;
    width: 80%;
    height: auto;
    grid-column: 1 / span 2;

  }

  .footer-left .footer-spotify .contact-heading h1 {
    font-size: 20px;
  }

  /* Footer center dan right - Menyamping di ponsel (vertikal) */
  .footer-center, .footer-right {
    display: flex;
    flex-direction: column; /* Menyusun elemen secara vertikal */
    align-items: center;
    gap: 15px; /* Jarak antar elemen */
    width: 100%;  /* Memastikan lebar penuh */
    flex: 1; /* Menyamaratakan lebar kedua kolom ini */
  }

  .footer-center a, .footer-right a {
    font-size: 16px;
    text-decoration: none;
    color: #fff;
  }

  .footer-center a:hover, .footer-right a:hover {
    color: #4F359B;
  }

  .footer-bottom {
    grid-column: 1;
    margin-top: 10px;
    text-align: center;
    padding-top: 10px;
  }

  iframe {
    width: 100%;  /* Sesuaikan iframe agar lebar penuh pada ponsel */
    height: 100px;
  }
}
