*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

 
html {
    scroll-behavior: smooth; 
}

 .container{
    max-width: 1300px;
    margin: auto;
    padding: 0 15px;
 }

 body{
    font-family: 'Poppins', sans-serif;
 }

 /* Header */
 /* Header */
 /* Header */

 .header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-bottom: 1px solid hsl(0, 0%, 100%, 0.2);
    z-index: 10;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.sticky {
    position: fixed;
    top: 0;
    background-color: #003366;
}



 .header .container{
    display: flex;
    align-items: center;
    justify-content: center;
 }


.header .logo {
    margin-right: auto; 
}

 .header .logo h1{
    vertical-align: middle;
    font-family: "Playwrite AR", cursive;
    font-weight: 300;
    font-style: normal;
 }

 .header .logo h1 a{
    text-decoration: none;
    color: white;   
 }

 
 .header .menu .head{
    display: none;
 }

 .header .menu ul{
    list-style: none;
 }

 .header .menu > ul > li{
    display: inline-block;
 }

 .header .menu > ul > li:not(:last-child){
    margin-right: 40px;
 }

 .header .menu .dropdown{
    position: relative;
 }

 .header .menu a{
    text-decoration: none;
    text-transform: capitalize;
    font-size:  16px;
    color: hsl(0, 0%, 100%);
    line-height: 1.5;
    display: block;
 }

 .header .menu > ul > li > a{
    padding: 24px 0;
 }

 
 .header .menu > ul > li > a:hover {
    color: aqua;
}

 .header .menu > ul > .dropdown > a{
    padding-right: 15px;
 }


 .header .menu i{
    font-size: 10px;
    pointer-events: none;
    user-select: none;
    position: absolute;
    color: hsl(0, 0%, 100%);
    top: calc(50% - 5px);
 }

 .header .menu > ul > li > i {
    right: 0;
 }

 .header .menu .sub-menu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    padding: 15px 0;
    background: #003366;
    border-radius: 5px;
    box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.5 );
    z-index: 1;
    transform-origin: top;
    transform: scaleY(0);
    visibility: hidden;
    opacity: 0;
 }


 .header .menu .sub-menu-right{
    left: 100%;
    top: 0;
 }
 
 .header .menu li:hover > .sub-menu{
    opacity: 1;
    transform: none;
    visibility: visible;
    transition: all 0.5s ease;
 }


 .header .menu .sub-menu a{
    padding: 6px 24px;
 }

 .header .menu .sub-menu .dropdown > a{
    padding-right: 34px;    
 }


 .header .menu .sub-menu span {
    background-image: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%));
    background-size: 0 1px; 
    background-repeat: no-repeat;
    background-position: 0 100%; 
    transition: background-size 0.5s ease; 
}


.header .menu .sub-menu li:hover > a > span {
    background-size: 100% 1px;
    color: aqua;
}

 .header .menu .sub-menu i{
    transform: rotate(-90deg);
    right: 24px;
 }

 .header-right{
    display: flex;
 }


 .header-right > *{
    margin-left: 25px;
 }



 .header-right .open-menu-btn{
    display: none;
 }

/* Beranda */
/* Beranda */
/* Beranda */


#beranda {
    min-height: 100vh;
    background-image: url(background-semat.jpg);
    background-size: cover;
    background-position: top;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    color: #fff;
    position: relative;
}

#beranda::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

#beranda .judul {
    max-width: 80%;
    position: relative;
    z-index: 2;
}

#beranda .judul h1 {
    font-family: "Playwrite AR", cursive;
    font-weight: 700;
    font-size: 1.9rem;
    color: #f8f8f8;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

#beranda .judul p {
    font-family: "Playwrite AR", cursive;
    text-decoration: overline aqua;
    font-weight: 500;
    font-size: 0.9rem;
    color: #e0e0e0;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.btn-tombol {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    color: #00ffff;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-tombol:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}



 /* tentang */

 #tentang {
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
}

#tentang .judul {
    background: #fff;
    max-width: 100%;
    text-align: center;
    padding: 20px 0;
    margin: 0 auto;
    padding: 0;
}

#tentang .judul h2 {
    margin: 0 auto;
    padding: 0;
    font-size: 5rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #000;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2s ease-out;
}

#tentang .judul .map {
    margin: 0 auto;
    padding: 0;
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
}

#tentang .judul .map p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

#tentang .judul .map a {
    color: #333;
    font-family: "Playwrite AR", cursive;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

#tentang .judul .map a:hover {
    text-decoration: underline;
}

#tentang .tentang {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

#tentang .img-tentang {
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
   
}

#tentang .img-tentang img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 97%;
    height: 310px;
    margin-left: 10px;
}

#tentang .deskripsi {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    max-width: 50%;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    animation: slideUp 1s ease-out;
    box-sizing: border-box;
    padding: 10px;
    margin: 10px;
    margin-top: 20px;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

#tentang .img-tentang h1 {
    font-family: "Playfair Display", serif;
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 10px;
    margin: 10px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#tentang .deskripsi p {
    color: #fff;
    font-family: "Playfair Display", serif;
    line-height: 1.6;
    font-size: 1.2em;
    text-align: justify;
    padding: 5px;
    margin: 10px;
}



/* Wisata */

#wisata{
    background: linear-gradient(135deg, #05172f, #003f6c); 
    padding-bottom: 20px;
   
}


#wisata .judul h2 {
   padding: 0;
   font-size: 5rem;
   font-family: "Playfair Display", serif;
   font-weight: 700;
   text-align: center;
   color: #fff;
   text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
   padding: 20px 0;
}


#wisata-alam {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
    text-align: center;
  
    
 
}



#wisata-alam  .deskripsi {
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    height: 400px;
}

#wisata-alam .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#wisata-alam .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    text-align: justify;
}


 

#wisata-alam .gambar-wisata-alam {
    position: relative;
    height: 400px;
    width: 700px;
    rotate: 0deg;
}

#wisata-alam .gambar-wisata-alam .img-wisata-alam {
    position: absolute;
    height: 100%;
    width: 100%;
}

#wisata-alam .gambar-wisata-alam .img-wisata-alam img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#wisata-alam #one-wisata-alam:checked ~ .img-wisata-alam.img-1-wisata-alam img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-alam #two-wisata-alam:checked ~ .img-wisata-alam.img-2-wisata-alam img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-alam #three-wisata-alam:checked ~ .img-wisata-alam.img-3-wisata-alam img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-alam #four-wisata-alam:checked ~ .img-wisata-alam.img-4-wisata-alam img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-alam #five-wisata-alam:checked ~ .img-wisata-alam.img-5-wisata-alam img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-alam .gambar-wisata-alam .sliders-wisata-alam {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#wisata-alam .gambar-wisata-alam .sliders-wisata-alam label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}


#wisata-alam #one-wisata-alam:checked ~ .sliders-wisata-alam label.one-wisata-alam,
#wisata-alam #two-wisata-alam:checked ~ .sliders-wisata-alam label.two-wisata-alam,
#wisata-alam #three-wisata-alam:checked ~ .sliders-wisata-alam label.three-wisata-alam,
#wisata-alam #four-wisata-alam:checked ~ .sliders-wisata-alam label.four-wisata-alam,
#wisata-alam #five-wisata-alam:checked ~ .sliders-wisata-alam label.five-wisata-alam {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-alam .sliders-wisata-alam label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-alam .gambar-wisata-alam input[type="radio"] {
    display: none;
}




 /* pantai-semat */

 

 
 .pantai-semat .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 20px;
    background: linear-gradient(135deg, #003f6c, #05172f);
    font-size: 5em;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}


#pantai-semat .pantai-semat{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
}



#pantai-semat .deskripsi {
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    height: 400px;
}

#pantai-semat .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#pantai-semat .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    text-align: justify;
}


#pantai-semat .deskripsi .peta-pantaisemat p {
    color: #000;
    line-height: 1.6;
    margin-top: 5px;
    font-size: 1em;
    text-align: justify;
}

#pantai-semat .gambar-pantai-semat {
    position: relative;
    height: 400px;
    rotate: 0deg;
    width: 650px;
}

#pantai-semat .gambar-pantai-semat .img-pantai-semat {
    position: absolute;
    height: 100%;
    width: 100%;
}

#pantai-semat .gambar-pantai-semat .img-pantai-semat img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#pantai-semat #one-pantai-semat:checked ~ .img-pantai-semat.img-1-pantai-semat img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-semat #two-pantai-semat:checked ~ .img-pantai-semat.img-2-pantai-semat img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-semat #three-pantai-semat:checked ~ .img-pantai-semat.img-3-pantai-semat img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-semat #four-pantai-semat:checked ~ .img-pantai-semat.img-4-pantai-semat img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-semat #five-pantai-semat:checked ~ .img-pantai-semat.img-5-pantai-semat img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-semat .gambar-pantai-semat .sliders-pantai-semat {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#pantai-semat .gambar-pantai-semat .sliders-pantai-semat label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#pantai-semat #one-pantai-semat:checked ~ .sliders-pantai-semat label.one-pantai-semat,
#pantai-semat #two-pantai-semat:checked ~ .sliders-pantai-semat label.two-pantai-semat,
#pantai-semat #three-pantai-semat:checked ~ .sliders-pantai-semat label.three-pantai-semat,
#pantai-semat #four-pantai-semat:checked ~ .sliders-pantai-semat label.four-pantai-semat,
#pantai-semat #five-pantai-semat:checked ~ .sliders-pantai-semat label.five-pantai-semat {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#pantai-semat .sliders-pantai-semat label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#pantai-semat .gambar-pantai-semat input[type="radio"] {
    display: none;
}




   
/* AKTIVITAS */

#aktivitas-pantaisemat .judul-aktivitas-pantaisemat{
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    max-width: 100%;
   
}

#aktivitas-pantaisemat .judul-aktivitas-pantaisemat h1{
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    font-size: 5em;
    text-align: center;
    position: relative;
    font-family: "Playfair Display", serif;
    padding: 20px;
    margin-top: 30px;
    color: #fff ;
    background: #003f6c;
    max-width: 1150px;
    border-radius: 20px;

}

#aktivitas-pantaisemat .judul-aktivitas-pantaisemat h2{
    font-family: 'Cinzel Decorative', serif;
    text-align: center;
    font-size: 2.2em; 
    color: #555;
    margin-top: 10px;
}

#aktivitas-pantaisemat .highlight {
    color: #00bcd4;
}


#aktivitas-pantaisemat  .judul-aktivitas-pantaisemat p{
    margin: 0 auto;
    padding: 0;
    max-width: 810px;
    font-family: "Playfair Display", serif;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 1.3em; 
    color: #666;
    line-height: 1.5; 
    
}

#aktivitas-pantaisemat .icons-aktivitas-pantaisemat {
    display: flex;
    flex-wrap: wrap;  
    justify-content: center;  
    gap: 20px; 
    padding: 10px; 
    max-width: 100%;  
}

 
#aktivitas-pantaisemat .icon {
    text-align: center;  
    height: 140px; 
    width: 120px; 
    border: 2px solid #ddd;  
    border-radius: 10px;  
    background: #f8f8f8;  
    padding: 10px;  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
    transition: background 0.3s, border-color 0.3s;  
    flex: 0 0 auto;  
}


#aktivitas-pantaisemat .icon:hover {
    transform: translateY(-5px);  
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  
}

 
#aktivitas-pantaisemat .icon img {
    width: 60px;  
    height: 60px;  
    object-fit: cover;  
    margin-bottom: 10px;  
    cursor: pointer;  
    transition: transform 0.3s;  
}
  

#aktivitas-pantaisemat .icon h1 {
    font-size: 16px;  
    margin: 0; 
}
 

 
#aktivitas-pantaisemat .icon.active-pantaisemat  {
    background: #003f6c;
    color: white;
}


#aktivitas-pantaisemat .deskripsi-aktivitas-pantaisemat {
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    max-width: 90%;
    border-radius: 10px;
    margin: auto;
    justify-content: center;
    gap: 0; 
}

 

#aktivitas-pantaisemat .deskripsi-aktivitas-pantaisemat .gambar img {
    margin: 0;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;

}


#aktivitas-pantaisemat .deskripsi-aktivitas-pantaisemat .deskripsi {
    text-align: justify;
    height: 100%;
    height: 350px;
    background: linear-gradient(135deg, #05172f, #003f6c);
    


}


#aktivitas-pantaisemat .deskripsi-aktivitas-pantaisemat .deskripsi h1 {
    text-align: center;
    padding: 10px;
    font-size: 2em;
    color: #000;
    background: #fff;
}


#aktivitas-pantaisemat #activity-image-pantaisemat {
    max-width: 100%;
    width: 100%;  
    height: 390px;
}


#aktivitas-pantaisemat #activity-description-pantaisemat {
    font-size: 1rem;
    line-height: 2em;
    color: #fff;
}


 





 /* pantai-mbahsirah */
 #pantai-mbahsirah .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 20px;
    background: linear-gradient(135deg, #05172f, #003f6c);
    font-size: 5rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}
 

#pantai-mbahsirah .pantai-mbahsirah{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
}



#pantai-mbahsirah .deskripsi {
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    height: 400px;
}

#pantai-mbahsirah .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#pantai-mbahsirah .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    text-align: justify;
}


#pantai-mbahsirah .deskripsi .peta-pantaimbahsirah p {
    color: #000;
    line-height: 1.6;
    margin-top: 5px;
    font-size: 1em;
    text-align: justify;
}


#pantai-mbahsirah .gambar-pantai-mbahsirah {
    position: relative;
    height: 400px;
    rotate: 0deg;
    width: 650px;
}

#pantai-mbahsirah .gambar-pantai-mbahsirah .img-pantai-mbahsirah {
    position: absolute;
    height: 100%;
    width: 100%;
}

#pantai-mbahsirah .gambar-pantai-mbahsirah .img-pantai-mbahsirah img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#pantai-mbahsirah #one-pantai-mbahsirah:checked ~ .img-pantai-mbahsirah.img-1-pantai-mbahsirah img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-mbahsirah #two-pantai-mbahsirah:checked ~ .img-pantai-mbahsirah.img-2-pantai-mbahsirah img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-mbahsirah #three-pantai-mbahsirah:checked ~ .img-pantai-mbahsirah.img-3-pantai-mbahsirah img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-mbahsirah #four-pantai-mbahsirah:checked ~ .img-pantai-mbahsirah.img-4-pantai-mbahsirah img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-mbahsirah #five-pantai-mbahsirah:checked ~ .img-pantai-mbahsirah.img-5-pantai-mbahsirah img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-mbahsirah .gambar-pantai-mbahsirah .sliders-pantai-mbahsirah {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#pantai-mbahsirah .gambar-pantai-mbahsirah .sliders-pantai-mbahsirah label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#pantai-mbahsirah #one-pantai-mbahsirah:checked ~ .sliders-pantai-mbahsirah label.one-pantai-mbahsirah,
#pantai-mbahsirah #two-pantai-mbahsirah:checked ~ .sliders-pantai-mbahsirah label.two-pantai-mbahsirah,
#pantai-mbahsirah #three-pantai-mbahsirah:checked ~ .sliders-pantai-mbahsirah label.three-pantai-mbahsirah,
#pantai-mbahsirah #four-pantai-mbahsirah:checked ~ .sliders-pantai-mbahsirah label.four-pantai-mbahsirah,
#pantai-mbahsirah #five-pantai-mbahsirah:checked ~ .sliders-pantai-mbahsirah label.five-pantai-mbahsirah {
    width: 35px;
    border-radius: 14px;
       background: linear-gradient(135deg, #05172f, #003f6c);

}

#pantai-mbahsirah .sliders-pantai-mbahsirah label:hover {
       background: linear-gradient(135deg, #05172f, #003f6c);

}

#pantai-mbahsirah .gambar-pantai-mbahsirah input[type="radio"] {
    display: none;
}



/* AKTIVITAS */

#aktivitas-pantaimbahsirah .judul-aktivitas-pantaimbahsirah{
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    max-width: 100%;
   
}

#aktivitas-pantaimbahsirah .judul-aktivitas-pantaimbahsirah h1{
    font-size: 5em;
    text-align: center;
    position: relative;
    font-family: "Playfair Display", serif;
    padding: 20px;
    margin-top: 30px;
    color: #fff ;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#aktivitas-pantaimbahsirah .judul-aktivitas-pantaimbahsirah h2{
    font-family: 'Cinzel Decorative', serif;
    text-align: center;
    font-size: 2.2em; 
    color: #555;
    margin-top: 10px;
}

#aktivitas-pantaimbahsirah .highlight {
    color: #00bcd4;
}


#aktivitas-pantaimbahsirah  .judul-aktivitas-pantaimbahsirah p{
    margin: 0 auto;
    padding: 0;
    max-width: 810px;
    font-family: "Playfair Display", serif;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 1.3em; 
    color: #666;
    line-height: 1.5; 
    
}

#aktivitas-pantaimbahsirah .icons-aktivitas-pantaimbahsirah {
    display: flex;
    flex-wrap: nowrap;  
    justify-content: center;  
    gap: 20px; 
    padding: 10px; 
    max-width: 100%;  
}

 
#aktivitas-pantaimbahsirah .icon {
    text-align: center;  
    height: 140px; 
    width: 120px; 
    border: 2px solid #ddd;  
    border-radius: 10px;  
    background: #f8f8f8;  
    padding: 10px;  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
    transition: background 0.3s, border-color 0.3s;  
    flex: 0 0 auto;  
}


#aktivitas-pantaimbahsirah .icon:hover {
    transform: translateY(-5px);  
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  
}

 
#aktivitas-pantaimbahsirah .icon img {
    width: 60px;  
    height: 60px;  
    object-fit: cover;  
    margin-bottom: 10px;  
    cursor: pointer;  
    transition: transform 0.3s;  
}
  

#aktivitas-pantaimbahsirah .icon h1 {
    font-size: 16px;  
    margin: 0; 
}
 

 
#aktivitas-pantaimbahsirah .icon.active-pantaimbahsirah  {
    background: linear-gradient(135deg, #003f6c,  #05172f);

    color: white;
}


#aktivitas-pantaimbahsirah .deskripsi-aktivitas-pantaimbahsirah {
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    max-width: 90%;
    border-radius: 10px;
    margin: auto;
    justify-content: center;
    gap: 0; 
}

 

#aktivitas-pantaimbahsirah .deskripsi-aktivitas-pantaimbahsirah .gambar img {
    margin: 0;
   
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;

}


#aktivitas-pantaimbahsirah .deskripsi-aktivitas-pantaimbahsirah .deskripsi {
    text-align: justify;
    height: 100%;
    height: 350px;

    background: linear-gradient(135deg, #05172f, #003f6c);
    


}


#aktivitas-pantaimbahsirah .deskripsi-aktivitas-pantaimbahsirah .deskripsi h1 {
    text-align: center;
    padding: 10px;
    font-size: 2em;
    color: #000;
    background: #fff;
}


#aktivitas-pantaimbahsirah #activity-image-pantaimbahsirah {
    max-width: 100%;
    width: 100%;  
    height: 390px;
}


#aktivitas-pantaimbahsirah #activity-description-pantaimbahsirah {
    font-size: 1rem;
    line-height: 2em;
    color: #fff;
}




 /* pantai-kalibuntung */
 #pantai-kalibuntung .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 20px;
    background: linear-gradient(135deg, #05172f, #003f6c);
    font-size: 5rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}
 

#pantai-kalibuntung .pantai-kalibuntung{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
}



#pantai-kalibuntung .deskripsi {
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    height: 400px;
}

#pantai-kalibuntung .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#pantai-kalibuntung .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    text-align: justify;
}

#pantai-kalibuntung .deskripsi .peta-pantaikalibuntung p {
    margin-top: 6px;
    line-height: 1.6;
    font-size: 1em;
    text-align: justify;
}

#pantai-kalibuntung .gambar-pantai-kalibuntung {
    position: relative;
    height: 400px;
    width: 650px;
    rotate: 0deg;
}

#pantai-kalibuntung .gambar-pantai-kalibuntung .img-pantai-kalibuntung {
    position: absolute;
    height: 100%;
    width: 100%;
}

#pantai-kalibuntung .gambar-pantai-kalibuntung .img-pantai-kalibuntung img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#pantai-kalibuntung #one-pantai-kalibuntung:checked ~ .img-pantai-kalibuntung.img-1-pantai-kalibuntung img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-kalibuntung #two-pantai-kalibuntung:checked ~ .img-pantai-kalibuntung.img-2-pantai-kalibuntung img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-kalibuntung #three-pantai-kalibuntung:checked ~ .img-pantai-kalibuntung.img-3-pantai-kalibuntung img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-kalibuntung #four-pantai-kalibuntung:checked ~ .img-pantai-kalibuntung.img-4-pantai-kalibuntung img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-kalibuntung #five-pantai-kalibuntung:checked ~ .img-pantai-kalibuntung.img-5-pantai-kalibuntung img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-kalibuntung .gambar-pantai-kalibuntung .sliders-pantai-kalibuntung {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#pantai-kalibuntung .gambar-pantai-kalibuntung .sliders-pantai-kalibuntung label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#pantai-kalibuntung #one-pantai-kalibuntung:checked ~ .sliders-pantai-kalibuntung label.one-pantai-kalibuntung,
#pantai-kalibuntung #two-pantai-kalibuntung:checked ~ .sliders-pantai-kalibuntung label.two-pantai-kalibuntung,
#pantai-kalibuntung #three-pantai-kalibuntung:checked ~ .sliders-pantai-kalibuntung label.three-pantai-kalibuntung,
#pantai-kalibuntung #four-pantai-kalibuntung:checked ~ .sliders-pantai-kalibuntung label.four-pantai-kalibuntung,
#pantai-kalibuntung #five-pantai-kalibuntung:checked ~ .sliders-pantai-kalibuntung label.five-pantai-kalibuntung {
    width: 35px;
    border-radius: 14px;
       background: linear-gradient(135deg, #05172f, #003f6c);

}

#pantai-kalibuntung .sliders-pantai-kalibuntung label:hover {
       background: linear-gradient(135deg, #05172f, #003f6c);

}

#pantai-kalibuntung .gambar-pantai-kalibuntung input[type="radio"] {
    display: none;
}



/* AKTIVITAS */

#aktivitas-pantaikalibuntung .judul-aktivitas-pantaikalibuntung{
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    max-width: 100%;
   
}

#aktivitas-pantaikalibuntung .judul-aktivitas-pantaikalibuntung h1{
    font-size: 5em;
    text-align: center;
    position: relative;
    font-family: "Playfair Display", serif;
    padding: 20px;
    margin-top: 30px;
    color: #fff ;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#aktivitas-pantaikalibuntung .judul-aktivitas-pantaikalibuntung h2{
    font-family: 'Cinzel Decorative', serif;
    text-align: center;
    font-size: 2.2em; 
    color: #555;
    margin-top: 10px;
}

#aktivitas-pantaikalibuntung .highlight {
    color: #00bcd4;
}


#aktivitas-pantaikalibuntung  .judul-aktivitas-pantaikalibuntung p{
    margin: 0 auto;
    padding: 0;
    max-width: 810px;
    font-family: "Playfair Display", serif;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 1.3em; 
    color: #666;
    line-height: 1.5; 
    
}

#aktivitas-pantaikalibuntung .icons-aktivitas-pantaikalibuntung {
    display: flex;
    flex-wrap: nowrap;  
    justify-content: center;  
    gap: 20px; 
    padding: 10px; 
    max-width: 100%;  
}

 
#aktivitas-pantaikalibuntung .icon {
    text-align: center;  
    height: 140px; 
    width: 120px; 
    border: 2px solid #ddd;  
    border-radius: 10px;  
    background: #f8f8f8;  
    padding: 10px;  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
    transition: background 0.3s, border-color 0.3s;  
    flex: 0 0 auto;  
}


#aktivitas-pantaikalibuntung .icon:hover {
    transform: translateY(-5px);  
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  
}

 
#aktivitas-pantaikalibuntung .icon img {
    width: 60px;  
    height: 60px;  
    object-fit: cover;  
    margin-bottom: 10px;  
    cursor: pointer;  
    transition: transform 0.3s;  
}
  

#aktivitas-pantaikalibuntung .icon h1 {
    font-size: 16px;  
    margin: 0; 
}
 

 
#aktivitas-pantaikalibuntung .icon.active-pantaikalibuntung  {
    background: linear-gradient(135deg, #003f6c,  #05172f);

    color: white;
}


#aktivitas-pantaikalibuntung .deskripsi-aktivitas-pantaikalibuntung {
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    max-width: 90%;
    border-radius: 10px;
    margin: auto;
    justify-content: center;
    gap: 0; 
}

 

