:root {
  --primary-color: #d4af37; /* Elegant Gold */
  --text-color: #f4f4f4;
  --bg-overlay: rgba(0, 0, 0, 0.75);
  --font-heading: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: #0a0a0a;
  background-image: url("https://images.unsplash.com/photo-1478131143081-80f7f84ca84d?q=80&w=1920&auto=format&fit=crop"); /* Camping/Starry Night */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Overlay to darken background for readability */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-overlay);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

/* Header & Logo */
header {
  width: 100%;
  padding-top: 2rem;
}

.logo-container {
  margin-bottom: 1rem;
}

.logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%; /* Optional: circular logo */
  border: 2px solid var(--primary-color);
  padding: 5px;
  /* background: rgba(255, 255, 255, 0.05); Hapus background ini jika logo sudah ada background */
  opacity: 0.85; /* Memberikan efek sedikit transparan */
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 1; /* Logo menjadi jelas saat di-hover */
}

/* Main Content */
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.content {
  max-width: 800px;
  padding: 2rem;
  animation: fadeIn 1.5s ease-out;
}

h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}

.description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: #e0e0e0;
}

/* Buttons */
.cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #000;
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background-color: #fff;
  color: #000;
}

/* Footer */
footer {
  width: 100%;
  padding-bottom: 2rem;
  font-size: 0.9rem;
  color: #888;
}

.social-icons {
  margin-bottom: 1rem;
}

.social-icons a {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .container {
    padding: 1.5rem;
  }

  .logo {
    width: 100px;
    height: 100px;
  }

  .content {
    padding: 1rem;
  }

  .description {
    font-size: 1rem;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
  }
}
