* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #e0f7fa;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #d0f0f9;
  padding: 15px 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px; 
}

.logo img {
  height: 50px;
  width: auto;
}

.logo span {
  font-size: 80px;
  font-weight: bold;
  color: #000;
}



nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #000;
}

nav ul li a:hover {
  text-decoration: underline;
}

:root {
  --bg-light: #f0faff;
  --text-light: #333;
  --bg-dark: #1c1c1c;
  --text-dark: #f0f0f0;
  --highlight: #f4c542;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: var(--bg-light);
  color: var(--text-light);
  transition: background-color 0.3s, color 0.3s;
}

.dark-mode {
  background-color: var(--bg-dark);
  color: var(--text-dark);
}

.container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.dark-mode .container {
  background: #2c2c2c;
}

.navbar {
  position: sticky;
  top: 0;
  background: #0077b6;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.navbar .logo {
  font-size: 18px;
  font-weight: bold;
}

#theme-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.breadcrumb {
  background: #e8f7ff;
  padding: 10px 20px;
  font-size: 14px;
  color: #555;
}

.breadcrumb .active {
  font-weight: bold;
}

h1 {
  font-size: 24px;
  margin-top: 0;
}

.images-row {
  display: flex;
  gap: 100px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.hover-image {
  transition: transform 0.3s ease;
  cursor: zoom-in;
  width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.hover-image:hover {
  transform: scale(1.03);
}

.img-danau, .img-map {
  flex: 1 1 300px;
  width: 100%;
  border-radius: 6px;
}

.img-full {
  width: 100%;
  margin-top: 2px;
  border-radius: 61px;
  width: 100%;       
  height: auto;      
  max-width: 600px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.rating {
  margin: 15px 0;
  font-size: 18px;
}

.stars {
  display: inline-block;
  cursor: pointer;
  color: var(--highlight);
  font-size: 22px;
}

.stars span:hover,
.stars span:hover ~ span {
  color: #ccc;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
}

.close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #f1f1f1;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 20px;
  }

  .images-row {
    flex-direction: column;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 15px;
  }

  .stars {
    font-size: 18px;
  }
}

body {
  font-family: Arial, sans-serif;
  background-color: #c6f4ff;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

.images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.images img {
  border-radius: 15px;
  object-fit: cover;
}

.img-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
}

.img-rect {
  width: 300px;
  height: 250px;
}

.info-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.section {
  flex: 1 1 300px;
  margin: 10px;
  text-align: left;
}

.section h3 {
  margin-bottom: 10px;
}

.social a {
  display: block;
  color: #000;
  margin-bottom: 5px;
  text-decoration: none;
}

.contact a {
  color: #000;
  text-decoration: none;
}

.location {
  margin-top: 15px;
  font-weight: bold;
}

.note {
  margin-top: 5px;
}

.main-footer {
    background-color: #1c1c1c;
    color: white;
    padding: 2rem 1rem;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-about,
  .footer-links,
  .footer-service {
    flex: 1;
    min-width: 250px;
    margin: 1rem;
  }
  
  .footer-about h3,
  .footer-service h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
  }
  
  .footer-about p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
  }
  
  .footer-links ul {
    list-style-type: disc;
    padding-left: 1rem;
  }
  
  .footer-links li {
    margin: 0.5rem 0;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #90caf9;
  }
  
  .footer-service .contact-item {
    background-color: #ccc;
    color: #000;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    border-radius: 5px;
    font-size: 0.9rem;
    word-wrap: break-word;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-about,
    .footer-links,
    .footer-service {
      margin: 1rem 0;
    }
  
    .footer-links ul {
      padding-left: 0;
      list-style-position: inside;
    }
  }