#aktivitas-pantaikalibuntung .deskripsi-aktivitas-pantaikalibuntung .gambar img {
    margin: 0;
   
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;

}


#aktivitas-pantaikalibuntung .deskripsi-aktivitas-pantaikalibuntung .deskripsi {
    text-align: justify;
    height: 100%;
    height: 350px;

    background: linear-gradient(135deg, #05172f, #003f6c);
    


}


#aktivitas-pantaikalibuntung .deskripsi-aktivitas-pantaikalibuntung .deskripsi h1 {
    text-align: center;
    padding: 10px;
    font-size: 2em;
    color: #000;
    background: #fff;
}


#aktivitas-pantaikalibuntung #activity-image-pantaikalibuntung {
    max-width: 100%;
    width: 100%;  
    height: 390px;
}


#aktivitas-pantaikalibuntung #activity-description-pantaikalibuntung {
    font-size: 1rem;
    line-height: 2em;
    color: #fff;
}







/* wisata-religi */

#wisata{
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-religi {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
    text-align: center;
    
    
 
}



#wisata-religi .deskripsi {
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    height: 400px;
}

#wisata-religi .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#wisata-religi .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    text-align: justify;
}

#wisata-religi .gambar-wisata-religi {
    position: relative;
    height: 400px;
    width: 700px;
    rotate: 0deg;

}

#wisata-religi .gambar-wisata-religi .img-wisata-religi {
    position: absolute;
    height: 100%;
    width: 100%;
}

#wisata-religi .gambar-wisata-religi .img-wisata-religi img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#wisata-religi #one-wisata-religi:checked ~ .img-wisata-religi.img-1-wisata-religi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-religi #two-wisata-religi:checked ~ .img-wisata-religi.img-2-wisata-religi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-religi #three-wisata-religi:checked ~ .img-wisata-religi.img-3-wisata-religi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-religi #four-wisata-religi:checked ~ .img-wisata-religi.img-4-wisata-religi img {
    clip-path: circle(150% at 0% 100%);
}
#wisata-religi #five-wisata-religi:checked ~ .img-wisata-religi.img-5-wisata-religi img {
    clip-path: circle(150% at 0% 100%);
}
#wisata-religi #six-wisata-religi:checked ~ .img-wisata-religi.img-6-wisata-religi img {
    clip-path: circle(150% at 0% 100%);
}
 

#wisata-religi .gambar-wisata-religi .sliders-wisata-religi {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#wisata-religi .gambar-wisata-religi .sliders-wisata-religi label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#wisata-religi #one-wisata-religi:checked ~ .sliders-wisata-religi label.one-wisata-religi,
#wisata-religi #two-wisata-religi:checked ~ .sliders-wisata-religi label.two-wisata-religi,
#wisata-religi #three-wisata-religi:checked ~ .sliders-wisata-religi label.three-wisata-religi,
#wisata-religi #four-wisata-religi:checked ~ .sliders-wisata-religi label.four-wisata-religi,
#wisata-religi #five-wisata-religi:checked ~ .sliders-wisata-religi label.five-wisata-religi,
#wisata-religi #six-wisata-religi:checked ~ .sliders-wisata-religi label.six-wisata-religi{
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-religi .sliders-wisata-religi label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-religi .gambar-wisata-religi input[type="radio"] {
    display: none;
}




 /* makam-mbahsirah */
 #makam-mbahsirah .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 20px;
    background: linear-gradient(135deg, #05172f, #003f6c);
    font-size: 5rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}
 

#makam-mbahsirah .makam-mbahsirah{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
}



#makam-mbahsirah .deskripsi {
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    height: 400px;
}

#makam-mbahsirah .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#makam-mbahsirah .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    text-align: justify;
}


#makam-mbahsirah .deskripsi .peta-makam-mbahsirah{
    margin: 0 auto; 
    text-align: center; 
    justify-content: center;
    align-items: center;
}

#makam-mbahsirah .deskripsi .peta-makam-mbahsirah p {
    text-align: justify;
    margin-top: 5px;
    line-height: 1.6;
    font-size: 1em;
} 
 

#makam-mbahsirah .gambar-makam-mbahsirah {
    position: relative;
    height: 400px;
    width: 650px;
}

#makam-mbahsirah .gambar-makam-mbahsirah .img-makam-mbahsirah {
    position: absolute;
    height: 100%;
    width: 100%;
}

#makam-mbahsirah .gambar-makam-mbahsirah .img-makam-mbahsirah img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#makam-mbahsirah #one-makam-mbahsirah:checked ~ .img-makam-mbahsirah.img-1-makam-mbahsirah img {
    clip-path: circle(150% at 0% 100%);
}

#makam-mbahsirah #two-makam-mbahsirah:checked ~ .img-makam-mbahsirah.img-2-makam-mbahsirah img {
    clip-path: circle(150% at 0% 100%);
}

#makam-mbahsirah #three-makam-mbahsirah:checked ~ .img-makam-mbahsirah.img-3-makam-mbahsirah img {
    clip-path: circle(150% at 0% 100%);
}


#makam-mbahsirah #four-makam-mbahsirah:checked ~ .img-makam-mbahsirah.img-4-makam-mbahsirah img {
    clip-path: circle(150% at 0% 100%);
}

#makam-mbahsirah #five-makam-mbahsirah:checked ~ .img-makam-mbahsirah.img-5-makam-mbahsirah img {
    clip-path: circle(150% at 0% 100%);
}

#makam-mbahsirah .gambar-makam-mbahsirah .sliders-makam-mbahsirah {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#makam-mbahsirah .gambar-makam-mbahsirah .sliders-makam-mbahsirah label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#makam-mbahsirah #one-makam-mbahsirah:checked ~ .sliders-makam-mbahsirah label.one-makam-mbahsirah,
#makam-mbahsirah #two-makam-mbahsirah:checked ~ .sliders-makam-mbahsirah label.two-makam-mbahsirah,
#makam-mbahsirah #three-makam-mbahsirah:checked ~ .sliders-makam-mbahsirah label.three-makam-mbahsirah,
#makam-mbahsirah #four-makam-mbahsirah:checked ~ .sliders-makam-mbahsirah label.four-makam-mbahsirah,
#makam-mbahsirah #five-makam-mbahsirah:checked ~ .sliders-makam-mbahsirah label.five-makam-mbahsirah{
    width: 35px;
    border-radius: 14px;
       background: linear-gradient(135deg, #05172f, #003f6c);

}

#makam-mbahsirah .sliders-makam-mbahsirah label:hover {
       background: linear-gradient(135deg, #05172f, #003f6c);

}

#makam-mbahsirah .gambar-makam-mbahsirah input[type="radio"] {
    display: none;
}






 /* makam-yikfekirsugih */
 #makam-yikfekirsugih .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 20px;
    background: linear-gradient(135deg, #05172f, #003f6c);
    font-size: 5rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}
 

#makam-yikfekirsugih .makam-yikfekirsugih{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
}



#makam-yikfekirsugih .deskripsi {
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    height: 400px;
}

#makam-yikfekirsugih .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.2em;
    padding: 10px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#makam-yikfekirsugih .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    text-align: justify;
}


#makam-yikfekirsugih .deskripsi .peta-makam-yikfekirsugih{
    margin: 0 auto; 
    text-align: center; 
    justify-content: center;
    align-items: center;
}

#makam-yikfekirsugih .deskripsi .peta-makam-yikfekirsugih p {
    text-align: justify;
    margin-top: 15px;
    line-height: 1.6;
    font-size: 1em;
} 
 


#makam-yikfekirsugih .gambar-makam-yikfekirsugih {
    position: relative;
    height: 400px;
    width: 650px;
    rotate: 0deg;
}

#makam-yikfekirsugih .gambar-makam-yikfekirsugih .img-makam-yikfekirsugih {
    position: absolute;
    height: 100%;
    width: 100%;
}

#makam-yikfekirsugih .gambar-makam-yikfekirsugih .img-makam-yikfekirsugih img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#makam-yikfekirsugih #one-makam-yikfekirsugih:checked ~ .img-makam-yikfekirsugih.img-1-makam-yikfekirsugih img {
    clip-path: circle(150% at 0% 100%);
}

#makam-yikfekirsugih #two-makam-yikfekirsugih:checked ~ .img-makam-yikfekirsugih.img-2-makam-yikfekirsugih img {
    clip-path: circle(150% at 0% 100%);
}

#makam-yikfekirsugih #three-makam-yikfekirsugih:checked ~ .img-makam-yikfekirsugih.img-3-makam-yikfekirsugih img {
    clip-path: circle(150% at 0% 100%);
}

#makam-yikfekirsugih .gambar-makam-yikfekirsugih .sliders-makam-yikfekirsugih {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#makam-yikfekirsugih .gambar-makam-yikfekirsugih .sliders-makam-yikfekirsugih label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#makam-yikfekirsugih #one-makam-yikfekirsugih:checked ~ .sliders-makam-yikfekirsugih label.one-makam-yikfekirsugih,
#makam-yikfekirsugih #two-makam-yikfekirsugih:checked ~ .sliders-makam-yikfekirsugih label.two-makam-yikfekirsugih,
#makam-yikfekirsugih #three-makam-yikfekirsugih:checked ~ .sliders-makam-yikfekirsugih label.three-makam-yikfekirsugih{
    width: 35px;
    border-radius: 14px;
       background: linear-gradient(135deg, #05172f, #003f6c);

}

#makam-yikfekirsugih .sliders-makam-yikfekirsugih label:hover {
       background: linear-gradient(135deg, #05172f, #003f6c);

}

#makam-yikfekirsugih .gambar-makam-yikfekirsugih input[type="radio"] {
    display: none;
}






#wisata-edukasi {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
    text-align: center;
  
    
 
}



#wisata-edukasi  .deskripsi {
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    height: 400px;
}

#wisata-edukasi .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#wisata-edukasi .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    text-align: justify;
}


 

#wisata-edukasi .gambar-wisata-edukasi {
    position: relative;
    height: 400px;
    width: 700px;
    rotate: 0deg;
}

#wisata-edukasi .gambar-wisata-edukasi .img-wisata-edukasi {
    position: absolute;
    height: 100%;
    width: 100%;
}

#wisata-edukasi .gambar-wisata-edukasi .img-wisata-edukasi img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#wisata-edukasi #one-wisata-edukasi:checked ~ .img-wisata-edukasi.img-1-wisata-edukasi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-edukasi #two-wisata-edukasi:checked ~ .img-wisata-edukasi.img-2-wisata-edukasi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-edukasi #three-wisata-edukasi:checked ~ .img-wisata-edukasi.img-3-wisata-edukasi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-edukasi #four-wisata-edukasi:checked ~ .img-wisata-edukasi.img-4-wisata-edukasi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-edukasi #five-wisata-edukasi:checked ~ .img-wisata-edukasi.img-5-wisata-edukasi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-edukasi .gambar-wisata-edukasi .sliders-wisata-edukasi {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#wisata-edukasi .gambar-wisata-edukasi .sliders-wisata-edukasi label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}


#wisata-edukasi #one-wisata-edukasi:checked ~ .sliders-wisata-edukasi label.one-wisata-edukasi,
#wisata-edukasi #two-wisata-edukasi:checked ~ .sliders-wisata-edukasi label.two-wisata-edukasi,
#wisata-edukasi #three-wisata-edukasi:checked ~ .sliders-wisata-edukasi label.three-wisata-edukasi,
#wisata-edukasi #four-wisata-edukasi:checked ~ .sliders-wisata-edukasi label.four-wisata-edukasi,
#wisata-edukasi #five-wisata-edukasi:checked ~ .sliders-wisata-edukasi label.five-wisata-edukasi {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-edukasi .sliders-wisata-edukasi label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-edukasi .gambar-wisata-edukasi input[type="radio"] {
    display: none;
}


 /* edukasi-batiksemat */

 
 #edukasibatiksemat .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 5rem;
    background: linear-gradient(135deg, #05172f, #003f6c);
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}
 

 #edukasi-batiksemat .edukasi-batiksemat{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
}



 #edukasibatiksemat .deskripsi {
    margin: 0;
    padding: 0;
    max-width: 500px;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
    text-align: center;
    height: 400px;
}

 #edukasibatiksemat .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

 #edukasibatiksemat .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    text-align: justify;
}

 #edukasibatiksemat .gambar-edukasi-batiksemat {
    position: relative;
    height: 400px;
    width: 650px;
    rotate: 0deg;
}

 #edukasibatiksemat .gambar-edukasi-batiksemat .img-edukasi-batiksemat {
    position: absolute;
    height: 100%;
    width: 100%;
}

 #edukasibatiksemat .gambar-edukasi-batiksemat .img-edukasi-batiksemat img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

 #edukasibatiksemat #one-edukasi-batiksemat:checked ~ .img-edukasi-batiksemat.img-1-edukasi-batiksemat img {
    clip-path: circle(150% at 0% 100%);
}

 #edukasibatiksemat #two-edukasi-batiksemat:checked ~ .img-edukasi-batiksemat.img-2-edukasi-batiksemat img {
    clip-path: circle(150% at 0% 100%);
}

 #edukasibatiksemat #three-edukasi-batiksemat:checked ~ .img-edukasi-batiksemat.img-3-edukasi-batiksemat img {
    clip-path: circle(150% at 0% 100%);
}

 #edukasibatiksemat #four-edukasi-batiksemat:checked ~ .img-edukasi-batiksemat.img-4-edukasi-batiksemat img {
    clip-path: circle(150% at 0% 100%);
}

 #edukasibatiksemat #five-edukasi-batiksemat:checked ~ .img-edukasi-batiksemat.img-5-edukasi-batiksemat img {
    clip-path: circle(150% at 0% 100%);
}

 #edukasibatiksemat .gambar-edukasi-batiksemat .sliders-edukasi-batiksemat {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

 #edukasibatiksemat .gambar-edukasi-batiksemat .sliders-edukasi-batiksemat label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

 #edukasibatiksemat #one-edukasi-batiksemat:checked ~ .sliders-edukasi-batiksemat label.one-edukasi-batiksemat,
 #edukasibatiksemat #two-edukasi-batiksemat:checked ~ .sliders-edukasi-batiksemat label.two-edukasi-batiksemat,
 #edukasibatiksemat #three-edukasi-batiksemat:checked ~ .sliders-edukasi-batiksemat label.three-edukasi-batiksemat,
 #edukasibatiksemat #four-edukasi-batiksemat:checked ~ .sliders-edukasi-batiksemat label.four-edukasi-batiksemat,
 #edukasibatiksemat #five-edukasi-batiksemat:checked ~ .sliders-edukasi-batiksemat label.five-edukasi-batiksemat {
    width: 35px;
    border-radius: 14px;
       background: linear-gradient(135deg, #05172f, #003f6c);

}

 #edukasibatiksemat .sliders-edukasi-batiksemat label:hover {
       background: linear-gradient(135deg, #05172f, #003f6c);

}

 #edukasibatiksemat .gambar-edukasi-batiksemat input[type="radio"] {
    display: none;
}


#edukasibatiksemat .langkah-edukasi-batiksemat {
    margin: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #05172f, #003f6c);
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-align: justify;
    color: #f4f4f4;
    line-height: 1.6;
    font-family: "Playfair Display", serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 

#edukasibatiksemat .langkah-edukasi-batiksemat h1 {
    border-radius: 10px;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    color: #000;
    font-size: 2.5em;
    padding: 15px;
    margin-bottom: 25px;
    font-family: "Playfair Display", serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 2px solid #d0c6e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#edukasibatiksemat .langkah-edukasi-batiksemat .langkah {
    margin: 0;
    padding: 0;
}

#edukasibatiksemat .langkah-edukasi-batiksemat h2 {
    padding: 20px;
    font-size: 1.8em;
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
}

#edukasibatiksemat .langkah-edukasi-batiksemat ul {
    list-style-type: lower-alpha;
    margin-left: 20px;
}

#edukasibatiksemat .langkah-edukasi-batiksemat li {
    margin-bottom: 10px;
    font-size: 18px;
}

#edukasibatiksemat .langkah-edukasi-batiksemat strong {
    color: #d0c6e0;
}





.buttons-alam,
.buttons-religi,
.buttons-edukasi  {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    
}

 

.close-btn-alam button,
.buttons-alam button {
    padding: 5px;
    margin: 0;
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
    font-family: "Playfair Display", serif;
    border: none;
    background-color: transparent;
    border: 1px solid #0056b3;
    width: 107px;
    height: 50px;
    color: #0056b3;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, opacity 0.2s ease;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.close-btn-religi button,
.buttons-religi button {
    padding: 5px;
    margin: 0;
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
    font-family: "Playfair Display", serif;
    border: none;
    background-color: transparent;
    border: 1px solid #0056b3;
    width: 150px;
    height: 50px;
    color: #0056b3;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, opacity 0.2s ease;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.close-btn-edukasi button,
.buttons-edukasi button {
    padding: 5px;
    margin: 0;
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
    font-family: "Playfair Display", serif;
    border: none;
    background-color: transparent;
    border: 1px solid #0056b3;
    width: 150px;
    height: 50px;
    color: #0056b3;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, opacity 0.2s ease;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button.active {
    background-color: #0056b3; 
    color: #fff;
    border: 2px solid #fff;
}
.close-btn-alam a{
    text-decoration: none;
}


.content-pantai,
.content-makam,
.content-edukasi{
   display: none; 
   
   text-align: center;
   margin: 20px;
   padding: 20px;
   border: 1px solid #ddd;
    background: #fff;
   border-radius: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   color: #000;
}



#pantaisemat .content-pantai .pantaisemat h2{
   color: #000;
   font-size: 10rem;
}


 /* kerajinan */


 
 #kerajinan .judul {
    background: linear-gradient(135deg, #05172f, #003f6c);
    max-width: 100%;
    

 }

 #kerajinan .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 5rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}



/* kerajinan-kembangturi */
#kerajinan .kerajinan-kembangturi{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
    
}



#kerajinan .deskripsi-kembangturi {
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    height: 520px;
    font-family: "Playfair Display", serif;
}

#kerajinan .deskripsi-kembangturi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kerajinan .deskripsi-kembangturi p {
    color: #000;
    line-height: 1.6;
    font-size: 1.1em;
    text-align: justify;
}

#kerajinan .gambar-kerajinan-kembangturi {
    position:   relative;
    height: 520px;
    width: 550px;
    rotate: 0deg;

}

#kerajinan .gambar-kerajinan-kembangturi .img-kerajinan-kembangturi {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kerajinan .gambar-kerajinan-kembangturi .img-kerajinan-kembangturi img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    border-radius: 10px;
    transition: all 0.7s;
}

#kerajinan #one-kerajinan-kembangturi:checked ~ .img-kerajinan-kembangturi.img-1-kerajinan-kembangturi img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #two-kerajinan-kembangturi:checked ~ .img-kerajinan-kembangturi.img-2-kerajinan-kembangturi img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #three-kerajinan-kembangturi:checked ~ .img-kerajinan-kembangturi.img-3-kerajinan-kembangturi img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #four-kerajinan-kembangturi:checked ~ .img-kerajinan-kembangturi.img-4-kerajinan-kembangturi img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #five-kerajinan-kembangturi:checked ~ .img-kerajinan-kembangturi.img-5-kerajinan-kembangturi img {
    clip-path: circle(150% at 0% 100%);
}


#kerajinan .gambar-kerajinan-kembangturi .sliders-kerajinan-kembangturi {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kerajinan .gambar-kerajinan-kembangturi .sliders-kerajinan-kembangturi label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kerajinan #one-kerajinan-kembangturi:checked ~ .sliders-kerajinan-kembangturi label.one-kerajinan-kembangturi,
#kerajinan #two-kerajinan-kembangturi:checked ~ .sliders-kerajinan-kembangturi label.two-kerajinan-kembangturi,
#kerajinan #three-kerajinan-kembangturi:checked ~ .sliders-kerajinan-kembangturi label.three-kerajinan-kembangturi,
#kerajinan #four-kerajinan-kembangturi:checked ~ .sliders-kerajinan-kembangturi label.four-kerajinan-kembangturi,
#kerajinan #five-kerajinan-kembangturi:checked ~ .sliders-kerajinan-kembangturi label.five-kerajinan-kembangturi {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kerajinan .sliders-kerajinan-kembangturi label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kerajinan .gambar-kerajinan-kembangturi input[type="radio"] {
    display: none;
}


/* kerajinan-gongsemat */

#kerajinan .kerajinan-gongsemat{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
    
}



#kerajinan .deskripsi-gongsemat {
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    height: 520px;
    font-family: "Playfair Display", serif;
}

#kerajinan .deskripsi-gongsemat h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kerajinan .deskripsi-gongsemat p {
    color: #000;
    line-height: 1.6;
    font-size: 1.1em;
    text-align: justify;
}

#kerajinan .gambar-kerajinan-gongsemat {
    position:   relative;
    height: 520px;
    width: 550px;
    rotate: 0deg;

}

#kerajinan .gambar-kerajinan-gongsemat .img-kerajinan-gongsemat {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kerajinan .gambar-kerajinan-gongsemat .img-kerajinan-gongsemat img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    border-radius: 10px;
    transition: all 0.7s;
}

#kerajinan #one-kerajinan-gongsemat:checked ~ .img-kerajinan-gongsemat.img-1-kerajinan-gongsemat img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #two-kerajinan-gongsemat:checked ~ .img-kerajinan-gongsemat.img-2-kerajinan-gongsemat img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #three-kerajinan-gongsemat:checked ~ .img-kerajinan-gongsemat.img-3-kerajinan-gongsemat img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #four-kerajinan-gongsemat:checked ~ .img-kerajinan-gongsemat.img-4-kerajinan-gongsemat img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #five-kerajinan-gongsemat:checked ~ .img-kerajinan-gongsemat.img-5-kerajinan-gongsemat img {
    clip-path: circle(150% at 0% 100%);
}


#kerajinan .gambar-kerajinan-gongsemat .sliders-kerajinan-gongsemat {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kerajinan .gambar-kerajinan-gongsemat .sliders-kerajinan-gongsemat label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kerajinan #one-kerajinan-gongsemat:checked ~ .sliders-kerajinan-gongsemat label.one-kerajinan-gongsemat,
#kerajinan #two-kerajinan-gongsemat:checked ~ .sliders-kerajinan-gongsemat label.two-kerajinan-gongsemat,
#kerajinan #three-kerajinan-gongsemat:checked ~ .sliders-kerajinan-gongsemat label.three-kerajinan-gongsemat ,
#kerajinan #four-kerajinan-gongsemat:checked ~ .sliders-kerajinan-gongsemat label.four-kerajinan-gongsemat ,
#kerajinan #five-kerajinan-gongsemat:checked ~ .sliders-kerajinan-gongsemat label.five-kerajinan-gongsemat {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kerajinan .sliders-kerajinan-gongsemat label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kerajinan .gambar-kerajinan-gongsemat input[type="radio"] {
    display: none;
}

/* kerajinan-kerang */

#kerajinan .kerajinan-kerang {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
}

#kerajinan .deskripsi-kerang {
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    height: 520px;
    font-family: "Playfair Display", serif;
}

#kerajinan .deskripsi-kerang h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kerajinan .deskripsi-kerang p {
    color: #000;
    line-height: 1.6;
    font-size: 1.1em;
    text-align: justify;
}

#kerajinan .gambar-kerajinan-kerang {
    position: relative;
    height: 520px;
    width: 550px;
    rotate: 0deg;
}

#kerajinan .gambar-kerajinan-kerang .img-kerajinan-kerang {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kerajinan .gambar-kerajinan-kerang .img-kerajinan-kerang img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    border-radius: 10px;
    transition: all 0.7s;
}

#kerajinan #one-kerajinan-kerang:checked ~ .img-kerajinan-kerang.img-1-kerajinan-kerang img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #two-kerajinan-kerang:checked ~ .img-kerajinan-kerang.img-2-kerajinan-kerang img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #three-kerajinan-kerang:checked ~ .img-kerajinan-kerang.img-3-kerajinan-kerang img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #four-kerajinan-kerang:checked ~ .img-kerajinan-kerang.img-4-kerajinan-kerang img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #five-kerajinan-kerang:checked ~ .img-kerajinan-kerang.img-5-kerajinan-kerang img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan .gambar-kerajinan-kerang .sliders-kerajinan-kerang {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kerajinan .gambar-kerajinan-kerang .sliders-kerajinan-kerang label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kerajinan #one-kerajinan-kerang:checked ~ .sliders-kerajinan-kerang label.one-kerajinan-kerang,
#kerajinan #two-kerajinan-kerang:checked ~ .sliders-kerajinan-kerang label.two-kerajinan-kerang,
#kerajinan #three-kerajinan-kerang:checked ~ .sliders-kerajinan-kerang label.three-kerajinan-kerang,
#kerajinan #four-kerajinan-kerang:checked ~ .sliders-kerajinan-kerang label.four-kerajinan-kerang,
#kerajinan #five-kerajinan-kerang:checked ~ .sliders-kerajinan-kerang label.five-kerajinan-kerang {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #003f6c, #0077b6);
}

