/* ====== RESET & GLOBAL ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  margin: 0;
  background: url('../images/camp.jpg') center/cover fixed no-repeat;
  
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1, h2, h3, .logo, .navbar nav a {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


/* ====== NAVBAR (mirip fanspage Madrid) ====== */
.navbar {
  background: linear-gradient(90deg, #0b1a4a, #2346a0);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar nav a {
  text-decoration: none;
  color: #e5e9ff;
  margin-left: 20px;
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
}

.navbar nav a:hover {
  color: #ffffff;
  border-color: #ffd800; 
}

/* ====== LAYOUT CONTENT ====== */
main {
  max-width: 1100px;
  margin: 24px auto 32px;
  padding: 0 16px;
}

/* ====== HERO HOME ====== */
.hero {
  background: url('../images/camp.jpg') center/cover no-repeat;
  border-radius: 16px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.7)
  );
}

.hero-text {
  position: relative;
  padding: 24px;
  color: #ffffff;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.hero-text p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ====== BUTTON ====== */
.btn-primary {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 20px;
  background: #ffd800; 
  color: #0b1a4a;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}

.btn-primary:hover {
  background: #ffe658;
  transform: translateY(-1px);
}
/* ====== ABOUT ====== */

.about-section h1,
.about-section h2,
.about-section p,
.about-section li {
  color: #ffffff;
}

.visi-image-wrapper {
  display: flex;
  justify-content: left;
  margin: 16px 0 20px;
}

.visi-image {
  max-width: 380px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
  object-fit: cover;
}

/* ====== SECTION & CARD STYLE ====== */
section {
  margin-top: 24px;
}

.content h1,
.content h2 {
  color: #0b1a4a;
  margin-bottom: 12px;
}

.content p {
  line-height: 1.6;
  font-size: 0.98rem;
}


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.08);
}

.card h3 {
  color: #2346a0;
  margin-bottom: 6px;
  font-size: 1rem;
}

.card p {
  font-size: 0.9rem;
}

/* ====== TABEL TRIP ====== */
.table-trip {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.08);
}

.table-trip th,
.table-trip td {
  padding: 10px 12px;
  font-size: 0.9rem;
}

.table-trip thead {
  background: #2346a0;
  color: #ffffff;
  text-align: left;
}

.table-trip tbody tr:nth-child(even) {
  background: #f2f4ff;
}

/* ====== GALERI ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.15);
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.15);
}

.gallery-caption {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #1f2933;
}


/* ====== FORM KONTAK ====== */
.form-kontak {
  margin-top: 8px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
  max-width: 420px;
}

.form-kontak label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #0b1a4a;
}

.form-kontak input,
.form-kontak textarea {
  width: 100%;
  margin-top: 5px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #c3c8e5;
  font-size: 0.9rem;
}

.form-kontak input:focus,
.form-kontak textarea:focus {
  outline: none;
  border-color: #2346a0;
  box-shadow: 0 0 0 2px rgba(35,70,160,0.15);
}

.alert {
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #e0f7e9;
  color: #0a7a31;
  font-size: 0.9rem;
}

/* ====== FOOTER ====== */
.footer {
  text-align: center;
  font-size: 0.85rem;
  padding: 12px;
  background: #0b1a4a;
  color: #e5e9ff;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 720px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .navbar nav a {
    margin-left: 0;
    margin-right: 16px;
  }

  .hero {
    min-height: 260px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }
}
