/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Fix mobile dropdown submenu background and text color */
.main-navigation .main-nav ul ul {
    background-color: #0d1117; /* match your main nav background */
}

.main-navigation .main-nav ul ul li a {
    color: #ffffff;
    padding: 10px 15px;
    display: block;
}

.main-navigation .main-nav ul ul li a:hover {
    background-color: #1a1a1a;
    color: #00ff99; /* optional highlight */
}

.drew-hero-img {
  text-align: center;
  position: relative;
  z-index: 1;
}

.drew-hero-img .hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.drew-overlay-content {
  margin: -40px auto 30px;
  background-color: rgba(13, 17, 23, 0.85);
  padding: 25px;
  border-radius: 6px;
  color: #fff;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  z-index: 2;
}

.drew-overlay-content p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.drew-features {
  list-style-type: disc;
  text-align: left;
  margin: 0 auto 1.5rem;
  max-width: 580px;
  padding-left: 1.2rem;
}

.drew-features li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.drew-button-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.drew-btn {
  background: #10b981;
  color: #ffffff !important;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-align: center;
  min-width: 140px;
  display: inline-block;
}

.drew-btn:hover {
  background: #059669;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.trust-row img {
  height: 22px;
}

/* Stack buttons vertically on small screens */
@media (max-width: 500px) {
  .drew-button-row {
    flex-direction: column;
    align-items: center;
  }

  .drew-btn {
    width: 100%;
    max-width: 260px;
  }
}