#kerajinan .sliders-kerajinan-kerang label:hover {
    background: linear-gradient(135deg, #003f6c, #0077b6);
}

#kerajinan .gambar-kerajinan-kerang input[type="radio"] {
    display: none;
}


 /* kuliner */


 
 #kuliner .judul {
    background: linear-gradient(135deg, #05172f, #003f6c);
    max-width: 100%;
    

 }

 #kuliner .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 20px;
    font-size: 5rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}


#kuliner .kuliner-segomenir{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
    
}



#kuliner .deskripsi-segomenir {
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    height: 400px;
    font-family: "Playfair Display", serif;
}

#kuliner .deskripsi-segomenir h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kuliner .deskripsi-segomenir p {
    color: #000;
    line-height: 1.6;
    font-size: 1.2em;
    text-align: justify;
}

#kuliner .gambar-kuliner-segomenir {
    position:   relative;
    height: 400px;
    width: 550px;

    rotate: 0deg;

}

#kuliner .gambar-kuliner-segomenir .img-kuliner-segomenir {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kuliner .gambar-kuliner-segomenir .img-kuliner-segomenir img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
    border-radius: 10px;
}

#kuliner #one-kuliner-segomenir:checked ~ .img-kuliner-segomenir.img-1-kuliner-segomenir img {
    clip-path: circle(150% at 0% 100%);
}

#kuliner .gambar-kuliner-segomenir .sliders-kuliner-segomenir {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kuliner .gambar-kuliner-segomenir .sliders-kuliner-segomenir label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kuliner #one-kuliner-segomenir:checked ~ .sliders-kuliner-segomenir label.one-kuliner-segomenir {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .sliders-kuliner-segomenir label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .gambar-kuliner-segomenir input[type="radio"] {
    display: none;
}


/* kuliner-stikturi */

#kuliner .kuliner-stikturi{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
    
}



#kuliner .deskripsi-stikturi {
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    height: 400px;
    font-family: "Playfair Display", serif;
}

#kuliner .deskripsi-stikturi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kuliner .deskripsi-stikturi p {
    color: #000;
    line-height: 1.6;
    font-size: 1.2em;
    text-align: justify;
}

#kuliner .gambar-kuliner-stikturi {
    position:   relative;
    height: 400px;
    width: 550px;

    rotate: 0deg;

}

#kuliner .gambar-kuliner-stikturi .img-kuliner-stikturi {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kuliner .gambar-kuliner-stikturi .img-kuliner-stikturi img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
    border-radius: 10px;
}

#kuliner #one-kuliner-stikturi:checked ~ .img-kuliner-stikturi.img-1-kuliner-stikturi img {
    clip-path: circle(150% at 0% 100%);
}

#kuliner #two-kuliner-stikturi:checked ~ .img-kuliner-stikturi.img-2-kuliner-stikturi img {
    clip-path: circle(150% at 0% 100%);
}

#kuliner #three-kuliner-stikturi:checked ~ .img-kuliner-stikturi.img-3-kuliner-stikturi img {
    clip-path: circle(150% at 0% 100%);
}

#kuliner #four-kuliner-stikturi:checked ~ .img-kuliner-stikturi.img-4-kuliner-stikturi img {
    clip-path: circle(150% at 0% 100%);
}

#kuliner #five-kuliner-stikturi:checked ~ .img-kuliner-stikturi.img-5-kuliner-stikturi img {
    clip-path: circle(150% at 0% 100%);
}

#kuliner .gambar-kuliner-stikturi .sliders-kuliner-stikturi {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kuliner .gambar-kuliner-stikturi .sliders-kuliner-stikturi label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kuliner #one-kuliner-stikturi:checked ~ .sliders-kuliner-stikturi label.one-kuliner-stikturi,
#kuliner #two-kuliner-stikturi:checked ~ .sliders-kuliner-stikturi label.two-kuliner-stikturi,
#kuliner #three-kuliner-stikturi:checked ~ .sliders-kuliner-stikturi label.three-kuliner-stikturi,
#kuliner #four-kuliner-stikturi:checked ~ .sliders-kuliner-stikturi label.four-kuliner-stikturi,
#kuliner #five-kuliner-stikturi:checked ~ .sliders-kuliner-stikturi label.five-kuliner-stikturi {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .sliders-kuliner-stikturi label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .gambar-kuliner-stikturi input[type="radio"] {
    display: none;
}


/* kuliner-tehkembangturi */

#kuliner .kuliner-tehkembangturi{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
    
}



#kuliner .deskripsi-tehkembangturi {
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    height: 400px;
    font-family: "Playfair Display", serif;
}

#kuliner .deskripsi-tehkembangturi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kuliner .deskripsi-tehkembangturi p {
    color: #000;
    line-height: 1.6;
    font-size: 1.2em;
    text-align: justify;
}

#kuliner .gambar-kuliner-tehkembangturi {
    position:   relative;
    height: 400px;
    width: 550px;

    rotate: 0deg;

}

#kuliner .gambar-kuliner-tehkembangturi .img-kuliner-tehkembangturi {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kuliner .gambar-kuliner-tehkembangturi .img-kuliner-tehkembangturi img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
    border-radius: 10px;
}

#kuliner #one-kuliner-tehkembangturi:checked ~ .img-kuliner-tehkembangturi.img-1-kuliner-tehkembangturi img {
    clip-path: circle(150% at 0% 100%);
}
 

#kuliner .gambar-kuliner-tehkembangturi .sliders-kuliner-tehkembangturi {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kuliner .gambar-kuliner-tehkembangturi .sliders-kuliner-tehkembangturi label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kuliner #one-kuliner-tehkembangturi:checked ~ .sliders-kuliner-tehkembangturi label.one-kuliner-tehkembangturi{
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .sliders-kuliner-tehkembangturi label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .gambar-kuliner-tehkembangturi input[type="radio"] {
    display: none;
}


/* kuliner-cookies */

#kuliner .kuliner-cookies{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
    
}



#kuliner .deskripsi-cookies {
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    height: 400px;
    font-family: "Playfair Display", serif;
}

#kuliner .deskripsi-cookies h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.2em;
    padding: 5px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kuliner .deskripsi-cookies p {
    color: #000;
    line-height: 1.6;
    font-size: 1.2em;
    text-align: justify;
}

#kuliner .gambar-kuliner-cookies {
    position:   relative;
    height: 400px;
    width: 550px;
    rotate: 0deg;

}

#kuliner .gambar-kuliner-cookies .img-kuliner-cookies {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kuliner .gambar-kuliner-cookies .img-kuliner-cookies img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
    border-radius: 10px;
}

#kuliner #one-kuliner-cookies:checked ~ .img-kuliner-cookies.img-1-kuliner-cookies img {
    clip-path: circle(150% at 0% 100%);
}
 

#kuliner .gambar-kuliner-cookies .sliders-kuliner-cookies {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kuliner .gambar-kuliner-cookies .sliders-kuliner-cookies label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kuliner #one-kuliner-cookies:checked ~ .sliders-kuliner-cookies label.one-kuliner-cookies{
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .sliders-kuliner-cookies label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .gambar-kuliner-cookies input[type="radio"] {
    display: none;
}


 /* Gallery */


 
#gallery{
  
    margin: 10px auto;
    font-family: "Playfair Display", serif;
 

}

#gallery .judul {
    text-align: center;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #05172f, #003f6c);
   max-width: 100%;
}

#gallery .judul-gallery h1 {
    margin: 0;
    padding: 0;
   
    font-size: 5rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

#gallery .judul-gallery h2 {
    font-family: 'Cinzel Decorative', serif;
    text-align: center;
    font-size: 2em; 
    color: #555;
   margin: 5px;
}


#gallery .judul-gallery p {
    text-align: center;
    font-size: 1.3em; 
    color: #666;
    line-height: 1.5; 
    margin: 0;
}


#gallery nav {
    display: flex;
    justify-content: center;
    margin: 20px 0; 
    
}

nav .items {
    display: flex;
    flex-wrap: wrap;
    max-width: 800px; 
    width: 100%;
    justify-content: center; 
    gap: 10px;
}

nav .items .item {
    padding: 8px 20px;
    font-size: 16px; 
    font-weight: 500;
    color: #0056b3;
    border: 2px solid #0056b3;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center; 
}



nav .items .active,
nav .items .item:hover{
    color: #fff;
    background: #0056b3;
    border: 1px solid #fff;
    
}

.gallery{
    display: flex;
    flex-wrap: wrap;
    margin: 30px auto;
    max-width: 1100px;
}

.gallery .image{
    padding: 7px;
    width: calc(100% / 4);

}


.gallery .image.hide{
    display: none;
}

.gallery .image.show{
   animation: animate 0.4s ease;
}

@keyframes animate{
    0%{
        transform: scale(0.5);
    }
    100%{
        transform: scale(1);
    }
}

.gallery .image span{
    display: flex;
    width: 100%;
    overflow: hidden;
}
.gallery .image img{
    width: 100%;
    height: 220px;
}


.gallery .image:hover img{
    transform: scale(1.1);
}

.preview-box{
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    max-width: 700px;
    width: 100%;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    border-radius: 5px;
    padding: 0 5px 5px 5px;
    box-shadow:  0px 0px 15px rgba(0, 0, 0, 0.2);
}

.preview-box.show{
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.preview-box .details{
    display: flex;
    align-items: center;
    padding: 13px 15px 13px 10px;
    justify-content: space-between;
}

.preview-box .details .title{
    display: flex;
    font-size: 18px;
    font-weight: 400;
}

.details .title p{
    margin-left: 5px;
    font-weight: 500;
}

.details .icon{
    color: #0056b3;
    font-size: 22px;
    cursor: pointer;
}

.preview-box .image-box{
    display: flex;
    width: 100%;
}

.image-box img{
    width: 100%;
    height: 500px;
    border-radius: 0 0 3px 3px;
}

.shadow{
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
   display: none;
    background: rgba(0, 0, 0, 0.4);

}



/* PENGURUS */

#pengurus {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 20px;
}

.judulbesar-pengurus h1 {
    max-width: 100%;
    font-size: 4.2em;
    text-align: center;
    font-family: "Playfair Display", serif;
    color: #fff;
    background: linear-gradient(135deg, #05172f, #003f6c);
    margin: 0;
    padding: 20px 0;
    margin-bottom: 25px;
}

.pengurus {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 80%;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: #f8f8f8;
    padding: 10px;
    margin: 10px auto; /* Center the pengurus section */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, border-color 0.3s;
}

.kiri, .kanan {
    flex: 1;
    padding: 20px;
}

.kiri {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.kiri h1 {
    font-size: 2.2em;
    line-height: 1.4;
    text-align: center;
    font-family: "Playfair Display", serif;
    margin: 0;
    padding: 10px 0;
    color: #333;
}

.kiri .highlight-2 {
    font-size: 1.1em;
    color: #00bcd4;
    font-family: "Playfair Display", serif;
    font-weight: bold;
    text-align: center; /* Centered text */
}

.kiri p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
    margin-top: 10px;
}

.highlight-3 {
    font-size: 18px;
    color: black;
    line-height: 1.8;
    text-align: center; /* Centered text */
    text-decoration: underline;
}

.kiri .tombol-pengurus {
    background: #18b7ff;
    color: white;
    text-align: center;
    height: 40px;
    line-height: 40px;
    text-decoration: none;
    display: inline-block;
    padding: 0 20px;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.kiri .tombol-pengurus:hover {
    background: #05172f;
    color: white;
}

.kanan {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    padding: 20px;
    border-radius: 8px;
    margin: 0;
    height: 400px;
}

.kolase {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 40px;
}

.kolase img {
    width: calc(45% - 10px);
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.kolase img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* ANGGOTA PENGURUS */
.judul-pokdarwis h1{
    font-family: "Playfair Display", serif;
    font-size: 35px;

}
.judul-pengelola h1{
    font-family: "Playfair Display", serif;
    font-size: 35px;

}
.anggota h2{
    margin: 0 auto;
    padding: 0;
    font-size: 1.5em;
    color: #000;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.anggota h3{
    margin: 0 auto;
    padding: 0;
    font-family: "Playfair Display", serif;
    margin-top: 5px;
    font-size: 1em;
    color: #333;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.pokdarwis,
.pengelola {
    margin: 20px auto;  
    padding: 20px;  
    display: flex;
    align-items: center;  
    text-align: center;  
    gap: 10px;
    background-color: #05172f;
}


.judul-pokdarwis {
    margin: 0;
    padding: 0;
    background-color: #003f6c;
    text-align: center;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    border-radius: 8px;  
    padding: 10px;  
    flex: 0 0 250px; 
    height: 150px;
    
}


.judul-pengelola {
    margin: 0;
    padding: 0;
    flex: 0 0 250px; 
    background-color: #003f6c;
    text-align: center;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    border-radius: 8px; 
    padding: 10px; 
    height: 150px;
    rotate: 180deg;
}


.anggota-pokdarwis,.anggota-pengelola{
    display: flex;
    gap: 5px;
    overflow: auto;
}

.anggota-pengelola{
    display: flex;
    gap: 5px;
    rotate: 180deg;
    overflow: auto;
}

.pengelola{
    rotate: 180deg;
}


.anggota {
    margin: 6px;
    margin-bottom: 10px; 
    padding: 10px;  
    background-color: #fff;  
    border-radius: 8px;  
    flex: 0 0 250px; 
    height: 120px;  
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);  
    display: flex;  
    flex-direction: column;  
    align-items: center;  
    justify-content: center;  
    transition: transform 0.3s;  
}

.anggota:hover {
    transform: scale(1.05);  
}



/* kontak */


#contact{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Playfair Display", serif;


}


#contact{
    background: linear-gradient(135deg, #05172f, #003f6c);


}


.contactUs{
    position: relative;
    width: 100%;
    padding: 40px 100px;
}

.contactUs .title{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    
}


.contactUs .title h2{
    margin: 0;
    font-size: 3.5em;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2s ease-out;
}



.form{
    grid-area: form;
}

.info{
    grid-area: info;
}

.map{
    grid-area: map;
}


.contact{
    padding: 40px;
    background: #fff;
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.15);
}

.box{
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 4fr;
    grid-template-areas: 
    "form info"
    "form map";
    grid-gap: 20px;
    margin-top: 20px;
}


.contact h3{
    color: #0e3959;
    font-weight: 500;
    font-size: 1.4em;
    margin-bottom: 10px;
}


.formBox{
    position: relative;
    width: 100%;
}

.formBox .row50{
    display: flex;
    gap: 20px
}

.inputBox{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
    
}


.formBox .row100 .inputBox{
    width: 100%;
}

.inputBox span{
    color: #18b7ff;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 500;
}


.inputBox input{
    padding: 10px;
    font-size: 1.1em;
    font-family: 'Poppins', sans-serif;
    outline: none;
    border: 1px solid #333;
}


.inputBox textarea{
    padding: 10px;
    font-size: 1.1em;
    font-family: 'Poppins', sans-serif;
    outline: none;
    border: 1px solid #333;
    resize: none;
    min-height: 220px;
    margin-bottom: 10px;
}


.inputBox input[type="submit"]{
    background: #18b7ff;
    color: #fff;
    border: none;
    font-size: 1.1em;
    max-width: 120px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px 15px;
}


.inputBox::placeholder{
    color: #333;
    
}

.info{
    background: #05172f;
    
}

.info h3{
    color: #fff;
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    border-bottom: 1px solid #18b7ff;
}

.info .infoBox div{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}


.info .infoBox div span{
    min-height: 40px;
    height: 40px;
    color: #fff;
    background: #18b7ff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    border-radius: 50%;
    padding: 8px;
    margin-right: 15px;
}

.info .infoBox div p{
    color: #fff;
    font-size: 1.1em;
}


.info .infoBox div a{
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    

}


.sci{
    display: flex;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
}

.sci li{
    list-style: none;
    margin-right: 15px;
}

.sci li a{
    color: #fff;
    font-size: 2em;
    color: #acc;
}

.sci li a:hover{
    color: #fff;
}

.map{
    padding: 0;
}

.map iframe{
    width: 100%;
    height: 100%;
}








    
 @media(max-width:1200px){
    .header{
        padding: 12px 0;
    }

    .header .menu{
        position: fixed;
        right: 0;
        top: 0;
        width: 500px;
        height: 100%;
        background: #003366;
        padding: 15px 30px 30px;
        overflow-y: auto;
        z-index: 1;
        transform: translateX(100%);
    }


    .header .menu.open{
        transform: none;
    }

    .header .menu .head{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }

    .header .menu .head .logo h1 a{
       font-size: 25px;
    }

    
    .header .menu .close-menu-btn {
        position: relative;
        width: 30px; 
        height: 30px; 
        background: transparent;  
        border: none; 
        cursor: pointer; 
    }
    
    .header .menu .close-menu-btn::before,
    .header .menu .close-menu-btn::after {
        content: '';
        position: absolute;
        width: 100%; 
        height: 2px;  
        background-color: hsl(0, 0%, 100%); 
        top: 50%;    
        left: 50%;  
        transform-origin: center; 
    }
    
    .header .menu .close-menu-btn::before {
        transform: translate(-50%, -50%) rotate(-45deg);  
    }
    
    .header .menu .close-menu-btn::after {
        transform: translate(-50%, -50%) rotate(45deg); 
    }

    .header .menu > ul > li{
        display: block;
    }

    .header .menu > ul > li:not(:last-child){
        margin-right: 0;
    }

    .header .menu li{
        border-bottom: 1px solid hsla(0, 0%, 100%, 0.25);
    }
    


    
    .header .menu li:first-child{
        border-top: 1px solid hsla(0, 0%, 100%, 0.25);
    }

    .header .menu > ul > li > a{
        padding: 12px 0;
        font-size: 1.5em;
    }

    .header .menu > ul > .dropdown > a{
        padding-right: 34px;
        
    }

    .header .menu i{
        height: 34px;
        width: 34px;
        border: 1px solid hsla(0, 0%, 100%, 0.25);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
        cursor: pointer;
        top: 7px;
    }

    

    .header .menu .dropdown.active > i{
        background-color: hsla(0, 0%, 100%, 0.25);
        transform: rotate(180deg);
        
    }

    

    .header .menu .sub-menu{
        position: static;
        opacity: 1;
        transform: none;
        visibility: visible;
        padding: 0;
        transition: none;
        box-shadow: none;
        width: 100%;
        display: none;
    }

    

    .header .menu .dropdown.active > .sub-menu{
        display: block;
    }

    
    .header .menu .sub-menu li:last-child{
        border: none;
    }

    .header .menu .sub-menu a{
        padding: 12px 0 12px 15px;
        font-size: 1.5em;

    }

    .header .menu .sub-menu .sub-menu a{
        padding-left: 30px;
    }

    .header .menu .sub-menu .sub-menu .sub-menu a{
        padding-left: 45px;
    }

    .header .menu .sub-menu span{
        background-color: none;
    }

    .header .menu .sub-menu i{
        transform: none;
        right: 0;
    }

    .header-right .open-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 44px;
        cursor: pointer;
        position: relative;
        background-color: transparent;
        border: none;
    }
    
    .header-right .open-menu-btn .line {
        height: 2px;
        width: 30px;
        background-color: hsl(0, 0%, 100%);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .header-right .open-menu-btn .line-1 {
        top: 8px; 
    }
    
    .header-right .open-menu-btn .line-2 {
        top: 50%; 
        transform: translateY(-50%) translateX(-50%);
    }
    
    .header-right .open-menu-btn .line-3 {
        bottom: 8px; 
    }
    

       /* Beranda */
        
       #beranda .judul {
        text-align: center;
        width: 400px;

    }
    
    #beranda .judul h1 {
        margin: 0 auto;
        padding: 0;
        font-size: 20px;
        border-bottom: 1px solid aqua;
    }
    
    #beranda .judul p {
        font-size: 10px;
        text-decoration: none;
    }

    .btn-tombol {
        margin: 0;
        padding: 0;
        padding: 5px;
        margin-top: 10px;
        font-size:1em;
    }


/* tentang */

#tentang {
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

#tentang .judul {
    margin: 0;
    padding: 0;
    background: #fff;
    max-width: 100%;
    text-align: center;
}

#tentang .judul h2 {
    margin: 0 auto;
    padding: 0;
    font-size: 4rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #000;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2s ease-out;
}

#tentang .judul .map {
    margin: 0 auto;
    padding: 0;
    text-align: center;
    max-width: 800px;
    align-items: center;
    border-radius: 10px;
}

#tentang .judul .map p {
    margin: 0 auto;
    padding: 0;
    font-size: 0.8em;
    line-height: 1.6;
}

#tentang .judul .map a {
    color: #333;
    font-family: "Playwrite AR", cursive;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

#tentang .judul .map a:hover {
    text-decoration: underline;
}

#tentang .tentang {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

#tentang .img-tentang {
    padding: 0;
    margin: 0;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

#tentang .img-tentang img {
    padding: 0;
    margin: 0;
    margin: 8px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
}


#tentang .deskripsi {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    animation: slideUp 1s ease-out;
    box-sizing: border-box;
    padding: 10px;
    margin: 10px;
}


@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

#tentang .img-tentang h1 {
    font-family: "Playfair Display", serif;
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 10px;
    margin: 10px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#tentang .deskripsi p {
    color: #fff;
    font-family: "Playfair Display", serif;
    line-height: 1.6;
    font-size: 1.7em;
    text-align: justify;
    padding: 10px;
    margin: 10px;
}





/* Wisata */

#wisata{
    background: linear-gradient(135deg, #05172f, #003f6c); 
    padding-bottom: 20px;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-family: "Playfair Display", serif;
   
}


#wisata .judul h2 {
    margin: 0;
    padding: 0;
    font-size: 4rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0 20px 70px;
 }


/* wisata alam */
#wisata-alam {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    background: #fff;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 15px;
    text-align: center;
    rotate: 180deg;
  
    
 
}



#wisata-alam  .deskripsi {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    text-align: center;
    height: auto;
    rotate: 180deg;
    font-family: "Playfair Display", serif;
      
}

#wisata-alam .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#wisata-alam .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1.7em;

    font-family: "Playfair Display", serif;
    text-align: justify;
}

#wisata-alam .gambar-wisata-alam {
    position: relative;
    width: 100%;
    rotate: 180deg;
}

#wisata-alam .gambar-wisata-alam .img-wisata-alam {
    position: absolute;
    height: 100%;
    width: 100%;
}

#wisata-alam .gambar-wisata-alam .img-wisata-alam img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#wisata-alam #one-wisata-alam:checked ~ .img-wisata-alam.img-1-wisata-alam img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-alam #two-wisata-alam:checked ~ .img-wisata-alam.img-2-wisata-alam img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-alam #three-wisata-alam:checked ~ .img-wisata-alam.img-3-wisata-alam img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-alam #four-wisata-alam:checked ~ .img-wisata-alam.img-4-wisata-alam img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-alam #five-wisata-alam:checked ~ .img-wisata-alam.img-5-wisata-alam img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-alam .gambar-wisata-alam .sliders-wisata-alam {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#wisata-alam .gambar-wisata-alam .sliders-wisata-alam label {
    height: 15px;
    width: 15px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}


#wisata-alam #one-wisata-alam:checked ~ .sliders-wisata-alam label.one-wisata-alam,
#wisata-alam #two-wisata-alam:checked ~ .sliders-wisata-alam label.two-wisata-alam,
#wisata-alam #three-wisata-alam:checked ~ .sliders-wisata-alam label.three-wisata-alam,
#wisata-alam #four-wisata-alam:checked ~ .sliders-wisata-alam label.four-wisata-alam,
#wisata-alam #five-wisata-alam:checked ~ .sliders-wisata-alam label.five-wisata-alam {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-alam .sliders-wisata-alam label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-alam .gambar-wisata-alam input[type="radio"] {
    display: none;
}








/* wisata-religi */
#wisata-religi {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    background: #fff;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 15px;
    text-align: center;

    
 
}



#wisata-religi .deskripsi {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    
    text-align: center;
    height: auto;
    font-family: "Playfair Display", serif;
}

#wisata-religi .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#wisata-religi .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1.7em;

    font-family: "Playfair Display", serif;
    text-align: justify;
}

