/* assets/css/style.css */

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #003366;
}

p {
  margin-bottom: 15px;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

.navbar-brand {
  font-weight: 700;
  font-size: 26px;
  color: #003366 !important;
}

.nav-link {
  color: #003366 !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #ff6600 !important;
}

.container {
  max-width: 1200px;
  padding: 20px;
  margin: auto;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

img:hover {
  transform: scale(1.03);
}

footer {
  background-color: #f5f5f5;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ddd;
}

.btn-primary {
  background-color: #003366;
  border-color: #003366;
  color: #fff;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #ff6600;
  border-color: #ff6600;
}

@media (max-width: 992px) {
  .navbar-brand {
    font-size: 22px;
  }
  h1 {
    font-size: 32px;
  }
  .container {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .navbar-brand {
    font-size: 20px;
  }
  h1 {
    font-size: 28px;
  }
  .container {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .navbar-brand {
    font-size: 18px;
  }
  h1 {
    font-size: 24px;
  }
  footer {
    font-size: 12px;
  }
  .feature-card {
  padding: 20px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  cursor: pointer;
}
/* Styling untuk container iframe */
.iframe-container {
  position: relative;
  overflow: hidden;
  padding: 8px; /* Memberi sedikit padding di sekitar iframe */
  background-color: #fff;
  border: 1px solid #dee2e6;
}

/* Styling untuk iframe Google Sheet */
.google-sheet-iframe {
  width: 100%;
  height: 80vh; /* Tinggi iframe adalah 80% dari tinggi layar browser */
  border: none; /* Menghilangkan border default dari iframe */
}
}
