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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  ),
  /*url('https://images.unsplash.com/photo-1503220317375-aaad61436b1b?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940') center/cover no-repeat;*/
 url(' photo-1503220317375-aaad61436b1b.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 2rem;
  color: white;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
}

.hero-content {
  max-width: 600px;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 180px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
  background: linear-gradient(135deg, #ff5722, #f57c00);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid #ff6b35;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.palm-leaf {
  position: absolute;
  opacity: 0.6;
}

.palm-left {
  top: 10%;
  left: -5%;
  width: 200px;
  height: 400px;
  transform: rotate(-15deg);
  animation: sway 6s ease-in-out infinite;
}

.palm-right {
  top: 5%;
  right: -5%;
  width: 180px;
  height: 360px;
  transform: rotate(15deg);
  animation: sway 6s ease-in-out infinite reverse;
}

.birds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bird {
  position: absolute;
  width: 30px;
  height: 15px;
  animation: fly 15s linear infinite;
}

.bird-1 {
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}

.bird-2 {
  top: 20%;
  left: -10%;
  animation-delay: 2s;
}

.bird-3 {
  top: 25%;
  left: -10%;
  animation-delay: 4s;
}

.branding {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  z-index: 3;
}

.made-with {
  color: #666;
}

.gamma-text {
  color: #4285f4;
  font-weight: 700;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sway {
  0%, 100% {
    transform: rotate(-15deg) translateX(0);
  }
  50% {
    transform: rotate(-10deg) translateX(10px);
  }
}

@keyframes fly {
  0% {
    transform: translateX(-50px) translateY(0);
  }
  25% {
    transform: translateX(25vw) translateY(-20px);
  }
  50% {
    transform: translateX(50vw) translateY(10px);
  }
  75% {
    transform: translateX(75vw) translateY(-15px);
  }
  100% {
    transform: translateX(calc(100vw + 50px)) translateY(5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 0 1rem;
    text-align: center;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    min-width: 160px;
    padding: 0.9rem 1.5rem;
  }
  
  .palm-left,
  .palm-right {
    display: none;
  }
  
  .branding {
    bottom: 1rem;
    right: 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-section {
    background-image: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    /*url('https://images.unsplash.com/photo-1503220317375-aaad61436b1b?auto=compress&cs=tinysrgb&dpr=2&h=1300&w=1880');*/
    url(' photo-1503220317375-aaad61436b1b.jpeg');
  }
}

/* 11122025 */
  .logo-inside-hero {
      position: absolute;
      top: 25px;
      left: 25px;
      z-index: 5; /* di atas background, di bawah konten */
    }
    
    .logo-inside-hero img {
      height: 35px;        /* kecil & rapi */
      object-fit: contain;
      opacity: 0.9;        /* opsional, biar lebih menyatu */
    }