#wisata-religi .gambar-wisata-religi {
    position: relative;
    width: 100%;
    rotate: 0deg;
}

#wisata-religi .gambar-wisata-religi .img-wisata-religi {
    position: absolute;
    height: 100%;
    width: 100%;
}

#wisata-religi .gambar-wisata-religi .img-wisata-religi img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#wisata-religi #one-wisata-religi:checked ~ .img-wisata-religi.img-1-wisata-religi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-religi #two-wisata-religi:checked ~ .img-wisata-religi.img-2-wisata-religi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-religi #three-wisata-religi:checked ~ .img-wisata-religi.img-3-wisata-religi img {
    clip-path: circle(150% at 0% 100%);
}


#wisata-religi .gambar-wisata-religi .sliders-wisata-religi {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#wisata-religi .gambar-wisata-religi .sliders-wisata-religi label {
    height: 15px;
    width: 15px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#wisata-religi #one-wisata-religi:checked ~ .sliders-wisata-religi label.one-wisata-religi,
#wisata-religi #two-wisata-religi:checked ~ .sliders-wisata-religi label.two-wisata-religi,
#wisata-religi #three-wisata-religi:checked ~ .sliders-wisata-religi label.three-wisata-religi {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-religi .sliders-wisata-religi label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-religi .gambar-wisata-religi input[type="radio"] {
    display: none;
}



/* wisata edukasi */
#wisata-edukasi {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    background: #fff;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 15px;
    text-align: center;
    rotate: 180deg;
  
    
 
}



#wisata-edukasi  .deskripsi {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    text-align: center;
    height: auto;
    rotate: 180deg;
    font-family: "Playfair Display", serif;
      
}

#wisata-edukasi .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 5px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#wisata-edukasi .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1.7em;

    font-family: "Playfair Display", serif;
    text-align: justify;
}

#wisata-edukasi .gambar-wisata-edukasi {
    position: relative;
    width: 100%;
    rotate: 180deg;
}

#wisata-edukasi .gambar-wisata-edukasi .img-wisata-edukasi {
    position: absolute;
    height: 100%;
    width: 100%;
}

#wisata-edukasi .gambar-wisata-edukasi .img-wisata-edukasi img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#wisata-edukasi #one-wisata-edukasi:checked ~ .img-wisata-edukasi.img-1-wisata-edukasi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-edukasi #two-wisata-edukasi:checked ~ .img-wisata-edukasi.img-2-wisata-edukasi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-edukasi #three-wisata-edukasi:checked ~ .img-wisata-edukasi.img-3-wisata-edukasi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-edukasi #four-wisata-edukasi:checked ~ .img-wisata-edukasi.img-4-wisata-edukasi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-edukasi #five-wisata-edukasi:checked ~ .img-wisata-edukasi.img-5-wisata-edukasi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-edukasi .gambar-wisata-edukasi .sliders-wisata-edukasi {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#wisata-edukasi .gambar-wisata-edukasi .sliders-wisata-edukasi label {
    height: 15px;
    width: 15px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}


#wisata-edukasi #one-wisata-edukasi:checked ~ .sliders-wisata-edukasi label.one-wisata-edukasi,
#wisata-edukasi #two-wisata-edukasi:checked ~ .sliders-wisata-edukasi label.two-wisata-edukasi,
#wisata-edukasi #three-wisata-edukasi:checked ~ .sliders-wisata-edukasi label.three-wisata-edukasi,
#wisata-edukasi #four-wisata-edukasi:checked ~ .sliders-wisata-edukasi label.four-wisata-edukasi,
#wisata-edukasi #five-wisata-edukasi:checked ~ .sliders-wisata-edukasi label.five-wisata-edukasi {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-edukasi .sliders-wisata-edukasi label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-edukasi .gambar-wisata-edukasi input[type="radio"] {
    display: none;
}





 /* pantai-semat */
/*  #pantai-mbahsirah */
/* pantai-kalibuntung  */




#pantai-semat .judul,
#pantai-mbahsirah .judul,
#pantai-kalibuntung .judul{

   background: linear-gradient(135deg, #05172f, #003f6c);
   max-width: 100%;

}

#pantai-semat .judul h2,
#pantai-mbahsirah .judul h2,
#pantai-kalibuntung .judul h2{
   margin: 0;
   padding: 0;
   margin-top: 30px;
   font-size: 3rem;
   font-family: "Playfair Display", serif;
   font-weight: 700;
   text-align: center;
   color: #fff;
   text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
   padding: 20px 0;
}


#pantai-semat .pantai-semat,
#pantai-mbahsirah .pantai-mbahsirah,
#pantai-kalibuntung .pantai-kalibuntung{
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 20px;
   align-items: center;
   justify-content: center;
   background: #fff;
}



#pantai-semat .deskripsi,
#pantai-mbahsirah .deskripsi,
#pantai-kalibuntung .deskripsi {
   margin: 0;
   padding: 0;
   background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
   border-radius: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   padding: 20px;
   max-width: 100%;
   text-align: center;
   height: auto;
   font-family: "Playfair Display", serif;
}

#pantai-semat .deskripsi h1,
#pantai-mbahsirah .deskripsi h1,
#pantai-kalibuntung .deskripsi h1{
   background: linear-gradient(135deg, #05172f, #003f6c);
   border-radius: 10px;
   color: #fff;
   font-size: 2.5em;
   padding: 5px;
   margin-bottom: 20px;
   font-family: 'Georgia', serif;
   text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#pantai-semat .deskripsi p,
#pantai-mbahsirah .deskripsi p,
#pantai-kalibuntung .deskripsi p {
   color: #000;
   line-height: 1.6;
   font-size: 1.7em;

   font-family: "Playfair Display", serif;
   text-align: justify;
}

#pantai-semat .gambar-pantai-semat,
#pantai-mbahsirah .gambar-pantai-mbahsirah,
#pantai-kalibuntung .gambar-pantai-kalibuntung{
   position: relative;
   width: 100%;
   rotate: 0deg;

}

#pantai-semat .gambar-pantai-semat .img-pantai-semat,
#pantai-mbahsirah .gambar-pantai-mbahsirah .img-pantai-mbahsirah,
#pantai-kalibuntung .gambar-pantai-kalibuntung .img-pantai-kalibuntung{
   position: absolute;
   height: 100%;
   width: 100%;
}

#pantai-semat .gambar-pantai-semat .img-pantai-semat img,
#pantai-mbahsirah .gambar-pantai-mbahsirah .img-pantai-mbahsirah img,
#pantai-kalibuntung .gambar-pantai-kalibuntung .img-pantai-kalibuntung img{
   height: 100%;
   width: 100%;
   object-fit: cover;
   clip-path: circle(0% at 0% 100%);
   transition: all 0.7s;
}

#pantai-semat #one-pantai-semat:checked ~ .img-pantai-semat.img-1-pantai-semat img,
#pantai-mbahsirah #one-pantai-mbahsirah:checked ~ .img-pantai-mbahsirah.img-1-pantai-mbahsirah img,
#pantai-kalibuntung #one-pantai-kalibuntung:checked ~ .img-pantai-kalibuntung.img-1-pantai-kalibuntung img{
   clip-path: circle(150% at 0% 100%);
}

#pantai-semat #two-pantai-semat:checked ~ .img-pantai-semat.img-2-pantai-semat img,
#pantai-mbahsirah #two-pantai-mbahsirah:checked ~ .img-pantai-mbahsirah.img-1-pantai-mbahsirah img,
#pantai-kalibuntung #two-pantai-kalibuntung:checked ~ .img-pantai-kalibuntung.img-1-pantai-kalibuntung img{
   clip-path: circle(150% at 0% 100%);
}

#pantai-semat #three-pantai-semat:checked ~ .img-pantai-semat.img-3-pantai-semat img,
#pantai-mbahsirah #three-pantai-mbahsirah:checked ~ .img-pantai-mbahsirah.img-1-pantai-mbahsirah img,
#pantai-kalibuntung #three-pantai-kalibuntung:checked ~ .img-pantai-kalibuntung.img-1-pantai-kalibuntung img {
   clip-path: circle(150% at 0% 100%);
}

#pantai-semat #four-pantai-semat:checked ~ .img-pantai-semat.img-4-pantai-semat img,
#pantai-mbahsirah #four-pantai-mbahsirah:checked ~ .img-pantai-mbahsirah.img-1-pantai-mbahsirah img,
#pantai-kalibuntung #four-pantai-kalibuntung:checked ~ .img-pantai-kalibuntung.img-1-pantai-kalibuntung img{
   clip-path: circle(150% at 0% 100%);
}

#pantai-semat #five-pantai-semat:checked ~ .img-pantai-semat.img-5-pantai-semat img,
#pantai-mbahsirah #five-pantai-mbahsirah:checked ~ .img-pantai-mbahsirah.img-1-pantai-mbahsirah img,
#pantai-kalibuntung #five-pantai-kalibuntung:checked ~ .img-pantai-kalibuntung.img-1-pantai-kalibuntung img  {
   clip-path: circle(150% at 0% 100%);
}

#pantai-semat .gambar-pantai-semat .sliders-pantai-semat,
#pantai-mbahsirah .gambar-pantai-mbahsirah .sliders-pantai-mbahsirah,
#pantai-kalibuntung .gambar-pantai-kalibuntung .sliders-pantai-kalibuntung {
   position: absolute;
   bottom: 20px;
   left: 50%;
   transform: translate(-50%);
   z-index: 999;
   display: flex;
}

#pantai-semat .gambar-pantai-semat .sliders-pantai-semat label,
#pantai-mbahsirah .gambar-pantai-mbahsirah .sliders-pantai-mbahsirah label,
#pantai-kalibuntung .gambar-pantai-kalibuntung .sliders-pantai-kalibuntung label{
   height: 15px;
   width: 15px;
   border: 2px solid #fff;
   margin: 0 3px;
   cursor: pointer;
   border-radius: 50%;
   transition: all 0.3s ease;
}

#pantai-semat #one-pantai-semat:checked ~ .sliders-pantai-semat label.one-pantai-semat,
#pantai-semat #two-pantai-semat:checked ~ .sliders-pantai-semat label.two-pantai-semat,
#pantai-semat #three-pantai-semat:checked ~ .sliders-pantai-semat label.three-pantai-semat,
#pantai-semat #four-pantai-semat:checked ~ .sliders-pantai-semat label.four-pantai-semat,
#pantai-semat #five-pantai-semat:checked ~ .sliders-pantai-semat label.five-pantai-semat {
   width: 35px;
   border-radius: 14px;
   background: linear-gradient(135deg, #05172f, #003f6c);

}


#pantai-mbahsirah #one-pantai-mbahsirah:checked ~ .sliders-pantai-mbahsirah label.one-pantai-mbahsirah,
#pantai-mbahsirah #two-pantai-mbahsirah:checked ~ .sliders-pantai-mbahsirah label.two-pantai-mbahsirah,
#pantai-mbahsirah #three-pantai-mbahsirah:checked ~ .sliders-pantai-mbahsirah label.three-pantai-mbahsirah,
#pantai-mbahsirah #four-pantai-mbahsirah:checked ~ .sliders-pantai-mbahsirah label.four-pantai-mbahsirah,
#pantai-mbahsirah #five-pantai-mbahsirah:checked ~ .sliders-pantai-mbahsirah label.five-pantai-mbahsirah {
   width: 35px;
   border-radius: 14px;
   background: linear-gradient(135deg, #05172f, #003f6c);

}


#pantai-kalibuntung #one-pantai-kalibuntung:checked ~ .sliders-pantai-kalibuntung label.one-pantai-kalibuntung,
#pantai-kalibuntung #two-pantai-kalibuntung:checked ~ .sliders-pantai-kalibuntung label.two-pantai-kalibuntung,
#pantai-kalibuntung #three-pantai-kalibuntung:checked ~ .sliders-pantai-kalibuntung label.three-pantai-kalibuntung,
#pantai-kalibuntung #four-pantai-kalibuntung:checked ~ .sliders-pantai-kalibuntung label.four-pantai-kalibuntung,
#pantai-kalibuntung #five-pantai-kalibuntung:checked ~ .sliders-pantai-kalibuntung label.five-pantai-kalibuntung {
   width: 35px;
   border-radius: 14px;
   background: linear-gradient(135deg, #05172f, #003f6c);

}


#pantai-semat .sliders-pantai-semat label:hover,
#pantai-mbahsirah .sliders-pantai-mbahsirah label:hover,
#pantai-kalibuntung .sliders-pantai-kalibuntung label:hover {
   background: linear-gradient(135deg, #05172f, #003f6c);

}

#pantai-semat .gambar-pantai-semat input[type="radio"],
#pantai-mbahsirah .gambar-pantai-mbahsirah input[type="radio"],
#pantai-kalibuntung .gambar-pantai-kalibuntung input[type="radio"] {
   display: none;
}


  
/* AKTIVITAS */

#aktivitas-pantaisemat .judul-aktivitas-pantaisemat,
#aktivitas-pantaimbahsirah .judul-aktivitas-pantaimbahsirah,
#aktivitas-pantaikalibuntung .judul-aktivitas-pantaikalibuntung{
   margin: 0 auto;
   padding: 0;
   align-items: center;
   justify-content: center;
   max-width: 100%;
  
}

#aktivitas-pantaisemat .judul-aktivitas-pantaisemat h1,
#aktivitas-pantaimbahsirah .judul-aktivitas-pantaimbahsirah h1,
#aktivitas-pantaikalibuntung .judul-aktivitas-pantaikalibuntung h1{
   margin: 0 auto;
   padding: 0;
   background: linear-gradient(135deg, #05172f, #003f6c);
   align-items: center;
   justify-content: center;
   font-size: 2.5em;
   text-align: center;
   position: relative;
   font-family: "Playfair Display", serif;
   padding: 10px;
   margin-top: 30px;
   color: #fff ;
   max-width: 1150px;
   border-radius: 20px;

}

#aktivitas-pantaisemat .judul-aktivitas-pantaisemat h2,
#aktivitas-pantaimbahsirah .judul-aktivitas-pantaimbahsirah h2,
#aktivitas-pantaikalibuntung .judul-aktivitas-pantaikalibuntung h2{
   font-family: 'Cinzel Decorative', serif;
   text-align: center;
   font-size: 1.8em; 
   color: #555;
   margin-top: 10px;
}

#aktivitas-pantaisemat .highlight,
#aktivitas-pantaimbahsirah .highlight,
#aktivitas-pantaikalibuntung .highlight {
   color: #00bcd4;
}


#aktivitas-pantaisemat  .judul-aktivitas-pantaisemat p,
#aktivitas-pantaimbahsirah  .judul-aktivitas-pantaimbahsirah p,
#aktivitas-pantaikalibuntung  .judul-aktivitas-pantaikalibuntung p{
   margin: 0 auto;
   padding: 0;
   max-width: 90%;
   font-family: "Playfair Display", serif;
   text-align: center;
   justify-content: center;
   align-items: center;
   font-size: 1.3em; 
   color: #666;
   line-height: 1.5; 
   
}

#aktivitas-pantaisemat .icons-aktivitas-pantaisemat,
#aktivitas-pantaimbahsirah .icons-aktivitas-pantaimbahsirah,
#aktivitas-pantaikalibuntung .icons-aktivitas-pantaikalibuntung{
   margin: 0 auto;
   padding: 0;
   align-items: center;
   max-width: 100%;
   display: flex;  
   flex-wrap: nowrap; 
   gap: 20px; 
   padding: 5px;
   white-space: nowrap;  
   box-sizing: border-box;  
   margin-top: 10px;

}


#aktivitas-pantaisemat .icon,
#aktivitas-pantaimbahsirah .icon,
#aktivitas-pantaikalibuntung .icon{
   text-align: center;  
   height: 120px; 
   width: 85px;
   border: 2px solid #ddd;  
   border-radius: 10px;  
   background: #f8f8f8;  
   padding: 10px;  
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
   transition: background 0.3s, border-color 0.3s;  
   flex: 0 0 auto;  
   margin-bottom: 10px;
}


#aktivitas-pantaisemat .icon:hover,
#aktivitas-pantaimbahsirah .icon:hover,
#aktivitas-pantaikalibuntung .icon:hover{
   transform: translateY(-5px);  
   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  
}


#aktivitas-pantaisemat .icon img,
#aktivitas-pantaimbahsirah .icon img,
#aktivitas-pantaikalibuntung .icon img{
   width: 50px;  
   height: 50px;  
   object-fit: cover;  
   cursor: pointer;  
   transition: transform 0.3s;  
}
 

#aktivitas-pantaisemat .icon h1,
#aktivitas-pantaimbahsirah .icon h1,
#aktivitas-pantaikalibuntung .icon h1{
   font-size: 15px;  
   margin: 0; 
}



#aktivitas-pantaisemat .icon.active-pantaisemat ,
#aktivitas-pantaimbahsirah .icon.active-pantaimbahsirah ,
#aktivitas-pantaikalibuntung .icon.active-pantaikalibuntung{
   background: #003f6c;
   color: white;
}


#aktivitas-pantaisemat .deskripsi-aktivitas-pantaisemat,
#aktivitas-pantaimbahsirah .deskripsi-aktivitas-pantaimbahsirah,
#aktivitas-pantaikalibuntung .deskripsi-aktivitas-pantaikalibuntung{
   margin: 0 auto;
   padding: 0;
   align-items: center;
   justify-content: center;
   display: flex;
   flex-direction: column;
   max-width: 100%;
   border-radius: 10px;
   margin: auto;
   justify-content: center;
   gap: 0; 
}



#aktivitas-pantaisemat .deskripsi-aktivitas-pantaisemat .gambar img,
#aktivitas-pantaimbahsirah .deskripsi-aktivitas-pantaimbahsirah .gambar img,
#aktivitas-pantaikalibuntung .deskripsi-aktivitas-pantaikalibuntung .gambar img{
   margin: 0 auto;
   padding: 0;
   max-width: 100%;
   height: 220px;
}


#aktivitas-pantaisemat .deskripsi-aktivitas-pantaisemat .deskripsi,
#aktivitas-pantaimbahsirah .deskripsi-aktivitas-pantaimbahsirah .deskripsi,
#aktivitas-pantaikalibuntung .deskripsi-aktivitas-pantaikalibuntung .deskripsi{
   text-align: justify;
   height: auto;
   margin-top: 10px;
   background: linear-gradient(135deg, #05172f, #003f6c);
   


}


#aktivitas-pantaisemat .deskripsi-aktivitas-pantaisemat .deskripsi h1,
#aktivitas-pantaimbahsirah .deskripsi-aktivitas-pantaimbahsirah .deskripsi h1,
#aktivitas-pantaikalibuntung .deskripsi-aktivitas-pantaikalibuntung .deskripsi h1{
   text-align: center;
   padding: 10px;
   font-size: 2em;
   color: #000;
   background: #fff;
}


#aktivitas-pantaisemat #activity-image-pantaisemat,
#aktivitas-pantaimbahsirah #activity-image-pantaimbahsirah,
#aktivitas-pantaikalibuntung #activity-image-pantaikalibuntung{
 
   margin: 0 auto;
   padding: 0;
   max-width: 100%;
   height: auto;
}


#aktivitas-pantaisemat #activity-description-pantaisemat,
#aktivitas-pantaimbahsirah #activity-description-pantaimbahsirah,
#aktivitas-pantaikalibuntung #activity-description-pantaikalibuntung{
   font-size: 1.7rem;
   max-width: 100%;
   width: 100%;  
   height: auto;
   line-height: 2em;
   color: #fff;
}




/* makam-mbahsirah */
/*  makam-yikfaqirsugih */





#makam-mbahsirah .judul,
#makam-yikfekirsugih .judul{
  background: linear-gradient(135deg, #05172f, #003f6c);
  max-width: 100%;

}

#makam-mbahsirah .judul h2,
#makam-yikfekirsugih .judul h2{
  margin: 0;
  padding: 0;
  margin-top: 30px;
  font-size: 3rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  text-align: center;
  color: #fff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  padding: 20px 0;
}


#makam-mbahsirah .makam-mbahsirah,
#makam-yikfekirsugih .makam-yikfekirsugih{
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  background: #fff;
}



#makam-mbahsirah .deskripsi,
#makam-yikfekirsugih .deskripsi{
   margin: 0;
  background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 100%;
  text-align: center;
  height: auto;
  font-family: "Playfair Display", serif;
}

#makam-mbahsirah .deskripsi h1,
#makam-yikfekirsugih .deskripsi h1 {
  background: linear-gradient(135deg, #05172f, #003f6c);
  border-radius: 10px;
  color: #fff;
  font-size: 2.5em;
  padding: 5px;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#makam-mbahsirah .deskripsi p,
#makam-yikfekirsugih .deskripsi p{
   color: #000;
   line-height: 1.6;
   font-size: 1.7em;
   font-family: "Playfair Display", serif;
   text-align: justify;
}



#makam-mbahsirah .deskripsi .peta-makam-mbahsirah p,
#makam-yikfekirsugih .deskripsi .peta-makam-yikfekirsugih p{
   color: #000;
   line-height: 1.6;
   font-size: 1.7em;
   font-family: "Playfair Display", serif;
   text-align: justify;
}

#makam-mbahsirah .gambar-makam-mbahsirah,
#makam-yikfekirsugih .gambar-makam-yikfekirsugih{
  position: relative;
  width: 100%;
  rotate: 0deg;

}

#makam-mbahsirah .gambar-makam-mbahsirah .img-makam-mbahsirah,
#makam-yikfekirsugih .gambar-makam-yikfekirsugih .img-makam-yikfekirsugih{
  position: absolute;
  height: 100%;
  width: 100%;
}

#makam-mbahsirah .gambar-makam-mbahsirah .img-makam-mbahsirah img,
#makam-yikfekirsugih .gambar-makam-yikfekirsugih .img-makam-yikfekirsugih img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  clip-path: circle(0% at 0% 100%);
  transition: all 0.7s;
}

#makam-mbahsirah #one-makam-mbahsirah:checked ~ .img-makam-mbahsirah.img-1-makam-mbahsirah img,
#makam-yikfekirsugih #one-makam-yikfekirsugih:checked ~ .img-makam-yikfekirsugih.img-1-makam-yikfekirsugih img{
  clip-path: circle(150% at 0% 100%);
}

#makam-mbahsirah #two-makam-mbahsirah:checked ~ .img-makam-mbahsirah.img-2-makam-mbahsirah img,
#makam-yikfekirsugih #two-makam-yikfekirsugih:checked ~ .img-makam-yikfekirsugih.img-2-makam-yikfekirsugih img{
  clip-path: circle(150% at 0% 100%);
}

#makam-mbahsirah #three-makam-mbahsirah:checked ~ .img-makam-mbahsirah.img-3-makam-mbahsirah img,
#makam-yikfekirsugih #three-makam-yikfekirsugih:checked ~ .img-makam-yikfekirsugih.img-3-makam-yikfekirsugih img {
  clip-path: circle(150% at 0% 100%);
}

#makam-mbahsirah #four-makam-mbahsirah:checked ~ .img-makam-mbahsirah.img-4-makam-mbahsirah img{
  clip-path: circle(150% at 0% 100%);
}

#makam-mbahsirah #five-makam-mbahsirah:checked ~ .img-makam-mbahsirah.img-5-makam-mbahsirah img{
  clip-path: circle(150% at 0% 100%);
}

#makam-mbahsirah .gambar-makam-mbahsirah .sliders-makam-mbahsirah,
#makam-yikfekirsugih .gambar-makam-yikfekirsugih .sliders-makam-yikfekirsugih {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  z-index: 999;
  display: flex;
}

#makam-mbahsirah .gambar-makam-mbahsirah .sliders-makam-mbahsirah label,
#makam-yikfekirsugih .gambar-makam-yikfekirsugih .sliders-makam-yikfekirsugih label {
   height: 15px;
   width: 15px;
  border: 2px solid #fff;
  margin: 0 3px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#makam-mbahsirah #one-makam-mbahsirah:checked ~ .sliders-makam-mbahsirah label.one-makam-mbahsirah,
#makam-mbahsirah #two-makam-mbahsirah:checked ~ .sliders-makam-mbahsirah label.two-makam-mbahsirah,
#makam-mbahsirah #three-makam-mbahsirah:checked ~ .sliders-makam-mbahsirah label.three-makam-mbahsirah,
#makam-mbahsirah #four-makam-mbahsirah:checked ~ .sliders-makam-mbahsirah label.four-makam-mbahsirah,
#makam-mbahsirah #five-makam-mbahsirah:checked ~ .sliders-makam-mbahsirah label.five-makam-mbahsirah {
  width: 35px;
  border-radius: 14px;
  background: linear-gradient(135deg, #05172f, #003f6c);

}


