/* Import font Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* ======================
   HERO SECTION
====================== */

.hero-section {
  background: linear-gradient(135deg, #0a1a2f, #142f50);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.radial-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
  z-index: 1;
  opacity: 0.4;
  backdrop-filter: blur(0.5px);
}

.hero-text {
  z-index: 2;
  color: #fff;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 550;
  letter-spacing: 6px;
  margin-bottom: 0.5rem;
}

.hero-text .subtitle {
  font-size: 3.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fbfeff;
  font-weight: 800;
}

.hero-text .tagline {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  color: #b6c9de;
  font-weight: 300;
}


/* ======================
   JUDUL SECTION
====================== */

/* Section Title */
.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
    position: relative;
}

/* ======================
   GALERI SECTION
====================== */
/* === Galeri Section === */
.content-section {
    background: linear-gradient(to bottom, #f9fbff, #ffffff);
}

.galeri-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #dee2e6;
}

.galeri-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: #0d6efd55;
}

.galeri-img-wrapper {
    overflow: hidden;
    border-radius: 0.75rem;
}

.galeri-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeri-card:hover .galeri-img-wrapper img {
    transform: scale(1.05);
}

.logo-galeri-mini {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.judul-galeri {
    font-weight: 600;
    color: #0d2c5a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.deskripsi-galeri {
    font-size: 0.9rem;
    color: #555;
}

.btn-outline-primary {
    border-radius: 20px;
    font-size: 0.85rem;
    transition: 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
}

/* Tombol Unduh */
.btn-outline-primary {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.btn-google-foto {
    background-color: #152541; /* Warna khas Google Foto */
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-google-foto:hover {
    background-color: #1b398d; /* Warna lebih gelap saat hover */
    color: white;
    text-decoration: none;
}

.btn-google-foto i {
    margin-right: 6px;
}


/* Responsive spacing */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .judul-galeri {
        font-size: 1rem;
    }

    .deskripsi-galeri {
        font-size: 0.9rem;
    }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.fade-up-delay-1 { animation-delay: 0.2s; }
.fade-up-delay-2 { animation-delay: 0.4s; }
.fade-up-delay-3 { animation-delay: 0.6s; }
.fade-up-delay-4 { animation-delay: 0.8s; }
.fade-up-delay-5 { animation-delay: 1s; }
.fade-up-delay-6 { animation-delay: 1.2s; }
