@import url('../fonts/font.css');

/* Base styling for Gopark Securities */
body {
  margin: 0;
  padding: 0;
  font-family: Gabarito-Regular, Arial, sans-serif;
  background-color: white;
}

/* Hero Section */
.securities_hero_div {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: black;
  background-image: url('../images/securities_hero.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  box-sizing: border-box;
}

.securities_hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.securities_hero_content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.securities_hero_title {
  font-size: 3em;
  margin-bottom: 10px;
  font-family: Gabarito-Regular;
  color: rgb(71, 147, 196);
}

.securities_hero_subtitle {
  font-size: 1.5em;
  font-weight: 300;
  margin-bottom: 15px;
  font-family: Gabarito-Regular;
}

.securities_hero_text {
  font-size: 1.1em;
  line-height: 1.6;
  font-family: Gabarito-Regular;
}

/* Features Section */
.securities_features_div {
  padding: 60px 20px;
  background-color: white; /* to match base theme */
  text-align: center;
}

.section_title {
  font-size: 2.5em;
  color: black;
  margin-bottom: 40px;
  font-family: Gabarito-Regular;
}

.features_container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.feature_card {
  background: white;
  border-radius: 5px;
  border: 4px solid rgb(71, 147, 196);
  padding: 0;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.feature_card:hover {
  transform: translateY(-5px);
}

.feature_img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.feature_title {
  font-size: 1.4em;
  color: black;
  margin-bottom: 15px;
  font-family: Gabarito-Regular;
  padding: 0 15px;
}

.feature_description {
  color: #333;
  line-height: 1.5;
  font-family: Gabarito-Regular;
  padding: 0 15px 30px 15px;
}

/* CTA Section */
.securities_cta_div {
  background-color: rgb(47,47,47); /* dark gray from theme */
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta_title {
  font-size: 2em;
  margin-bottom: 20px;
  font-family: Gabarito-Regular;
  color: rgb(71, 147, 196);
}

.cta_text {
  font-size: 1.2em;
  margin-bottom: 30px;
  font-family: Gabarito-Regular;
}

.contact_btn {
  background-color: rgb(71, 147, 196);
  color: black;
  border: none;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
  font-family: Gabarito-Regular;
}

.contact_btn:hover {
  background-color: black;
  color: rgb(71, 147, 196);
  transition: 0.5s;
}