#makam-yikfekirsugih #one-makam-yikfekirsugih:checked ~ .sliders-makam-yikfekirsugih label.one-makam-yikfekirsugih,
#makam-yikfekirsugih #two-makam-yikfekirsugih:checked ~ .sliders-makam-yikfekirsugih label.two-makam-yikfekirsugih,
#makam-yikfekirsugih #three-makam-yikfekirsugih:checked ~ .sliders-makam-yikfekirsugih label.three-makam-yikfekirsugih{
  width: 35px;
  border-radius: 14px;
  background: linear-gradient(135deg, #05172f, #003f6c);

}



#makam-mbahsirah .sliders-makam-mbahsirah label:hover,
#makam-yikfekirsugih .sliders-makam-yikfekirsugih label:hover {
  background: linear-gradient(135deg, #05172f, #003f6c);

}

#makam-mbahsirah .gambar-makam-mbahsirah input[type="radio"],
#makam-yikfekirsugih .gambar-makam-yikfekirsugih input[type="radio"]{
  display: none;
}




  

 /* edukasi-batiksemat */
 #edukasibatiksemat .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 20px;
    background: linear-gradient(135deg, #05172f, #003f6c);
    font-size: 3rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}
 

 #edukasi-batiksemat .edukasi-batiksemat{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
}



 #edukasibatiksemat .deskripsi {
    margin: 0;
    padding: 0;
    max-width: 100%;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    height: auto;
}

 #edukasibatiksemat .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.5em;
    padding: 15px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

 #edukasibatiksemat .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1.7em;

    text-align: justify;
}

 #edukasibatiksemat .gambar-edukasi-batiksemat {
    position: relative;
    height: 450px;
    width: 100%;
    rotate: 0deg;
}

 #edukasibatiksemat .gambar-edukasi-batiksemat .img-edukasi-batiksemat {
    position: absolute;
    height: 100%;
    width: 100%;
}

 #edukasibatiksemat .gambar-edukasi-batiksemat .img-edukasi-batiksemat img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

 #edukasibatiksemat #one-edukasi-batiksemat:checked ~ .img-edukasi-batiksemat.img-1-edukasi-batiksemat img {
    clip-path: circle(150% at 0% 100%);
}

 #edukasibatiksemat #two-edukasi-batiksemat:checked ~ .img-edukasi-batiksemat.img-2-edukasi-batiksemat img {
    clip-path: circle(150% at 0% 100%);
}

 #edukasibatiksemat #three-edukasi-batiksemat:checked ~ .img-edukasi-batiksemat.img-3-edukasi-batiksemat img {
    clip-path: circle(150% at 0% 100%);
}

 #edukasibatiksemat #four-edukasi-batiksemat:checked ~ .img-edukasi-batiksemat.img-4-edukasi-batiksemat img {
    clip-path: circle(150% at 0% 100%);
}

 #edukasibatiksemat #five-edukasi-batiksemat:checked ~ .img-edukasi-batiksemat.img-5-edukasi-batiksemat img {
    clip-path: circle(150% at 0% 100%);
}

 #edukasibatiksemat .gambar-edukasi-batiksemat .sliders-edukasi-batiksemat {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

 #edukasibatiksemat .gambar-edukasi-batiksemat .sliders-edukasi-batiksemat label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

 #edukasibatiksemat #one-edukasi-batiksemat:checked ~ .sliders-edukasi-batiksemat label.one-edukasi-batiksemat,
 #edukasibatiksemat #two-edukasi-batiksemat:checked ~ .sliders-edukasi-batiksemat label.two-edukasi-batiksemat,
 #edukasibatiksemat #three-edukasi-batiksemat:checked ~ .sliders-edukasi-batiksemat label.three-edukasi-batiksemat,
 #edukasibatiksemat #four-edukasi-batiksemat:checked ~ .sliders-edukasi-batiksemat label.four-edukasi-batiksemat,
 #edukasibatiksemat #five-edukasi-batiksemat:checked ~ .sliders-edukasi-batiksemat label.five-edukasi-batiksemat {
    width: 35px;
    border-radius: 14px;
       background: linear-gradient(135deg, #05172f, #003f6c);

}

 #edukasibatiksemat .sliders-edukasi-batiksemat label:hover {
       background: linear-gradient(135deg, #05172f, #003f6c);

}

 #edukasibatiksemat .gambar-edukasi-batiksemat input[type="radio"] {
    display: none;
}


#edukasibatiksemat .langkah-edukasi-batiksemat {
    margin: 0;
    padding: 0;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #05172f, #003f6c);
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-align: justify;
    color: #f4f4f4;
    line-height: 1.6;
    font-family: "Playfair Display", serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 

#edukasibatiksemat .langkah-edukasi-batiksemat h1 {
    border-radius: 10px;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    color: #000;
    font-size: 2em;
    padding: 15px;
    margin-bottom: 25px;
    font-family: "Playfair Display", serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 2px solid #d0c6e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#edukasibatiksemat .langkah-edukasi-batiksemat .langkah {
    margin: 0;
    padding: 0;
}

#edukasibatiksemat .langkah-edukasi-batiksemat h2 {
    margin: 0;
    padding: 0;
    padding: 10px;
    text-align: center;
    font-size: 2em;
    color: #000;
    border-bottom: 2px solid #fff;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0); 
    border-radius: 10px;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
}

#edukasibatiksemat .langkah-edukasi-batiksemat ul {
    list-style-type: lower-alpha;
    margin-left: 20px;
}

#edukasibatiksemat .langkah-edukasi-batiksemat li {
    margin-bottom: 10px;
    font-size: 1.7em;


}

#edukasibatiksemat .langkah-edukasi-batiksemat strong {
    color: #d0c6e0;
}




.buttons-alam,
.buttons-religi,
.buttons-edukasi  {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    
}

 

.close-btn-alam button,
.buttons-alam button {
    padding: 5px;
    margin: 0;
    margin-top: 10px;
    font-size: 1.2em;
    text-align: center;
    font-family: "Playfair Display", serif;
    border: none;
    background-color: transparent;
    border: 1px solid #0056b3;
    width: 142px;
    height: 60px;
    color: #0056b3;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, opacity 0.2s ease;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.close-btn-religi button,
.buttons-religi button {
    padding: 5px;
    margin: 0;
    margin-top: 10px;
    font-size: 1.2em;
    text-align: center;
    font-family: "Playfair Display", serif;
    border: none;
    background-color: transparent;
    border: 1px solid #0056b3;
    width: 230px;
    height: 50px;
    color: #0056b3;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, opacity 0.2s ease;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.close-btn-edukasi button,
.buttons-edukasi button {
    padding: 5px;
    margin: 0;
    margin-top: 10px;
    font-size: 1.2em;
    text-align: center;
    font-family: "Playfair Display", serif;
    border: none;
    background-color: transparent;
    border: 1px solid #0056b3;
    width: 200px;
    height: 50px;
    color: #0056b3;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, opacity 0.2s ease;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button.active {
    background-color: #0056b3; 
    color: #fff;
    border: 2px solid #fff;
}

.close-btn button:hover,
.buttons button:hover {
    background-color: #0056b3;
    transform: scale(0.9);
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); 
}

.close-btn button:focus,
.buttons button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5); 
}

.close-btn button::before,
.buttons button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    transition: transform 0.4s ease;
    transform: translate(-50%, -50%) scale(0);
    z-index: 0;
}

.close-btn button:hover::before,
.buttons button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.buttons button span {
    position: relative;
    z-index: 1;
}
 

.content-pantai,
.content-makam,
.content-edikasi{
   display: none; 
   text-align: center;
   margin: 20px;
   padding: 20px;
   border: 1px solid #ddd;
    background: #fff;
   border-radius: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   color: #000;
}



#pantaisemat .content-pantai .pantaisemat h2{
   color: #000;
   font-size: 10rem;
}



 /* kerajinan */

 #kerajinan .judul {
    background: linear-gradient(135deg, #05172f, #003f6c);
    max-width: 100%;

 }

 #kerajinan .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 15px;
    font-size: 4rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}


#kerajinan .kerajinan-kembangturi{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px;
    align-items: center;
    justify-content: center;
    background: #fff;
}



#kerajinan .deskripsi-kembangturi {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    text-align: center;
    height: auto;
    font-family: "Playfair Display", serif;
}

#kerajinan .deskripsi-kembangturi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.8em;
    padding: 15px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kerajinan .deskripsi-kembangturi p {
    color: #000;
    line-height: 1.6;
    font-size: 1.7em;
    font-family: "Playfair Display", serif;
    text-align: justify;
}

#kerajinan .gambar-kerajinan-kembangturi {
    position: relative;
    width: 100%;
    height: 700px;
    rotate: 0deg;

}

#kerajinan .gambar-kerajinan-kembangturi .img-kerajinan-kembangturi {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kerajinan .gambar-kerajinan-kembangturi .img-kerajinan-kembangturi img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#kerajinan #one-kerajinan-kembangturi:checked ~ .img-kerajinan-kembangturi.img-1-kerajinan-kembangturi img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #two-kerajinan-kembangturi:checked ~ .img-kerajinan-kembangturi.img-2-kerajinan-kembangturi img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #three-kerajinan-kembangturi:checked ~ .img-kerajinan-kembangturi.img-3-kerajinan-kembangturi img {
    clip-path: circle(150% at 0% 100%);
}
#kerajinan #four-kerajinan-kembangturi:checked ~ .img-kerajinan-kembangturi.img-4-kerajinan-kembangturi img {
    clip-path: circle(150% at 0% 100%);
}
#kerajinan #five-kerajinan-kembangturi:checked ~ .img-kerajinan-kembangturi.img-5-kerajinan-kembangturi img {
    clip-path: circle(150% at 0% 100%);
}


#kerajinan .gambar-kerajinan-kembangturi .sliders-kerajinan-kembangturi {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kerajinan .gambar-kerajinan-kembangturi .sliders-kerajinan-kembangturi label {
    height: 15px;
    width: 15px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kerajinan #one-kerajinan-kembangturi:checked ~ .sliders-kerajinan-kembangturi label.one-kerajinan-kembangturi,
#kerajinan #two-kerajinan-kembangturi:checked ~ .sliders-kerajinan-kembangturi label.two-kerajinan-kembangturi,
#kerajinan #three-kerajinan-kembangturi:checked ~ .sliders-kerajinan-kembangturi label.three-kerajinan-kembangturi,
#kerajinan #four-kerajinan-kembangturi:checked ~ .sliders-kerajinan-kembangturi label.four-kerajinan-kembangturi,
#kerajinan #five-kerajinan-kembangturi:checked ~ .sliders-kerajinan-kembangturi label.five-kerajinan-kembangturi {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kerajinan .sliders-kerajinan-kembangturi label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kerajinan .gambar-kerajinan-kembangturi input[type="radio"] {
    display: none;
}


/* kerajinan-gongsemat */
 
.kerajinan {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#kerajinan .kerajinan-gongsemat{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px;
    align-items: center;
    justify-content: center;
    background: #fff;
    rotate: 180deg;
}



#kerajinan .deskripsi-gongsemat {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    text-align: center;
    height: auto;
    rotate: 180deg;
    font-family: "Playfair Display", serif;
}

#kerajinan .deskripsi-gongsemat h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.8em;
    padding: 15px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kerajinan .deskripsi-gongsemat p {
    color: #000;
    line-height: 1.6;
    font-size: 1.7em;

    font-family: "Playfair Display", serif;
    text-align: justify;
}

#kerajinan .gambar-kerajinan-gongsemat {
    position: relative;
    height: 700px;
    width: 100%;
    rotate: 180deg;


}

#kerajinan .gambar-kerajinan-gongsemat .img-kerajinan-gongsemat {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kerajinan .gambar-kerajinan-gongsemat .img-kerajinan-gongsemat img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#kerajinan #one-kerajinan-gongsemat:checked ~ .img-kerajinan-gongsemat.img-1-kerajinan-gongsemat img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #two-kerajinan-gongsemat:checked ~ .img-kerajinan-gongsemat.img-2-kerajinan-gongsemat img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #three-kerajinan-gongsemat:checked ~ .img-kerajinan-gongsemat.img-3-kerajinan-gongsemat img {
    clip-path: circle(150% at 0% 100%);
}
#kerajinan #four-kerajinan-gongsemat:checked ~ .img-kerajinan-gongsemat.img-4-kerajinan-gongsemat img {
    clip-path: circle(150% at 0% 100%);
}
#kerajinan #five-kerajinan-gongsemat:checked ~ .img-kerajinan-gongsemat.img-5-kerajinan-gongsemat img {
    clip-path: circle(150% at 0% 100%);
}
#kerajinan .gambar-kerajinan-gongsemat .sliders-kerajinan-gongsemat {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kerajinan .gambar-kerajinan-gongsemat .sliders-kerajinan-gongsemat label {
    height: 15px;
    width: 15px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kerajinan #one-kerajinan-gongsemat:checked ~ .sliders-kerajinan-gongsemat label.one-kerajinan-gongsemat,
#kerajinan #two-kerajinan-gongsemat:checked ~ .sliders-kerajinan-gongsemat label.two-kerajinan-gongsemat,
#kerajinan #three-kerajinan-gongsemat:checked ~ .sliders-kerajinan-gongsemat label.three-kerajinan-gongsemat,
#kerajinan #four-kerajinan-gongsemat:checked ~ .sliders-kerajinan-gongsemat label.four-kerajinan-gongsemat,
#kerajinan #five-kerajinan-gongsemat:checked ~ .sliders-kerajinan-gongsemat label.five-kerajinan-gongsemat {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kerajinan .sliders-kerajinan-gongsemat label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kerajinan .gambar-kerajinan-gongsemat input[type="radio"] {
    display: none;
}

/* kerajinan-kerang */

.kerajinan-kerang {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#kerajinan .kerajinan-kerang {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px;
    align-items: center;
    justify-content: center;
    background: #fff;
    max-width: 1200px;
}

#kerajinan .deskripsi-kerang {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    text-align: center;
    height: auto;
    font-family: "Playfair Display", serif;
}

#kerajinan .deskripsi-kerang h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.8em;
    padding: 15px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kerajinan .deskripsi-kerang p {
    color: #000;
    line-height: 1.6;
    font-size: 1.7em;
    font-family: "Playfair Display", serif;
    text-align: justify;
}

#kerajinan .gambar-kerajinan-kerang {
    position: relative;
    height: 700px;
    width: 100%;
    max-width: 1200px;
}

#kerajinan .gambar-kerajinan-kerang .img-kerajinan-kerang {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kerajinan .gambar-kerajinan-kerang .img-kerajinan-kerang img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#kerajinan #one-kerajinan-kerang:checked ~ .img-kerajinan-kerang.img-1-kerajinan-kerang img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #two-kerajinan-kerang:checked ~ .img-kerajinan-kerang.img-2-kerajinan-kerang img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #three-kerajinan-kerang:checked ~ .img-kerajinan-kerang.img-3-kerajinan-kerang img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #four-kerajinan-kerang:checked ~ .img-kerajinan-kerang.img-4-kerajinan-kerang img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #five-kerajinan-kerang:checked ~ .img-kerajinan-kerang.img-5-kerajinan-kerang img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan .gambar-kerajinan-kerang .sliders-kerajinan-kerang {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kerajinan .gambar-kerajinan-kerang .sliders-kerajinan-kerang label {
    height: 15px;
    width: 15px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kerajinan #one-kerajinan-kerang:checked ~ .sliders-kerajinan-kerang label.one-kerajinan-kerang,
#kerajinan #two-kerajinan-kerang:checked ~ .sliders-kerajinan-kerang label.two-kerajinan-kerang,
#kerajinan #three-kerajinan-kerang:checked ~ .sliders-kerajinan-kerang label.three-kerajinan-kerang,
#kerajinan #four-kerajinan-kerang:checked ~ .sliders-kerajinan-kerang label.four-kerajinan-kerang,
#kerajinan #five-kerajinan-kerang:checked ~ .sliders-kerajinan-kerang label.five-kerajinan-kerang {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);
}

#kerajinan .sliders-kerajinan-kerang label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);
}

#kerajinan .gambar-kerajinan-kerang input[type="radio"] {
    display: none;
}


 /* kuliner */

 #kuliner .judul {
    background: linear-gradient(135deg, #05172f, #003f6c);
    max-width: 100%;

 }

 #kuliner .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 15px;
    font-size: 4rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}


#kuliner .kuliner-segomenir{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px;
    align-items: center;
    justify-content: center;
    background: #fff;
}



#kuliner .deskripsi-segomenir {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    text-align: center;
    height: auto;
    font-family: "Playfair Display", serif;
}

#kuliner .deskripsi-segomenir h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.8em;
    padding: 15px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kuliner .deskripsi-segomenir p {
    color: #000;
    line-height: 1.6;
    font-size: 1.7em;

    font-family: "Playfair Display", serif;
    text-align: justify;
}

#kuliner .gambar-kuliner-segomenir {
    position: relative;
    width: 100%;
    height: 550px;
    rotate: 0deg;

}

#kuliner .gambar-kuliner-segomenir .img-kuliner-segomenir {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kuliner .gambar-kuliner-segomenir .img-kuliner-segomenir img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#kuliner #one-kuliner-segomenir:checked ~ .img-kuliner-segomenir.img-1-kuliner-segomenir img {
    clip-path: circle(150% at 0% 100%);
}
 

#kuliner .gambar-kuliner-segomenir .sliders-kuliner-segomenir {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kuliner .gambar-kuliner-segomenir .sliders-kuliner-segomenir label {
    height: 15px;
    width: 15px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kuliner #one-kuliner-segomenir:checked ~ .sliders-kuliner-segomenir label.one-kuliner-segomenir{
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .sliders-kuliner-segomenir label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .gambar-kuliner-segomenir input[type="radio"] {
    display: none;
}


/* kuliner-stikturi */
 
.kuliner {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#kuliner .kuliner-stikturi{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px;
    align-items: center;
    justify-content: center;
    background: #fff;
    rotate: 180deg;
}



#kuliner .deskripsi-stikturi {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    text-align: center;
    height: auto;
    rotate: 180deg;
    font-family: "Playfair Display", serif;
}

#kuliner .deskripsi-stikturi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.8em;
    padding: 15px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kuliner .deskripsi-stikturi p {
    color: #000;
    line-height: 1.6;
    font-size: 1.7em;

    font-family: "Playfair Display", serif;
    text-align: justify;
}

#kuliner .gambar-kuliner-stikturi {
    position: relative;
    height: 550px;
    width: 100%;
    rotate: 180deg;


}

#kuliner .gambar-kuliner-stikturi .img-kuliner-stikturi {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kuliner .gambar-kuliner-stikturi .img-kuliner-stikturi img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#kuliner #one-kuliner-stikturi:checked ~ .img-kuliner-stikturi.img-1-kuliner-stikturi img {
    clip-path: circle(150% at 0% 100%);
}

 
#kuliner .gambar-kuliner-stikturi .sliders-kuliner-stikturi {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kuliner .gambar-kuliner-stikturi .sliders-kuliner-stikturi label {
    height: 15px;
    width: 15px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kuliner #one-kuliner-stikturi:checked ~ .sliders-kuliner-stikturi label.one-kuliner-stikturi{
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .sliders-kuliner-stikturi label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .gambar-kuliner-stikturi input[type="radio"] {
    display: none;
}



/* kuliner-tehkembangturi */
 
.kuliner {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#kuliner .kuliner-tehkembangturi{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px;
    align-items: center;
    justify-content: center;
    background: #fff;
    rotate: 0deg;
}



#kuliner .deskripsi-tehkembangturi {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    text-align: center;
    height: auto;
    rotate:0deg;
    font-family: "Playfair Display", serif;
}

#kuliner .deskripsi-tehkembangturi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.8em;
    padding: 15px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kuliner .deskripsi-tehkembangturi p {
    color: #000;
    line-height: 1.6;
    font-size: 1.7em;

    font-family: "Playfair Display", serif;
    text-align: justify;
}

#kuliner .gambar-kuliner-tehkembangturi {
    position: relative;
    width: 100%;
    height: 550px;
    rotate: 0deg;


}

#kuliner .gambar-kuliner-tehkembangturi .img-kuliner-tehkembangturi {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kuliner .gambar-kuliner-tehkembangturi .img-kuliner-tehkembangturi img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#kuliner #one-kuliner-tehkembangturi:checked ~ .img-kuliner-tehkembangturi.img-1-kuliner-tehkembangturi img {
    clip-path: circle(150% at 0% 100%);
}

 
#kuliner .gambar-kuliner-tehkembangturi .sliders-kuliner-tehkembangturi {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kuliner .gambar-kuliner-tehkembangturi .sliders-kuliner-tehkembangturi label {
    height: 15px;
    width: 15px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kuliner #one-kuliner-tehkembangturi:checked ~ .sliders-kuliner-tehkembangturi label.one-kuliner-tehkembangturi{
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .sliders-kuliner-tehkembangturi label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .gambar-kuliner-tehkembangturi input[type="radio"] {
    display: none;
}



/* kuliner-cookies */
 
.kuliner {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#kuliner .kuliner-cookies{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px;
    align-items: center;
    justify-content: center;
    background: #fff;
    rotate: 180deg;
}



#kuliner .deskripsi-cookies {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    text-align: center;
    height: auto;
    rotate: 180deg;
    font-family: "Playfair Display", serif;
}

#kuliner .deskripsi-cookies h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 2.8em;
    padding: 15px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kuliner .deskripsi-cookies p {
    color: #000;
    line-height: 1.6;
    font-size: 1.7em;

    font-family: "Playfair Display", serif;
    text-align: justify;
}

#kuliner .gambar-kuliner-cookies {
    position: relative;
    height: 550px;
    width: 100%;
    rotate: 180deg;


}

#kuliner .gambar-kuliner-cookies .img-kuliner-cookies {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kuliner .gambar-kuliner-cookies .img-kuliner-cookies img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#kuliner #one-kuliner-cookies:checked ~ .img-kuliner-cookies.img-1-kuliner-cookies img {
    clip-path: circle(150% at 0% 100%);
}

 
#kuliner .gambar-kuliner-cookies .sliders-kuliner-cookies {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kuliner .gambar-kuliner-cookies .sliders-kuliner-cookies label {
    height: 15px;
    width: 15px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kuliner #one-kuliner-cookies:checked ~ .sliders-kuliner-cookies label.one-kuliner-cookies{
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .sliders-kuliner-cookies label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .gambar-kuliner-cookies input[type="radio"] {
    display: none;
}




/* pengurus */


#pengurus {
  
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 20px;


}

.judulbesar-pengurus h1 {
    max-width: 100%;
    font-size:  3rem;
    text-align: center;
    font-family: "Playfair Display", serif;
    color: #fff;  
    background: linear-gradient(135deg, #05172f, #003f6c);
    margin: 0;
    padding: 20px 0;
    margin-bottom: 25px;
}

.pengurus {
    display: flex;
    flex-direction: column;
    rotate: 180deg;
    justify-content: center;
    flex-wrap: wrap; 
    width: 98%;
    border: 2px solid #ddd;  
    border-radius: 10px;  
    background: #f8f8f8;  
    padding: 10px; 
    margin: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
    transition: background 0.3s, border-color 0.3s; 
    margin: 0 auto; 
}



.kiri, .kanan {
    margin: 0;
    padding: 0;
    rotate: 180deg;
}
.kiri {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    padding: 10px;
}

.kiri h1 {
    margin: 0;
    font-size: 2.2em;
    line-height: 1.4;
    text-align: center;
    font-family: "Playfair Display", serif;
    padding: 10px 0;
    color: #333; 
}



.kiri .highlight-2 {
    font-size: 1.6em;
    color: #00bcd4; 
    font-family: "Playfair Display", serif;
    font-weight: bold; 
}

.kiri p {
    font-size: 1.5em;
    color: #666;  
    line-height: 1.8;
    text-align: justify;
    margin-top: 10px;
}

.highlight-3{
    font-size: 1em;
    color: black; 
    line-height: 1.8;
    text-align: justify;
    text-decoration: underline;
}
.kiri .tombol-pengurus {
    margin: 0;
    padding: 0;
    background: #18b7ff;
    color: white;
    text-align: center;
    height: 60px;  
    line-height: 60px;   
    text-decoration: none; 
    display: inline-block;
    padding: 0 20px;  
    font-size: 0.7em; 
    border-radius: 4px;  
    transition: background-color 0.3s, color 0.3s;  
    vertical-align: middle;   
}


.kiri .tombol-pengurus:hover {
    background: #05172f;
    color: white; 
}

.kanan {
    margin: 0; 
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;  
    padding: 5px;
    margin: 5px;
    border-radius: 8px;
}

.kolase {
    margin: 0; 
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: center;  
    align-items: center; 
    width: 100%;
}

.kolase img {
    
    width: calc(30% - 5px);  
    height: 150px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  
}

.kolase img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); 
}


