/* Custom styles for the Hawaii Corporate Holding Company website */

/* Header */
header {
  /* background-color: #007bff; */
  color: #fff;
  padding: 20px;
  text-align: center;
  background-image: url('https://picsum.photos/1000/300?random=6');
  background-size: cover; height:480px; padding-top:80px;
}

header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* Main Content */
main {
  margin: 20px;
}

section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

section p {
  line-height: 1.5;
}

section ul {
  list-style-type: disc;
  margin-left: 20px;
}

/* Subsidiaries Section */
section#subsidiaries {
  margin-top: 40px;
}

section#subsidiaries h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}

section#subsidiaries .card {
  transition: transform 0.3s ease;
}

section#subsidiaries .card:hover {
  transform: translateY(-5px);
}

/* Footer */
footer {
  background-color: #f8f9fa;
  padding: 10px;
  text-align: center;
}
.card-pop {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;

  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
.profilePic
{
max-width: 400px;
max-height: 400px;
}
/* Media Queries */
@media (max-width: 576px) {
  header h1 {
    font-size: 28px;
  }

  section h2 {
    font-size: 22px;
  }
}