/* ANGGOTA PENGURUS */
.judul-pokdarwis h1{
    font-family: "Playfair Display", serif;
    font-size: 30px;

}
.judul-pengelola h1{
    font-family: "Playfair Display", serif;
    font-size: 30px;

}
.anggota h2{
    margin: 0 auto;
    padding: 0;
    font-size: 1.2em;
    color: #000;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.anggota h3{
    margin: 0 auto;
    padding: 0;
    font-family: "Playfair Display", serif;
    margin-top: 5px;
    font-size: 1em;
    color: #333;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.pokdarwis,
.pengelola {
    margin: 20px auto;  
    padding: 20px;  
    display: flex;
    align-items: center;  
    text-align: center;  
    gap: 10px;
    background-color: #05172f;
}


.judul-pokdarwis {
    margin: 0;
    padding: 0;
    background-color: #003f6c;
    text-align: center;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    border-radius: 8px;  
    padding: 10px;  
    flex: 0 0 220px; 
    height: 150px;
    
}


.judul-pengelola {
    margin: 0;
    padding: 0;
    flex: 0 0 220px; 
    background-color: #003f6c;
    text-align: center;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    border-radius: 8px; 
    padding: 10px; 
    height: 150px;
    rotate: 180deg;
}


.anggota-pokdarwis,.anggota-pengelola{
    display: flex;
    gap: 5px;
    overflow: auto;
}

.anggota-pengelola{
    display: flex;
    gap: 5px;
    rotate: 180deg;
    overflow: auto;
}

.pengelola{
    rotate: 180deg;
}


.anggota {
    margin: 6px;
    margin-bottom: 10px; 
    padding: 10px;  
    background-color: #fff;  
    border-radius: 8px;  
    flex: 0 0 235px; 
    height: 120px;  
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);  
    display: flex;  
    flex-direction: column;  
    align-items: center;  
    justify-content: center;  
    transition: transform 0.3s;  
}

.anggota:hover {
    transform: scale(1.05);  
}


 


 /* Gallery */


 
 #gallery{
  
    margin: 10px auto;
    font-family: "Playfair Display", serif;
    
}

#gallery .judul {
    text-align: center;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #05172f, #003f6c);
     max-width: 100%;
}

#gallery .judul-gallery{
    text-align: center;
    justify-content: center;
    align-items: center;
}

#gallery .judul-gallery h1 {
    margin: 0;
    padding: 0;
    font-size: 4.5rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}


#gallery .deskripsi-gallery{
    margin: 0 auto;
    padding: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 700px;
}

#gallery .judul-gallery h2 {
    font-family: 'Cinzel Decorative', serif;
    text-align: center;
    font-size: 2em; 
    color: #555;
    margin: 5px;
}


#gallery .judul-gallery p {
    font-family: "Playfair Display", serif;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 1.2em; 
    color: #666;
    line-height: 1.5; 
    margin: 0;
    
}


#gallery nav {
    display: flex;
    justify-content: center;
    margin: 20px 0; 
    
}

nav .items {
    display: flex;
    flex-wrap: wrap;
    max-width: 800px; 
    width: 100%;
    justify-content: center; 
    gap: 10px;
}

nav .items .item {
    padding: 8px 20px;
    font-size: 16px; 
    font-weight: 500;
    color: #0056b3;
    border: 2px solid #0056b3;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center; 
}



nav .items .active,
nav .items .item:hover{
    color: #fff;
    background: #0056b3;
    border: 1px solid #fff;
    
}

.gallery{
    display: flex;
    flex-wrap: wrap;
    margin: 30px auto;
    max-width: 1100px;
}

.gallery .image{
    padding: 7px;
    width: calc(100% / 2);

}


.gallery .image.hide{
    display: none;
}

.gallery .image.show{
   animation: animate 0.4s ease;
}

@keyframes animate{
    0%{
        transform: scale(0.5);
    }
    100%{
        transform: scale(1);
    }
}

.gallery .image span{
    display: flex;
    width: 100%;
    overflow: hidden;
}
.gallery .image img{
    width: 100%;
    height: 330px;
}


.gallery .image:hover img{
    transform: scale(1.1);
}

.preview-box{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    width: 100%;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    border-radius: 5px;
    padding: 0 5px 5px 5px;
    box-shadow:  0px 0px 15px rgba(0, 0, 0, 0.2);
}

.preview-box.show{
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.preview-box .details{
    display: flex;
    align-items: center;
    padding: 13px 15px 13px 10px;
    justify-content: space-between;
}

.preview-box .details .title{
    display: flex;
    font-size: 18px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
}

.details .title p{
    margin-left: 5px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
}

.details .icon{
    color: #0056b3;
    font-size: 22px;
    cursor: pointer;
}

.preview-box .image-box{
    display: flex;
    width: auto;
    height: 730px;
}

.image-box img{
    width: 100%;
    height: auto;

    border-radius: 0 0 3px 3px;
}

.shadow{
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
   display: none;
    background: rgba(0, 0, 0, 0.4);

}

    /* Kontak */

    #contact{
        background: linear-gradient(135deg, #05172f, #003f6c);


    }

    .contactUs{
        padding: 20px;
    }

    .box{
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
        "form"
        "info"
        "map";
    }

   

    .formBox .row50{
        display: flex;
        gap: 0;
        flex-direction: column;
    }

    .inputBox{
        width: 100%;
    }

    .contact{
        padding: 30px;
    }

    #contact .map{
        min-height: 300px;
        padding: 0;

    }



    

 }

 /* Untuk ukuran layar ponsel */
 @media (max-width: 600px) {

    .header{
        padding: 12px 0;
    }

    .header .logo h1{
       font-size: 1em;

    }

    .header .menu{
        position: fixed;
        right: 0;
        top: 0;
        width: 260px;
        height: 100%;
        background: #003366;
        padding: 15px 30px 30px;
        overflow-y: auto;
        z-index: 1;
        transform: translateX(100%);
    }


    .header .menu.open{
        transform: none;
    }

    .header .menu .head{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 5px;
    }

    .header .menu .head .logo h1 a{
       font-size: 0.9em;
    }

    
    .header .menu .close-menu-btn {
        position: relative;
        width: 25px; 
        height: 25px; 
        background: transparent;  
        border: none; 
        cursor: pointer; 
    }
    
    .header .menu .close-menu-btn::before,
    .header .menu .close-menu-btn::after {
        content: '';
        position: absolute;
        width: 100%; 
        height: 2px;  
        background-color: hsl(0, 0%, 100%); 
        top: 50%;    
        left: 50%;  
        transform-origin: center; 
    }
    
    .header .menu .close-menu-btn::before {
        transform: translate(-50%, -50%) rotate(-45deg);  
    }
    
    .header .menu .close-menu-btn::after {
        transform: translate(-50%, -50%) rotate(45deg); 
    }

    .header .menu > ul > li{
        display: block;
    }

    .header .menu > ul > li:not(:last-child){
        margin-right: 0;
    }

    .header .menu li{
        border-bottom: 1px solid hsla(0, 0%, 100%, 0.25);
    }
    


    
    .header .menu li:first-child{
        border-top: 1px solid hsla(0, 0%, 100%, 0.25);
    }

    .header .menu > ul > li > a{
        padding: 12px 0;
        font-size: 0.9em;


    }

    .header .menu > ul > .dropdown > a{
        padding-right: 34px;
        
    }

    .header .menu i{
        height: 34px;
        width: 34px;
        border: 1px solid hsla(0, 0%, 100%, 0.25);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
        cursor: pointer;
        top: 7px;
    }

    

    .header .menu .dropdown.active > i{
        background-color: hsla(0, 0%, 100%, 0.25);
        transform: rotate(180deg);
        
    }

    

    .header .menu .sub-menu{
        position: static;
        opacity: 1;
        transform: none;
        visibility: visible;
        padding: 0;
        transition: none;
        box-shadow: none;
        width: 100%;
        display: none;
    }

    

    .header .menu .dropdown.active > .sub-menu{
        display: block;
    }

    
    .header .menu .sub-menu li:last-child{
        border: none;
    }

    .header .menu .sub-menu a {
        padding: 12px 0 12px 15px;
        font-size: 0.9em;



    }

    .header .menu .sub-menu .sub-menu a{
        padding-left: 30px;
    }

    .header .menu .sub-menu .sub-menu .sub-menu a{
        padding-left: 45px;
    }

    .header .menu .sub-menu span{
        background-color: none;
    }

    .header .menu .sub-menu i{
        transform: none;
        right: 0;
    }

    .header-right .open-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 35px;
        width: 35px;
        cursor: pointer;
        position: relative;
        background-color: transparent;
        border: none;
    }
    
    .header-right .open-menu-btn .line {
        height: 2px;
        width: 30px;
        background-color: hsl(0, 0%, 100%);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .header-right .open-menu-btn .line-1 {
        top: 8px; 
    }
    
    .header-right .open-menu-btn .line-2 {
        top: 50%; 
        transform: translateY(-50%) translateX(-50%);
    }
    
    .header-right .open-menu-btn .line-3 {
        bottom: 8px; 
    }
    

        /* Beranda */

    #beranda .judul {
        text-align: center;
        width: 270px;

    }
    
    #beranda .judul h1 {
        margin: 0 auto;
        padding: 0;
        font-size: 0.8em;
        border-bottom: 1px solid aqua;
    }
    
    #beranda .judul p {
        font-size: 0.3em;
        text-decoration: none;
    }

    .btn-tombol {
        margin: 0;
        padding: 0;
        padding: 5px;
        margin-top: 10px;
        font-size:1em;
    }

  
/* tentang */

#tentang {
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

#tentang .judul {
    margin: 0;
    padding: 0;
    background: #fff;
    max-width: 100%;
    text-align: center;
}

#tentang .judul h2 {
    margin: 0 auto;
    padding: 0;
    font-size: 2rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #000;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2s ease-out;
}

#tentang .judul .map {
    margin: 0 auto;
    padding: 0;
    text-align: center;
    max-width: 800px;
    align-items: center;
    border-radius: 10px;
}

#tentang .judul .map p {
    margin: 0 auto;
    padding: 0;
    font-size: 0.3em;
    line-height: 1.6;
}

#tentang .judul .map a {
    color: #333;
    font-family: "Playwrite AR", cursive;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

#tentang .judul .map a:hover {
    text-decoration: underline;
}

#tentang .tentang {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

#tentang .img-tentang {
    padding: 0;
    margin: 0;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

#tentang .img-tentang img {
    padding: 0;
    margin: 0;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    margin: 5px;



}


#tentang .deskripsi {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    animation: slideUp 1s ease-out;
    box-sizing: border-box;
    padding: 5px;
    margin: 5px;
}


@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

#tentang .img-tentang h1 {
    margin: 0;
    padding: 0;
    font-family: "Playfair Display", serif;
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 1.5em;
    padding: 10px;
    margin: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#tentang .deskripsi p {
    color: #fff;
    font-family: "Playfair Display", serif;
    line-height: 1.6;
    font-size: 1em;
    text-align: justify;
    padding: 7px;
    margin: 7px;
}






/* Wisata */
#wisata {
    background: linear-gradient(135deg, #05172f, #003f6c);
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Playfair Display", serif;
}

#wisata .judul h2 {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}


/* wisata alam */
#wisata-alam {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: #fff;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin: 10px;
    text-align: center;
    rotate: 180deg;
  
    
 
}



#wisata-alam  .deskripsi {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    max-width: 100%;
    text-align: center;
    height: auto;
    font-family: "Playfair Display", serif;
      
}

#wisata-alam .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 1.8em;
    padding: 5px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#wisata-alam .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    font-family: "Playfair Display", serif;
    text-align: justify;
}

#wisata-alam .gambar-wisata-alam {
    position: relative;
    width: 100%;
    height: 220px;
    rotate: 180deg;
}

#wisata-alam .gambar-wisata-alam .img-wisata-alam {
    position: absolute;
    height: 100%;

    width: 100%;
}

#wisata-alam .gambar-wisata-alam .img-wisata-alam img {
    height: 100%;

    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#wisata-alam #one-wisata-alam:checked ~ .img-wisata-alam.img-1-wisata-alam img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-alam #two-wisata-alam:checked ~ .img-wisata-alam.img-2-wisata-alam img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-alam #three-wisata-alam:checked ~ .img-wisata-alam.img-3-wisata-alam img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-alam #four-wisata-alam:checked ~ .img-wisata-alam.img-4-wisata-alam img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-alam #five-wisata-alam:checked ~ .img-wisata-alam.img-5-wisata-alam img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-alam .gambar-wisata-alam .sliders-wisata-alam {
    position:  absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#wisata-alam .gambar-wisata-alam .sliders-wisata-alam label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}


#wisata-alam #one-wisata-alam:checked ~ .sliders-wisata-alam label.one-wisata-alam,
#wisata-alam #two-wisata-alam:checked ~ .sliders-wisata-alam label.two-wisata-alam,
#wisata-alam #three-wisata-alam:checked ~ .sliders-wisata-alam label.three-wisata-alam,
#wisata-alam #four-wisata-alam:checked ~ .sliders-wisata-alam label.four-wisata-alam,
#wisata-alam #five-wisata-alam:checked ~ .sliders-wisata-alam label.five-wisata-alam {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-alam .sliders-wisata-alam label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-alam .gambar-wisata-alam input[type="radio"] {
    display: none;
}

/* wisata-religi */
#wisata-religi {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: #fff;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin: 10px;
    text-align: center;

    
 
}



#wisata-religi .deskripsi {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    max-width: 100%;
    text-align: center;
    height: auto;
    font-family: "Playfair Display", serif;
}

#wisata-religi .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 1.8em;
    padding: 5px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#wisata-religi .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    font-family: "Playfair Display", serif;
    text-align: justify;
}

#wisata-religi .gambar-wisata-religi {
    position: relative;
    width: 100%;
    height: 220px;

}

#wisata-religi .gambar-wisata-religi .img-wisata-religi {
    position: absolute;
    height: 100%;
    width: 100%;
}

#wisata-religi .gambar-wisata-religi .img-wisata-religi img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#wisata-religi #one-wisata-religi:checked ~ .img-wisata-religi.img-1-wisata-religi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-religi #two-wisata-religi:checked ~ .img-wisata-religi.img-2-wisata-religi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-religi #three-wisata-religi:checked ~ .img-wisata-religi.img-3-wisata-religi img {
    clip-path: circle(150% at 0% 100%);
}


#wisata-religi .gambar-wisata-religi .sliders-wisata-religi {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#wisata-religi .gambar-wisata-religi .sliders-wisata-religi label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#wisata-religi #one-wisata-religi:checked ~ .sliders-wisata-religi label.one-wisata-religi,
#wisata-religi #two-wisata-religi:checked ~ .sliders-wisata-religi label.two-wisata-religi,
#wisata-religi #three-wisata-religi:checked ~ .sliders-wisata-religi label.three-wisata-religi {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-religi .sliders-wisata-religi label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-religi .gambar-wisata-religi input[type="radio"] {
    display: none;
}



 /* makam-mbahsirah */
/*  makam-yikfekirsugih */





#makam-mbahsirah .judul,
#makam-yikfekirsugih .judul{
   background: linear-gradient(135deg, #05172f, #003f6c);
   max-width: 100%;

}

#makam-mbahsirah .judul h2,
#makam-yikfekirsugih .judul h2{
   margin: 0;
   padding: 0;
   padding: 10px;
   margin-top: 20px;
   font-size: 2rem;
   font-family: "Playfair Display", serif;
   font-weight: 700;
   text-align: center;
   color: #fff;
   text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
   padding: 20px 0;
}


#makam-mbahsirah .makam-mbahsirah,
#makam-yikfekirsugih .makam-yikfekirsugih{
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 10px;
   align-items: center;
   justify-content: center;
   background: #fff;
}



#makam-mbahsirah .deskripsi,
#makam-yikfekirsugih .deskripsi{
    margin: 0;
    padding: 0;
   background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
   border-radius: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   padding: 20px;
   max-width: 100%;
   text-align: center;
   height: auto;
   font-family: "Playfair Display", serif;
}

#makam-mbahsirah .deskripsi h1,
#makam-yikfekirsugih .deskripsi h1 {
   background: linear-gradient(135deg, #05172f, #003f6c);
   border-radius: 10px;
   color: #fff;
   font-size: 1.4em;
   padding: 5px;
   margin-bottom: 20px;
   font-family: 'Georgia', serif;
   text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#makam-mbahsirah .deskripsi p,
#makam-yikfekirsugih .deskripsi p{
   color: #000;
   line-height: 1.6;
   font-size: 1em;
   font-family: "Playfair Display", serif;
   text-align: justify;
}


#makam-mbahsirah .deskripsi .peta-makam-mbahsirah p,
#makam-yikfekirsugih .deskripsi .peta-makam-yikfekirsugih p{
   color: #000;
   line-height: 1.6;
   font-size: 1em;
   font-family: "Playfair Display", serif;
   text-align: justify;
}


#makam-mbahsirah .gambar-makam-mbahsirah,
#makam-yikfekirsugih .gambar-makam-yikfekirsugih{
   position: relative;
   width: 100%;
   height: 220px;
   rotate: 0deg;

}

#makam-mbahsirah .gambar-makam-mbahsirah .img-makam-mbahsirah,
#makam-yikfekirsugih .gambar-makam-yikfekirsugih .img-makam-yikfekirsugih{
   position: absolute;
   height: 100%;
   width: 100%;
}

#makam-mbahsirah .gambar-makam-mbahsirah .img-makam-mbahsirah img,
#makam-yikfekirsugih .gambar-makam-yikfekirsugih .img-makam-yikfekirsugih img {
   height: 100%;
   width: 100%;
   object-fit: cover;
   clip-path: circle(0% at 0% 100%);
   transition: all 0.7s;
}

#makam-mbahsirah #one-makam-mbahsirah:checked ~ .img-makam-mbahsirah.img-1-makam-mbahsirah img,
#makam-yikfekirsugih #one-makam-yikfekirsugih:checked ~ .img-makam-yikfekirsugih.img-1-makam-yikfekirsugih img{
   clip-path: circle(150% at 0% 100%);
}

#makam-mbahsirah #two-makam-mbahsirah:checked ~ .img-makam-mbahsirah.img-2-makam-mbahsirah img,
#makam-yikfekirsugih #two-makam-yikfekirsugih:checked ~ .img-makam-yikfekirsugih.img-2-makam-yikfekirsugih img{
   clip-path: circle(150% at 0% 100%);
}

#makam-mbahsirah #three-makam-mbahsirah:checked ~ .img-makam-mbahsirah.img-3-makam-mbahsirah img,
#makam-yikfekirsugih #three-makam-yikfekirsugih:checked ~ .img-makam-yikfekirsugih.img-3-makam-yikfekirsugih img {
   clip-path: circle(150% at 0% 100%);
}

#makam-mbahsirah #four-makam-mbahsirah:checked ~ .img-makam-mbahsirah.img-4-makam-mbahsirah img{
   clip-path: circle(150% at 0% 100%);
}

#makam-mbahsirah #five-makam-mbahsirah:checked ~ .img-makam-mbahsirah.img-5-makam-mbahsirah img{
   clip-path: circle(150% at 0% 100%);
}

#makam-mbahsirah .gambar-makam-mbahsirah .sliders-makam-mbahsirah,
#makam-yikfekirsugih .gambar-makam-yikfekirsugih .sliders-makam-yikfekirsugih {
   position: absolute;
   bottom: 20px;
   left: 50%;
   transform: translate(-50%);
   z-index: 999;
   display: flex;
}

#makam-mbahsirah .gambar-makam-mbahsirah .sliders-makam-mbahsirah label,
#makam-yikfekirsugih .gambar-makam-yikfekirsugih .sliders-makam-yikfekirsugih label {
   height: 13px;
   width: 13px;
   border: 2px solid #fff;
   margin: 0 3px;
   cursor: pointer;
   border-radius: 50%;
   transition: all 0.3s ease;
}

#makam-mbahsirah #one-makam-mbahsirah:checked ~ .sliders-makam-mbahsirah label.one-makam-mbahsirah,
#makam-mbahsirah #two-makam-mbahsirah:checked ~ .sliders-makam-mbahsirah label.two-makam-mbahsirah,
#makam-mbahsirah #three-makam-mbahsirah:checked ~ .sliders-makam-mbahsirah label.three-makam-mbahsirah,
#makam-mbahsirah #four-makam-mbahsirah:checked ~ .sliders-makam-mbahsirah label.four-makam-mbahsirah,
#makam-mbahsirah #five-makam-mbahsirah:checked ~ .sliders-makam-mbahsirah label.five-makam-mbahsirah {
   width: 35px;
   border-radius: 14px;
   background: linear-gradient(135deg, #05172f, #003f6c);

}


#makam-yikfekirsugih #one-makam-yikfekirsugih:checked ~ .sliders-makam-yikfekirsugih label.one-makam-yikfekirsugih,
#makam-yikfekirsugih #two-makam-yikfekirsugih:checked ~ .sliders-makam-yikfekirsugih label.two-makam-yikfekirsugih,
#makam-yikfekirsugih #three-makam-yikfekirsugih:checked ~ .sliders-makam-yikfekirsugih label.three-makam-yikfekirsugih{
   width: 35px;
   border-radius: 14px;
   background: linear-gradient(135deg, #05172f, #003f6c);

}



#makam-mbahsirah .sliders-makam-mbahsirah label:hover,
#makam-yikfekirsugih .sliders-makam-yikfekirsugih label:hover {
   background: linear-gradient(135deg, #05172f, #003f6c);

}

#makam-mbahsirah .gambar-makam-mbahsirah input[type="radio"],
#makam-yikfekirsugih .gambar-makam-yikfekirsugih input[type="radio"]{
   display: none;
}

   


/* wisata edukasi */
#wisata-edukasi {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: #fff;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin: 10px;
    text-align: center;
    rotate: 180deg;
  
    
 
}



#wisata-edukasi  .deskripsi {
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
    height: auto;
    font-family: "Playfair Display", serif;
      
}

#wisata-edukasi .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 1.8em;
    padding: 5px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#wisata-edukasi .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    font-family: "Playfair Display", serif;
    text-align: justify;
}

#wisata-edukasi .gambar-wisata-edukasi {
    position: relative;
    width: 100%;
    height: 220px;
    rotate: 180deg;
}

#wisata-edukasi .gambar-wisata-edukasi .img-wisata-edukasi {
    position: absolute;
    height: 100%;

    width: 100%;
}

#wisata-edukasi .gambar-wisata-edukasi .img-wisata-edukasi img {
    height: 100%;

    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#wisata-edukasi #one-wisata-edukasi:checked ~ .img-wisata-edukasi.img-1-wisata-edukasi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-edukasi #two-wisata-edukasi:checked ~ .img-wisata-edukasi.img-2-wisata-edukasi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-edukasi #three-wisata-edukasi:checked ~ .img-wisata-edukasi.img-3-wisata-edukasi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-edukasi #four-wisata-edukasi:checked ~ .img-wisata-edukasi.img-4-wisata-edukasi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-edukasi #five-wisata-edukasi:checked ~ .img-wisata-edukasi.img-5-wisata-edukasi img {
    clip-path: circle(150% at 0% 100%);
}

#wisata-edukasi .gambar-wisata-edukasi .sliders-wisata-edukasi {
    position:  absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#wisata-edukasi .gambar-wisata-edukasi .sliders-wisata-edukasi label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}


#wisata-edukasi #one-wisata-edukasi:checked ~ .sliders-wisata-edukasi label.one-wisata-edukasi,
#wisata-edukasi #two-wisata-edukasi:checked ~ .sliders-wisata-edukasi label.two-wisata-edukasi,
#wisata-edukasi #three-wisata-edukasi:checked ~ .sliders-wisata-edukasi label.three-wisata-edukasi,
#wisata-edukasi #four-wisata-edukasi:checked ~ .sliders-wisata-edukasi label.four-wisata-edukasi,
#wisata-edukasi #five-wisata-edukasi:checked ~ .sliders-wisata-edukasi label.five-wisata-edukasi {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-edukasi .sliders-wisata-edukasi label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#wisata-edukasi .gambar-wisata-edukasi input[type="radio"] {
    display: none;
}



 /* edukasi-batiksemat */
 #edukasibatiksemat .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 20px;
    background: linear-gradient(135deg, #05172f, #003f6c);
    font-size: 2.5rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}
 

 #edukasi-batiksemat .edukasi-batiksemat{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: #fff;
}



 #edukasibatiksemat .deskripsi {
    margin: 0;
    padding: 0;
    max-width: 100%;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    height: auto;
}

 #edukasibatiksemat .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 1.5em;
    padding: 10px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

 #edukasibatiksemat .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    text-align: justify;
}

 #edukasibatiksemat .gambar-edukasi-batiksemat {
    position: relative;
    height: 220px;
    width: 100%;
    rotate: 0deg;
}

 #edukasibatiksemat .gambar-edukasi-batiksemat .img-edukasi-batiksemat {
    position: absolute;
    height: 100%;
    width: 100%;
}

 #edukasibatiksemat .gambar-edukasi-batiksemat .img-edukasi-batiksemat img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

 #edukasibatiksemat #one-edukasi-batiksemat:checked ~ .img-edukasi-batiksemat.img-1-edukasi-batiksemat img {
    clip-path: circle(150% at 0% 100%);
}

 #edukasibatiksemat #two-edukasi-batiksemat:checked ~ .img-edukasi-batiksemat.img-2-edukasi-batiksemat img {
    clip-path: circle(150% at 0% 100%);
}

 #edukasibatiksemat #three-edukasi-batiksemat:checked ~ .img-edukasi-batiksemat.img-3-edukasi-batiksemat img {
    clip-path: circle(150% at 0% 100%);
}

 #edukasibatiksemat #four-edukasi-batiksemat:checked ~ .img-edukasi-batiksemat.img-4-edukasi-batiksemat img {
    clip-path: circle(150% at 0% 100%);
}

 #edukasibatiksemat #five-edukasi-batiksemat:checked ~ .img-edukasi-batiksemat.img-5-edukasi-batiksemat img {
    clip-path: circle(150% at 0% 100%);
}

 #edukasibatiksemat .gambar-edukasi-batiksemat .sliders-edukasi-batiksemat {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

 #edukasibatiksemat .gambar-edukasi-batiksemat .sliders-edukasi-batiksemat label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

 #edukasibatiksemat #one-edukasi-batiksemat:checked ~ .sliders-edukasi-batiksemat label.one-edukasi-batiksemat,
 #edukasibatiksemat #two-edukasi-batiksemat:checked ~ .sliders-edukasi-batiksemat label.two-edukasi-batiksemat,
 #edukasibatiksemat #three-edukasi-batiksemat:checked ~ .sliders-edukasi-batiksemat label.three-edukasi-batiksemat,
 #edukasibatiksemat #four-edukasi-batiksemat:checked ~ .sliders-edukasi-batiksemat label.four-edukasi-batiksemat,
 #edukasibatiksemat #five-edukasi-batiksemat:checked ~ .sliders-edukasi-batiksemat label.five-edukasi-batiksemat {
    width: 35px;
    border-radius: 14px;
       background: linear-gradient(135deg, #05172f, #003f6c);

}

 #edukasibatiksemat .sliders-edukasi-batiksemat label:hover {
       background: linear-gradient(135deg, #05172f, #003f6c);

}

 #edukasibatiksemat .gambar-edukasi-batiksemat input[type="radio"] {
    display: none;
}


#edukasibatiksemat .langkah-edukasi-batiksemat {
    margin: 0;
    padding: 0;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #05172f, #003f6c);
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-align: justify;
    color: #f4f4f4;
    line-height: 1.6;
    font-family: "Playfair Display", serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 

#edukasibatiksemat .langkah-edukasi-batiksemat h1 {
    border-radius: 10px;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    color: #000;
    font-size: 1.5em;
    padding: 15px;
    margin-bottom: 25px;
    font-family: "Playfair Display", serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 2px solid #d0c6e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#edukasibatiksemat .langkah-edukasi-batiksemat .langkah {
    margin: 0;
    padding: 0;
}

#edukasibatiksemat .langkah-edukasi-batiksemat h2 {
    margin: 0;
    padding: 0;
    padding: 10px;
    text-align: center;
    font-size: 1.1em;
    color: #000;
    border-bottom: 2px solid #fff;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0); 
    border-radius: 10px;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
}

#edukasibatiksemat .langkah-edukasi-batiksemat ul {
    list-style-type: lower-alpha;
    margin-left: 20px;
}

#edukasibatiksemat .langkah-edukasi-batiksemat li {
    margin-bottom: 10px;
    font-size: 1em;

}

#edukasibatiksemat .langkah-edukasi-batiksemat strong {
    color: #d0c6e0;
}




.buttons-alam,
.buttons-religi,
.buttons-edukasi {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;  
}

.close-btn-alam button,
.buttons-alam button {
    padding: 5px;
    margin: 0;
    margin-top: 10px;
    font-size: 0.7em;
    text-align: center;
    font-family: "Playfair Display", serif;
    border: none;
    background-color: transparent;
    border: 1px solid #0056b3;
    width: 100px;
    height: 50px;
    color: #0056b3;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, opacity 0.2s ease;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.close-btn-religi button,
.buttons-religi button {
    padding: 5px;
    margin: 0;
    margin-top: 10px;
    font-size: 0.7em;
    text-align: center;
    font-family: "Playfair Display", serif;
    border: none;
    background-color: transparent;
    border: 1px solid #0056b3;
    width: 140px;
    height: 50px;
    color: #0056b3;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, opacity 0.2s ease;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.close-btn-edukasi button,
.buttons-edukasi button {
    padding: 5px;
    margin: 0;
    margin-top: 10px;
    font-size: 0.7em;
    text-align: center;
    font-family: "Playfair Display", serif;
    border: none;
    background-color: transparent;
    border: 1px solid #0056b3;
    width: 120px;
    height: 50px;
    color: #0056b3;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, opacity 0.2s ease;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button.active {
    background-color: #0056b3; 
    color: #fff;
    border: 2px solid #fff;
}

.close-btn button:hover,
.buttons button:hover {
    background-color: #0056b3;
    transform: scale(0.9);
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); 
}

.close-btn button:focus,
.buttons button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5); 
}

.close-btn button::before,
.buttons button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    transition: transform 0.4s ease;
    transform: translate(-50%, -50%) scale(0);
    z-index: 0;
}

.close-btn button:hover::before,
.buttons button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.buttons button span {
    position: relative;
    z-index: 1;
}
 

 

.content-pantai,
.content-makam,
.content-edukasi{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   display: none; 
   text-align: center;
   border: 1px solid #ddd;
    background: #fff;
    margin: 10px;
    padding: 10px;
   border-radius: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   color: #000;
}

 

#pantaisemat .content-pantai .pantaisemat h2{
   color: #000;
}


#pantaisemat{
    max-width: 100%;
}


#pantai-semat .judul {
    margin: 0 auto;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    background: linear-gradient(135deg, #003f6c, #05172f);

}

 
#pantai-semat .judul h2{
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
    margin-top: 20px;
    font-size: 1.7em;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}


#pantai-semat .pantai-semat{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: #fff;
}



#pantai-semat .deskripsi {
    margin: 0 auto;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    height: auto;
}

#pantai-semat .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 1.8em;
    padding: 10px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#pantai-semat .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    text-align: justify;
}

#pantai-semat .gambar-pantai-semat {
    position: relative;
    height: 220px;
    width: 100%;
}

#pantai-semat .gambar-pantai-semat .img-pantai-semat {
    position: absolute;
    height: 100%;
    width: 100%;
}

#pantai-semat .gambar-pantai-semat .img-pantai-semat img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#pantai-semat #one-pantai-semat:checked ~ .img-pantai-semat.img-1-pantai-semat img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-semat #two-pantai-semat:checked ~ .img-pantai-semat.img-2-pantai-semat img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-semat #three-pantai-semat:checked ~ .img-pantai-semat.img-3-pantai-semat img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-semat #four-pantai-semat:checked ~ .img-pantai-semat.img-4-pantai-semat img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-semat #five-pantai-semat:checked ~ .img-pantai-semat.img-5-pantai-semat img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-semat .gambar-pantai-semat .sliders-pantai-semat {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#pantai-semat .gambar-pantai-semat .sliders-pantai-semat label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#pantai-semat #one-pantai-semat:checked ~ .sliders-pantai-semat label.one-pantai-semat,
#pantai-semat #two-pantai-semat:checked ~ .sliders-pantai-semat label.two-pantai-semat,
#pantai-semat #three-pantai-semat:checked ~ .sliders-pantai-semat label.three-pantai-semat,
#pantai-semat #four-pantai-semat:checked ~ .sliders-pantai-semat label.four-pantai-semat,
#pantai-semat #five-pantai-semat:checked ~ .sliders-pantai-semat label.five-pantai-semat {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#pantai-semat .sliders-pantai-semat label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#pantai-semat .gambar-pantai-semat input[type="radio"] {
    display: none;
}




   
/* AKTIVITAS */

#aktivitas-pantaisemat .judul-aktivitas-pantaisemat{
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    max-width: 100%;
   
}

#aktivitas-pantaisemat .judul-aktivitas-pantaisemat h1{
    margin: 0 auto;
    padding: 0;
    max-width:90%;
    margin-top: 20px;
    font-size: 1.5em;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #05172f, #003f6c);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

#aktivitas-pantaisemat .judul-aktivitas-pantaisemat h2{
    font-family: 'Cinzel Decorative', serif;
    text-align: center;
    font-size: 1em; 
    color: #555;
    margin-top: 10px;
}

#aktivitas-pantaisemat .highlight {
    color: #00bcd4;
}


#aktivitas-pantaisemat  .judul-aktivitas-pantaisemat p{
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
    font-family: "Playfair Display", serif;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 0.7em; 
    color: #666;
    line-height: 1.5; 
    
}

#aktivitas-pantaisemat .icons-aktivitas-pantaisemat {
    margin: 0 auto;
    padding: 0;
    display: flex;  
    flex-wrap: nowrap; 
    justify-content: flex-start;  
    gap: 5px; 
    padding: 5px;
    overflow-x: auto; 
    white-space: nowrap;  
    box-sizing: border-box;  
    max-width: 100%; 
    margin: 0 auto;  
    margin-top: 5px;
}

 
#aktivitas-pantaisemat .icon {
    margin: 0 auto;
    padding: 0;
    text-align: center;  
    height: 70px; 
    width: 70px; 
    border: 2px solid #ddd;  
    border-radius: 10px;  
    background: #f8f8f8;  
    padding: 5px;  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
    transition: background 0.3s, border-color 0.3s;  
    flex: 0 0 auto;  
}


#aktivitas-pantaisemat .icon:hover {
    transform: translateY(-5px);  
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  
}

 
#aktivitas-pantaisemat .icon img {
    width: 25px;  
    height: 25px;  
    object-fit: cover;  
    margin-bottom: 5px;  
    cursor: pointer;  
    transition: transform 0.3s;  
}
  

#aktivitas-pantaisemat .icon h1 {
    font-size: 10px;  
    margin: 0; 
}
 

 
#aktivitas-pantaisemat .icon.active-pantaisemat  {
    background: #003f6c;
    color: white;
}


#aktivitas-pantaisemat .deskripsi-aktivitas-pantaisemat {
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    max-width: 380px;
    border-radius: 10px;
    margin: auto;
    justify-content: center;
    gap: 0; 
}

 

#aktivitas-pantaisemat .deskripsi-aktivitas-pantaisemat .gambar img {
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
    height: 220px;
    

}


#aktivitas-pantaisemat .deskripsi-aktivitas-pantaisemat .deskripsi {
    text-align: justify;
    height: auto;
    background: linear-gradient(135deg, #05172f, #003f6c);
    margin-top: 0;


}


#aktivitas-pantaisemat .deskripsi-aktivitas-pantaisemat .deskripsi h1 {
    text-align: center;
    padding: 10px;
    font-size: 1.5em;
    color: #000;
    background: #fff;
}


#aktivitas-pantaisemat #activity-image-pantaisemat {
    margin-top: 5px;
    margin-bottom: 5px;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: 220px;
}


#aktivitas-pantaisemat #activity-description-pantaisemat {
    font-size: 0.8rem;
    line-height: 2em;
    color: #fff;
}



/* pantai mbahsirah */

#pantaimbahsirah{
    max-width: 100%;
}


#pantai-mbahsirah .judul {
    margin: 0 auto;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    background: linear-gradient(135deg, #003f6c, #05172f);

}

 
#pantai-mbahsirah .judul h2{
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
    margin-top: 20px;
    font-size: 1.4em;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}


#pantai-mbahsirah .pantai-mbahsirah{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;

    align-items: center;
    justify-content: center;
    background: #fff;
}



#pantai-mbahsirah .deskripsi {
    margin: 0 auto;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    height: auto;
}

#pantai-mbahsirah .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 1.5em;
    padding: 10px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#pantai-mbahsirah .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    text-align: justify;
}

#pantai-mbahsirah .gambar-pantai-mbahsirah {
    position: relative;
    height: 220px;
    width: 100%;
}

#pantai-mbahsirah .gambar-pantai-mbahsirah .img-pantai-mbahsirah {
    position: absolute;
    height: 100%;
    width: 100%;
}

#pantai-mbahsirah .gambar-pantai-mbahsirah .img-pantai-mbahsirah img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#pantai-mbahsirah #one-pantai-mbahsirah:checked ~ .img-pantai-mbahsirah.img-1-pantai-mbahsirah img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-mbahsirah #two-pantai-mbahsirah:checked ~ .img-pantai-mbahsirah.img-2-pantai-mbahsirah img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-mbahsirah #three-pantai-mbahsirah:checked ~ .img-pantai-mbahsirah.img-3-pantai-mbahsirah img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-mbahsirah #four-pantai-mbahsirah:checked ~ .img-pantai-mbahsirah.img-4-pantai-mbahsirah img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-mbahsirah #five-pantai-mbahsirah:checked ~ .img-pantai-mbahsirah.img-5-pantai-mbahsirah img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-mbahsirah .gambar-pantai-mbahsirah .sliders-pantai-mbahsirah {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#pantai-mbahsirah .gambar-pantai-mbahsirah .sliders-pantai-mbahsirah label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#pantai-mbahsirah #one-pantai-mbahsirah:checked ~ .sliders-pantai-mbahsirah label.one-pantai-mbahsirah,
#pantai-mbahsirah #two-pantai-mbahsirah:checked ~ .sliders-pantai-mbahsirah label.two-pantai-mbahsirah,
#pantai-mbahsirah #three-pantai-mbahsirah:checked ~ .sliders-pantai-mbahsirah label.three-pantai-mbahsirah,
#pantai-mbahsirah #four-pantai-mbahsirah:checked ~ .sliders-pantai-mbahsirah label.four-pantai-mbahsirah,
#pantai-mbahsirah #five-pantai-mbahsirah:checked ~ .sliders-pantai-mbahsirah label.five-pantai-mbahsirah {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#pantai-mbahsirah .sliders-pantai-mbahsirah label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#pantai-mbahsirah .gambar-pantai-mbahsirah input[type="radio"] {
    display: none;
}




   
/* AKTIVITAS */

#aktivitas-pantaimbahsirah .judul-aktivitas-pantaimbahsirah{
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    max-width: 100%;
   
}

#aktivitas-pantaimbahsirah .judul-aktivitas-pantaimbahsirah h1{
    margin: 0 auto;
    padding: 0;
    max-width:90%;
    margin-top: 20px;
    font-size: 1.3em;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #05172f, #003f6c);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

#aktivitas-pantaimbahsirah .judul-aktivitas-pantaimbahsirah h2{
    font-family: 'Cinzel Decorative', serif;
    text-align: center;
    font-size: 0.9em; 
    color: #555;
    margin-top: 10px;
}

#aktivitas-pantaimbahsirah .highlight {
    color: #00bcd4;
}


#aktivitas-pantaimbahsirah  .judul-aktivitas-pantaimbahsirah p{
    margin: 0 auto;
    padding: 0;
    max-width: 90%;
    font-family: "Playfair Display", serif;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 0.8em; 
    color: #666;
    line-height: 1.5; 
    
}

#aktivitas-pantaimbahsirah .icons-aktivitas-pantaimbahsirah {
    margin: 0 auto;
    padding: 0;
    display: flex;  
    flex-wrap: nowrap; 
    justify-content: flex-start;  
    gap: 5px; 
    padding: 5px;
    overflow-x: auto; 
    white-space: nowrap;  
    box-sizing: border-box;  
    max-width: 100%; 
    margin: 0 auto;  
    margin-top: 5px;
}

 
#aktivitas-pantaimbahsirah .icon {
    margin: 0 auto;
    padding: 0;
    text-align: center;  
    height: 70px; 
    width: 70px; 
    border: 2px solid #ddd;  
    border-radius: 10px;  
    background: #f8f8f8;  
    padding: 5px;  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
    transition: background 0.3s, border-color 0.3s;  
    flex: 0 0 auto;  
}


#aktivitas-pantaimbahsirah .icon:hover {
    transform: translateY(-5px);  
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  
}

 
#aktivitas-pantaimbahsirah .icon img {
    width: 25px;  
    height: 25px;  
    object-fit: cover;  
    margin-bottom: 5px;  
    cursor: pointer;  
    transition: transform 0.3s;  
}
  

#aktivitas-pantaimbahsirah .icon h1 {
    font-size: 10px;  
    margin: 0; 
}
 

 
#aktivitas-pantaimbahsirah .icon.active-pantaimbahsirah  {
    background: #003f6c;
    color: white;
}


#aktivitas-pantaimbahsirah .deskripsi-aktivitas-pantaimbahsirah {
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    max-width: 380px;
    border-radius: 10px;
    margin: auto;
    justify-content: center;
    gap: 0; 
}

 

#aktivitas-pantaimbahsirah .deskripsi-aktivitas-pantaimbahsirah .gambar img {
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
    height: 220px;
    

}


#aktivitas-pantaimbahsirah .deskripsi-aktivitas-pantaimbahsirah .deskripsi {
    text-align: justify;
    height: auto;
    background: linear-gradient(135deg, #05172f, #003f6c);
    margin-top: 0;
    


}


#aktivitas-pantaimbahsirah .deskripsi-aktivitas-pantaimbahsirah .deskripsi h1 {
    text-align: center;
    padding: 10px;
    font-size: 1.5em;
    color: #000;
    background: #fff;

}


#aktivitas-pantaimbahsirah #activity-image-pantaimbahsirah {
    margin-top: 5px;
    margin-bottom: 5px;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: 220px;
}


#aktivitas-pantaimbahsirah #activity-description-pantaimbahsirah {
    font-size: 0.8rem;
    line-height: 2em;
    color: #fff;
}




/* pantai-kalibuntung */
 


#pantaikalibuntung{
    max-width: 100%;
}


#pantai-kalibuntung .judul {
    margin: 0 auto;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    background: linear-gradient(135deg, #003f6c, #05172f);

}

 
#pantai-kalibuntung .judul h2{
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
    margin-top: 20px;
    font-size: 1.4em;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}


#pantai-kalibuntung .pantai-kalibuntung{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;

    align-items: center;
    justify-content: center;
    background: #fff;
}



#pantai-kalibuntung .deskripsi {
    margin: 0 auto;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    height: auto;
}

#pantai-kalibuntung .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 1.5em;
    padding: 10px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#pantai-kalibuntung .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    text-align: justify;
}

#pantai-kalibuntung .gambar-pantai-kalibuntung {
    position: relative;
    height: 220px;
    width: 100%;
}

#pantai-kalibuntung .gambar-pantai-kalibuntung .img-pantai-kalibuntung {
    position: absolute;
    height: 100%;
    width: 100%;
}

#pantai-kalibuntung .gambar-pantai-kalibuntung .img-pantai-kalibuntung img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#pantai-kalibuntung #one-pantai-kalibuntung:checked ~ .img-pantai-kalibuntung.img-1-pantai-kalibuntung img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-kalibuntung #two-pantai-kalibuntung:checked ~ .img-pantai-kalibuntung.img-2-pantai-kalibuntung img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-kalibuntung #three-pantai-kalibuntung:checked ~ .img-pantai-kalibuntung.img-3-pantai-kalibuntung img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-kalibuntung #four-pantai-kalibuntung:checked ~ .img-pantai-kalibuntung.img-4-pantai-kalibuntung img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-kalibuntung #five-pantai-kalibuntung:checked ~ .img-pantai-kalibuntung.img-5-pantai-kalibuntung img {
    clip-path: circle(150% at 0% 100%);
}

#pantai-kalibuntung .gambar-pantai-kalibuntung .sliders-pantai-kalibuntung {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#pantai-kalibuntung .gambar-pantai-kalibuntung .sliders-pantai-kalibuntung label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#pantai-kalibuntung #one-pantai-kalibuntung:checked ~ .sliders-pantai-kalibuntung label.one-pantai-kalibuntung,
#pantai-kalibuntung #two-pantai-kalibuntung:checked ~ .sliders-pantai-kalibuntung label.two-pantai-kalibuntung,
#pantai-kalibuntung #three-pantai-kalibuntung:checked ~ .sliders-pantai-kalibuntung label.three-pantai-kalibuntung,
#pantai-kalibuntung #four-pantai-kalibuntung:checked ~ .sliders-pantai-kalibuntung label.four-pantai-kalibuntung,
#pantai-kalibuntung #five-pantai-kalibuntung:checked ~ .sliders-pantai-kalibuntung label.five-pantai-kalibuntung {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#pantai-kalibuntung .sliders-pantai-kalibuntung label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#pantai-kalibuntung .gambar-pantai-kalibuntung input[type="radio"] {
    display: none;
}




   
/* AKTIVITAS */

#aktivitas-pantaikalibuntung .judul-aktivitas-pantaikalibuntung{
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    max-width: 100%;
   
}

#aktivitas-pantaikalibuntung .judul-aktivitas-pantaikalibuntung h1{
    margin: 0 auto;
    padding: 0;
    max-width:90%;
    margin-top: 20px;
    font-size: 1.3em;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #05172f, #003f6c);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

#aktivitas-pantaikalibuntung .judul-aktivitas-pantaikalibuntung h2{
    font-family: 'Cinzel Decorative', serif;
    text-align: center;
    font-size: 0.8em; 
    color: #555;
    margin-top: 10px;
}

#aktivitas-pantaikalibuntung .highlight {
    color: #00bcd4;
}


#aktivitas-pantaikalibuntung  .judul-aktivitas-pantaikalibuntung p{
    margin: 0 auto;
    padding: 0;
    max-width: 90%;
    font-family: "Playfair Display", serif;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 0.8em; 
    color: #666;
    line-height: 1.5; 
    
}

#aktivitas-pantaikalibuntung .icons-aktivitas-pantaikalibuntung {
    margin: 0 auto;
    padding: 0;
    display: flex;  
    flex-wrap: nowrap; 
    justify-content: flex-start;  
    gap: 5px; 
    padding: 5px;
    overflow-x: auto; 
    white-space: nowrap;  
    box-sizing: border-box;  
    max-width: 100%; 
    margin: 0 auto;  
    margin-top: 5px;
}

 
#aktivitas-pantaikalibuntung .icon {
    margin: 0 auto;
    padding: 0;
    text-align: center;  
    height: 70px; 
    width: 70px; 
    border: 2px solid #ddd;  
    border-radius: 10px;  
    background: #f8f8f8;  
    padding: 5px;  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
    transition: background 0.3s, border-color 0.3s;  
    flex: 0 0 auto;  
}


#aktivitas-pantaikalibuntung .icon:hover {
    transform: translateY(-5px);  
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  
}

 
#aktivitas-pantaikalibuntung .icon img {
    width: 25px;  
    height: 25px;  
    object-fit: cover;  
    margin-bottom: 5px;  
    cursor: pointer;  
    transition: transform 0.3s;  
}
  

#aktivitas-pantaikalibuntung .icon h1 {
    font-size: 10px;  
    margin: 0; 
}
 

 
#aktivitas-pantaikalibuntung .icon.active-pantaikalibuntung  {
    background: #003f6c;
    color: white;
}


#aktivitas-pantaikalibuntung .deskripsi-aktivitas-pantaikalibuntung {
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    max-width: 380px;
    border-radius: 10px;
    justify-content: center;
    gap: 0; 
}

 

#aktivitas-pantaikalibuntung .deskripsi-aktivitas-pantaikalibuntung .gambar img {
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
    height: 220px;
    

}


#aktivitas-pantaikalibuntung .deskripsi-aktivitas-pantaikalibuntung .deskripsi {
    
    text-align: justify;
    height: auto;
    background: linear-gradient(135deg, #05172f, #003f6c);
    margin-top: 0;
    


}


#aktivitas-pantaikalibuntung .deskripsi-aktivitas-pantaikalibuntung .deskripsi h1 {
    text-align: center;
    padding: 10px;
    font-size: 1.5em;
    color: #000;
    background: #fff;
}


#aktivitas-pantaikalibuntung #activity-image-pantaikalibuntung {
    margin-top: 5px;
    margin-bottom: 5px;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: 220px;
}


#aktivitas-pantaikalibuntung #activity-description-pantaikalibuntung {
    font-size: 0.8rem;
    line-height: 2em;
    color: #fff;
}



 /* Kerajinan */

 #kerajinan .judul{
    background: linear-gradient(135deg, #05172f, #003f6c);
    max-width: 100%;
 }


 #kerajinan .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 10px;
    font-size: 2rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}


#kerajinan .konten{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px;
    align-items: center;
    justify-content: center;
    background: #fff;
    rotate: 180deg;
    font-family: "Playfair Display", serif;
}

#kerajinan .deskripsi {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    text-align: center;
    height: auto;
    rotate: 180deg;
}

#kerajinan .deskripsi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 1.5em;
    padding: 10px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kerajinan .deskripsi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    font-family: "Playfair Display", serif;
    text-align: justify;
}

#kerajinan .gambar {
    position: relative;
    width: 100%;
    height: 350px;
    rotate: 180deg;
}

#kerajinan .gambar .img {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kerajinan .gambar .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}


#kerajinan #one:checked ~ .img-1 img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #two:checked ~ .img-2 img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #three:checked ~ .img-3 img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #four:checked ~ .img-4 img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #five:checked ~ .img-5 img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan .gambar .sliders {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kerajinan .gambar .sliders label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kerajinan #one:checked ~ .sliders label.one,
#kerajinan #two:checked ~ .sliders label.two,
#kerajinan #three:checked ~ .sliders label.three,
#kerajinan #four:checked ~ .sliders label.four,
#kerajinan #five:checked ~ .sliders label.five {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);
}

#kerajinan .sliders label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);
}

#kerajinan .gambar input[type="radio"] {
    display: none;
}



 /* kerajinan */

 #kerajinan .judul {
    background: linear-gradient(135deg, #05172f, #003f6c);
    max-width: 100%;

 }

 #kerajinan .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 10px;
    font-size: 2rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}


/* kerajinan-kembangturi */

#kerajinan .kerajinan-kembangturi{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px;
    align-items: center;
    justify-content: center;
    background: #fff;
}



#kerajinan .deskripsi-kembangturi {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    text-align: center;
    height: auto;
    font-family: "Playfair Display", serif;
}

#kerajinan .deskripsi-kembangturi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 1.6em;
    padding: 10px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kerajinan .deskripsi-kembangturi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    font-family: "Playfair Display", serif;
    text-align: justify;
}

#kerajinan .gambar-kerajinan-kembangturi {
    position: relative;
    width: 100%;
    height: 320px;
    rotate: 0deg;

}

#kerajinan .gambar-kerajinan-kembangturi .img-kerajinan-kembangturi {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kerajinan .gambar-kerajinan-kembangturi .img-kerajinan-kembangturi img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#kerajinan #one-kerajinan-kembangturi:checked ~ .img-kerajinan-kembangturi.img-1-kerajinan-kembangturi img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #two-kerajinan-kembangturi:checked ~ .img-kerajinan-kembangturi.img-2-kerajinan-kembangturi img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #three-kerajinan-kembangturi:checked ~ .img-kerajinan-kembangturi.img-3-kerajinan-kembangturi img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #four-kerajinan-kembangturi:checked ~ .img-kerajinan-kembangturi.img-4-kerajinan-kembangturi img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #five-kerajinan-kembangturi:checked ~ .img-kerajinan-kembangturi.img-5-kerajinan-kembangturi img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan .gambar-kerajinan-kembangturi .sliders-kerajinan-kembangturi {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kerajinan .gambar-kerajinan-kembangturi .sliders-kerajinan-kembangturi label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kerajinan #one-kerajinan-kembangturi:checked ~ .sliders-kerajinan-kembangturi label.one-kerajinan-kembangturi,
#kerajinan #two-kerajinan-kembangturi:checked ~ .sliders-kerajinan-kembangturi label.two-kerajinan-kembangturi,
#kerajinan #three-kerajinan-kembangturi:checked ~ .sliders-kerajinan-kembangturi label.three-kerajinan-kembangturi,
#kerajinan #four-kerajinan-kembangturi:checked ~ .sliders-kerajinan-kembangturi label.four-kerajinan-kembangturi,
#kerajinan #five-kerajinan-kembangturi:checked ~ .sliders-kerajinan-kembangturi label.five-kerajinan-kembangturi {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kerajinan .sliders-kerajinan-kembangturi label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kerajinan .gambar-kerajinan-kembangturi input[type="radio"] {
    display: none;
}



 /* kerajinan-gongsemat */


#kerajinan .kerajinan-gongsemat{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px;
    align-items: center;
    rotate: 180deg;
    justify-content: center;
    background: #fff;
}



#kerajinan .deskripsi-gongsemat {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    text-align: center;
    height: auto;
    rotate: 180deg;
    font-family: "Playfair Display", serif;
}

#kerajinan .deskripsi-gongsemat h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 1.8em;
    padding: 10px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kerajinan .deskripsi-gongsemat p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    font-family: "Playfair Display", serif;
    text-align: justify;
}

#kerajinan .gambar-kerajinan-gongsemat {
    position: relative;
    width: 100%;
    height: 300px;
    rotate: 180deg;

}

#kerajinan .gambar-kerajinan-gongsemat .img-kerajinan-gongsemat {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kerajinan .gambar-kerajinan-gongsemat .img-kerajinan-gongsemat img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#kerajinan #one-kerajinan-gongsemat:checked ~ .img-kerajinan-gongsemat.img-1-kerajinan-gongsemat img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #two-kerajinan-gongsemat:checked ~ .img-kerajinan-gongsemat.img-2-kerajinan-gongsemat img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #three-kerajinan-gongsemat:checked ~ .img-kerajinan-gongsemat.img-3-kerajinan-gongsemat img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #four-kerajinan-gongsemat:checked ~ .img-kerajinan-gongsemat.img-4-kerajinan-gongsemat img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #five-kerajinan-gongsemat:checked ~ .img-kerajinan-gongsemat.img-5-kerajinan-gongsemat img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan .gambar-kerajinan-gongsemat .sliders-kerajinan-gongsemat {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kerajinan .gambar-kerajinan-gongsemat .sliders-kerajinan-gongsemat label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kerajinan #one-kerajinan-gongsemat:checked ~ .sliders-kerajinan-gongsemat label.one-kerajinan-gongsemat,
#kerajinan #two-kerajinan-gongsemat:checked ~ .sliders-kerajinan-gongsemat label.two-kerajinan-gongsemat,
#kerajinan #three-kerajinan-gongsemat:checked ~ .sliders-kerajinan-gongsemat label.three-kerajinan-gongsemat,
#kerajinan #four-kerajinan-gongsemat:checked ~ .sliders-kerajinan-gongsemat label.four-kerajinan-gongsemat,
#kerajinan #five-kerajinan-gongsemat:checked ~ .sliders-kerajinan-gongsemat label.five-kerajinan-gongsemat {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kerajinan .sliders-kerajinan-gongsemat label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kerajinan .gambar-kerajinan-gongsemat input[type="radio"] {
    display: none;
}

/* kerajinan-kerang */

#kerajinan .kerajinan-kerang {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px;
    align-items: center;
    justify-content: center;
    background: #fff;
}

#kerajinan .deskripsi-kerang {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    max-width: 100%;
    text-align: center;
    height: auto;
    font-family: "Playfair Display", serif;
}

#kerajinan .deskripsi-kerang h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 1.4em;
    padding: 8px;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kerajinan .deskripsi-kerang p {
    color: #000;
    line-height: 1.6;
    font-size: 0.9em;
    font-family: "Playfair Display", serif;
    text-align: justify;
}

#kerajinan .gambar-kerajinan-kerang {
    position: relative;
    width: 100%;
    height: 280px;
    rotate: 0deg;
}

#kerajinan .gambar-kerajinan-kerang .img-kerajinan-kerang {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kerajinan .gambar-kerajinan-kerang .img-kerajinan-kerang img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#kerajinan #one-kerajinan-kerang:checked ~ .img-kerajinan-kerang.img-1-kerajinan-kerang img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #two-kerajinan-kerang:checked ~ .img-kerajinan-kerang.img-2-kerajinan-kerang img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #three-kerajinan-kerang:checked ~ .img-kerajinan-kerang.img-3-kerajinan-kerang img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #four-kerajinan-kerang:checked ~ .img-kerajinan-kerang.img-4-kerajinan-kerang img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan #five-kerajinan-kerang:checked ~ .img-kerajinan-kerang.img-5-kerajinan-kerang img {
    clip-path: circle(150% at 0% 100%);
}

#kerajinan .gambar-kerajinan-kerang .sliders-kerajinan-kerang {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kerajinan .gambar-kerajinan-kerang .sliders-kerajinan-kerang label {
    height: 10px;
    width: 10px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kerajinan #one-kerajinan-kerang:checked ~ .sliders-kerajinan-kerang label.one-kerajinan-kerang,
#kerajinan #two-kerajinan-kerang:checked ~ .sliders-kerajinan-kerang label.two-kerajinan-kerang,
#kerajinan #three-kerajinan-kerang:checked ~ .sliders-kerajinan-kerang label.three-kerajinan-kerang,
#kerajinan #four-kerajinan-kerang:checked ~ .sliders-kerajinan-kerang label.four-kerajinan-kerang,
#kerajinan #five-kerajinan-kerang:checked ~ .sliders-kerajinan-kerang label.five-kerajinan-kerang {
    width: 30px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);
}

#kerajinan .sliders-kerajinan-kerang label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);
}

#kerajinan .gambar-kerajinan-kerang input[type="radio"] {
    display: none;
}


 /* kuliner */

 #kuliner .judul {
    background: linear-gradient(135deg, #05172f, #003f6c);
    max-width: 100%;

 }

 #kuliner .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 10px;
    font-size: 2rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}


#kuliner .kuliner-segomenir{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px;
    align-items: center;
    justify-content: center;
    background: #fff;
}



#kuliner .deskripsi-segomenir {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    text-align: center;
    height: auto;
    font-family: "Playfair Display", serif;
}

#kuliner .deskripsi-segomenir h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 1.8em;
    padding: 10px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kuliner .deskripsi-segomenir p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    font-family: "Playfair Display", serif;
    text-align: justify;
}

#kuliner .gambar-kuliner-segomenir {
    position: relative;
    width: 100%;
    height: 250px;
    rotate: 0deg;

}

#kuliner .gambar-kuliner-segomenir .img-kuliner-segomenir {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kuliner .gambar-kuliner-segomenir .img-kuliner-segomenir img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#kuliner #one-kuliner-segomenir:checked ~ .img-kuliner-segomenir.img-1-kuliner-segomenir img {
    clip-path: circle(150% at 0% 100%);
}
 

#kuliner .gambar-kuliner-segomenir .sliders-kuliner-segomenir {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kuliner .gambar-kuliner-segomenir .sliders-kuliner-segomenir label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kuliner #one-kuliner-segomenir:checked ~ .sliders-kuliner-segomenir label.one-kuliner-segomenir {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .sliders-kuliner-segomenir label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .gambar-kuliner-segomenir input[type="radio"] {
    display: none;
}



 /* kuliner-stikturi */


#kuliner .kuliner-stikturi{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px;
    align-items: center;
    rotate: 180deg;
    justify-content: center;
    background: #fff;
}



#kuliner .deskripsi-stikturi {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    text-align: center;
    height: auto;
    rotate: 180deg;
    font-family: "Playfair Display", serif;
}

#kuliner .deskripsi-stikturi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 1.8em;
    padding: 10px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kuliner .deskripsi-stikturi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    font-family: "Playfair Display", serif;
    text-align: justify;
}

#kuliner .gambar-kuliner-stikturi {
    position: relative;
    width: 100%;
    height: 250px;

    rotate: 180deg;

}

#kuliner .gambar-kuliner-stikturi .img-kuliner-stikturi {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kuliner .gambar-kuliner-stikturi .img-kuliner-stikturi img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#kuliner #one-kuliner-stikturi:checked ~ .img-kuliner-stikturi.img-1-kuliner-stikturi img {
    clip-path: circle(150% at 0% 100%);
}
 

#kuliner .gambar-kuliner-stikturi .sliders-kuliner-stikturi {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kuliner .gambar-kuliner-stikturi .sliders-kuliner-stikturi label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kuliner #one-kuliner-stikturi:checked ~ .sliders-kuliner-stikturi label.one-kuliner-stikturi {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .sliders-kuliner-stikturi label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .gambar-kuliner-stikturi input[type="radio"] {
    display: none;
}



 /* kuliner-tehkembangturi */

 #kuliner .judul {
    background: linear-gradient(135deg, #05172f, #003f6c);
    max-width: 100%;

 }

 #kuliner .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 10px;
    font-size: 2rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}


#kuliner .kuliner-tehkembangturi{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px;
    align-items: center;
    justify-content: center;
    background: #fff;
}



#kuliner .deskripsi-tehkembangturi {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    text-align: center;
    height: auto;
    font-family: "Playfair Display", serif;
}

#kuliner .deskripsi-tehkembangturi h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 1.8em;
    padding: 10px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kuliner .deskripsi-tehkembangturi p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    font-family: "Playfair Display", serif;
    text-align: justify;
}

#kuliner .gambar-kuliner-tehkembangturi {
    position: relative;
    width: 100%;
    height: 250px;

    rotate: 0deg;

}

#kuliner .gambar-kuliner-tehkembangturi .img-kuliner-tehkembangturi {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kuliner .gambar-kuliner-tehkembangturi .img-kuliner-tehkembangturi img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#kuliner #one-kuliner-tehkembangturi:checked ~ .img-kuliner-tehkembangturi.img-1-kuliner-tehkembangturi img {
    clip-path: circle(150% at 0% 100%);
}
 

#kuliner .gambar-kuliner-tehkembangturi .sliders-kuliner-tehkembangturi {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kuliner .gambar-kuliner-tehkembangturi .sliders-kuliner-tehkembangturi label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kuliner #one-kuliner-tehkembangturi:checked ~ .sliders-kuliner-tehkembangturi label.one-kuliner-tehkembangturi {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .sliders-kuliner-tehkembangturi label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .gambar-kuliner-tehkembangturi input[type="radio"] {
    display: none;
}


 /* kulinerr-cookies */

 #kuliner .judul {
    background: linear-gradient(135deg, #05172f, #003f6c);
    max-width: 100%;

 }

 #kuliner .judul h2{
    margin: 0;
    padding: 0;
    margin-top: 10px;
    font-size: 2rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}


#kuliner .kuliner-cookies{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px;
    align-items: center;
    justify-content: center;
    background: #fff;
}



#kuliner .deskripsi-cookies {
    margin: 0;
    background: linear-gradient(135deg, #f0e6f6, #d0c6e0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    text-align: center;
    height: auto;
    font-family: "Playfair Display", serif;
}

#kuliner .deskripsi-cookies h1 {
    background: linear-gradient(135deg, #05172f, #003f6c);
    border-radius: 10px;
    color: #fff;
    font-size: 1.5em;
    padding: 10px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#kuliner .deskripsi-cookies p {
    color: #000;
    line-height: 1.6;
    font-size: 1em;
    font-family: "Playfair Display", serif;
    text-align: justify;
}

#kuliner .gambar-kuliner-cookies {
    position: relative;
    width: 100%;
    height: 250px;
    rotate: 180deg;

}

#kuliner .gambar-kuliner-cookies .img-kuliner-cookies {
    position: absolute;
    height: 100%;
    width: 100%;
}

#kuliner .gambar-kuliner-cookies .img-kuliner-cookies img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}

#kuliner #one-kuliner-cookies:checked ~ .img-kuliner-cookies.img-1-kuliner-cookies img {
    clip-path: circle(150% at 0% 100%);
}
 

#kuliner .gambar-kuliner-cookies .sliders-kuliner-cookies {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    display: flex;
}

#kuliner .gambar-kuliner-cookies .sliders-kuliner-cookies label {
    height: 13px;
    width: 13px;
    border: 2px solid #fff;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#kuliner #one-kuliner-cookies:checked ~ .sliders-kuliner-cookies label.one-kuliner-cookies {
    width: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .sliders-kuliner-cookies label:hover {
    background: linear-gradient(135deg, #05172f, #003f6c);

}

#kuliner .gambar-kuliner-cookies input[type="radio"] {
    display: none;
}





/* pengurus */


#pengurus {
  
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 20px;


}

.judulbesar-pengurus h1 {
    max-width: 100%;
    font-size:  2.1rem;
    text-align: center;
    font-family: "Playfair Display", serif;
    color: #fff;  
    background: linear-gradient(135deg, #05172f, #003f6c);
    margin: 0;
    padding: 20px 0;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 25px;
}

.pengurus {
    display: flex;
    flex-direction: column;
    rotate: 180deg;
    justify-content: center;
    flex-wrap: wrap; 
    width: 98%;
    border: 2px solid #ddd;  
    border-radius: 10px;  
    background: #f8f8f8;  
    padding: 10px; 
    margin: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
    transition: background 0.3s, border-color 0.3s; 
    margin: 0 auto; 
}



.kiri, .kanan {
    margin: 0;
    padding: 0;
    rotate: 180deg;
}
.kiri {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    padding: 10px;
}

.kiri h1 {
    margin: 0;
    font-size: 1.5em;
    line-height: 1.4;
    text-align: center;
    font-family: "Playfair Display", serif;
    padding: 10px 0;
    color: #333; 
}



.kiri .highlight-2 {
    font-size: 1.2em;
    color: #00bcd4; 
    font-family: "Playfair Display", serif;
    font-weight: bold; 
}

.kiri p {
    font-size: 15px;
    color: #666;  
    line-height: 1.8;
    text-align: justify;
    margin-top: 10px;
}

.highlight-3{
    font-size: 16px;
    color: black; 
    line-height: 1.8;
    text-align: justify;
    text-decoration: underline;
}

.kiri .tombol-pengurus {
    background: #18b7ff;
    color: white;
    text-align: center;
    height: 40px;  
    line-height: 40px;  
    text-decoration: none; 
    display: inline-block;
    padding: 0 20px;  
    font-size: 15px; 
    border-radius: 4px;  
    transition: background-color 0.3s, color 0.3s;  
}

.kiri .tombol-pengurus:hover {
    background: #05172f;
    color: white; 
}

.kanan {
    margin: 0; 
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;  
    padding: 5px;
    margin: 5px;
    border-radius: 8px;
}

.kolase {
    margin: 0; 
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: center;  
    align-items: center; 
    width: 100%;
}

.kolase img {
    
    width: calc(45% - 5px);  
    height: 100px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  
}

.kolase img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); 
}



/* ANGGOTA PENGURUS */
.judul-pokdarwis h1{
    font-family: "Playfair Display", serif;
    font-size: 1.5em;

}
.judul-pengelola h1{
    font-family: "Playfair Display", serif;
    font-size: 1.5em;

}
.anggota h2{
    margin: 0 auto;
    padding: 0;
    font-size: 1em;
    color: #000;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.anggota h3{
    margin: 0 auto;
    padding: 0;
    font-family: "Playfair Display", serif;
    margin-top: 5px;
    font-size: 0.8em;
    color: #333;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.pokdarwis,
.pengelola {
    margin: 20px auto;  
    padding: 20px;  
    display: flex;
    align-items: center;  
    text-align: center;  
    gap: 10px;
    background-color: #05172f;
}


.judul-pokdarwis {
    margin: 0;
    padding: 0;
    background-color: #003f6c;
    text-align: center;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    border-radius: 8px;  
    padding: 10px;  
    flex: 0 0 140px; 
    height: 150px;
    
}


.judul-pengelola {
    margin: 0;
    padding: 0;
    flex: 0 0 140px; 
    background-color: #003f6c;
    text-align: center;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    border-radius: 8px; 
    padding: 10px; 
    height: 150px;
    rotate: 180deg;
}


.anggota-pokdarwis,.anggota-pengelola{
    display: flex;
    gap: 5px;
    overflow: auto;
}

.anggota-pengelola{
    display: flex;
    gap: 5px;
    rotate: 180deg;
    overflow: auto;
}

.pengelola{
    rotate: 180deg;
}


.anggota {
    margin: 6px;
    margin-bottom: 10px; 
    padding: 10px;  
    background-color: #fff;  
    border-radius: 8px;  
    flex: 0 0 180px; 
    height: 120px;  
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);  
    display: flex;  
    flex-direction: column;  
    align-items: center;  
    justify-content: center;  
    transition: transform 0.3s;  
}

.anggota:hover {
    transform: scale(1.05);  
}


 
 /* Gallery */


 
 #gallery{
  
    margin: 10px auto;
    font-family: "Playfair Display", serif;
    
}

#gallery .judul {
    text-align: center;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #05172f, #003f6c);
     max-width: 100%;
}

#gallery .judul-gallery{
    text-align: center;
    justify-content: center;
    align-items: center;
    
}

#gallery .judul-gallery h1 {
    margin: 0;
    padding: 0;
    font-size: 3rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}


#gallery .deskripsi-gallery{
    margin: 0 auto;
    padding: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 700px;
}

#gallery .judul-gallery h2 {
    font-family: 'Cinzel Decorative', serif;
    text-align: center;
    font-size: 1.1em; 
    color: #555;
    margin: 5px;
}


#gallery .judul-gallery p {
    
    font-family: "Playfair Display", serif;
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    font-size: 1em; 
    color: #666;
    line-height: 1.3; 
    margin: 0 auto;
    padding: 0;
    
}

#gallery .judul-gallery p br{
    display: none;
}

#gallery nav {
    display: flex;
    justify-content: center;
    margin: 20px 0; 
    
}

nav .items {
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    justify-content: center; 
    gap: auto;
}

nav .items .item {
    padding: 8px;
    font-size: 11px; 
    font-weight: 500;
    color: #0056b3;
    border: 2px solid #0056b3;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center; 
}



nav .items .active,
nav .items .item:hover{
    color: #fff;
    background: #0056b3;
    border: 1px solid #fff;
    
}

.gallery{
    display: flex;
    flex-wrap: wrap;
    margin: 30px auto;
    max-width: 1100px;
}

.gallery .image{
    padding: 7px;
    width: calc(100% / 1);

}


.gallery .image.hide{
    display: none;
}

.gallery .image.show{
   animation: animate 0.4s ease;
}

@keyframes animate{
    0%{
        transform: scale(0.5);
    }
    100%{
        transform: scale(1);
    }
}

.gallery .image span{
    display: flex;
    width: 100%;
    overflow: hidden;
}
.gallery .image img{
    width: 100%;
    height: 250px;
}


.gallery .image:hover img{
    transform: scale(1.1);
}

.preview-box{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    z-index: 5;
    max-width: 90%;
    opacity: 0;
    pointer-events: none;
    border-radius: 5px;
    padding: 0 5px 5px 5px;
    box-shadow:  0px 0px 15px rgba(0, 0, 0, 0.2);
}

.preview-box.show{
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.preview-box .details{
    display: flex;
    align-items: center;
    padding: 13px 15px 13px 10px;
    justify-content: space-between;
}

.preview-box .details .title{
    display: flex;
    font-size: 18px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
}

.details .title p{
    margin-left: 5px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
}

.details .icon{
    color: #0056b3;
    font-size: 22px;
    cursor: pointer;
}

.preview-box .image-box{
    display: flex;
    width: 100%;
    height: auto;
}

.image-box img{
    width: 100%;
    height: auto;
    border-radius: 0 0 3px 3px;
}

.shadow{
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
   display: none;
    background: rgba(0, 0, 0, 0.4);

}

    /* Kontak */

    #contact{
        background: linear-gradient(135deg, #05172f, #003f6c);


    }

    .contactUs{
        padding: 20px;
    }

    
    .title h2{
        font-size: 1rem;
        text-align: center;
    }

    .box{
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
        "form"
        "info"
        "map";
    }

   

    .formBox .row50{
        display: flex;
        gap: 0;
        flex-direction: column;
    }

    .inputBox{
        width: 100%;
    }

    .contact{
        padding: 30px;
    }

    #contact .map{
        min-height: 300px;
        padding: 0;

    }


    
    




    
}
    
