/* ====================================================
   SEDO Somalia - Custom Site-Wide Styling (Homepage)
   Author: Michael M. David | July 2025
==================================================== */

/* ----------------------------------------
   GENERAL STRUCTURE & TYPOGRAPHY
---------------------------------------- */
body {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  font-family: "Poppins", "Segoe UI", sans-serif;
}

h1, h2, h3, h4 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #088442;
}

p {
  margin-bottom: 20px;
}

/* Section spacing */
.vc_row {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  .vc_row {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Alternate section backgrounds */
.vc_row:nth-child(even) {
  background-color: #f9f9f9;
}

/* ----------------------------------------
   LOGO VISIBILITY FIX (Teal Header)
---------------------------------------- */
.site-header .logo img,
.header .logo img,
.custom-logo-link img {
  background-color: #ffffff;
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
  max-height: 60px;
  height: auto;
  width: auto;
}

/* ----------------------------------------
   TEAM SECTION STYLING
---------------------------------------- */
.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-member img {
  border-radius: 50%;
  max-width: 150px;
  margin: 0 auto 15px;
}

.team-member h4 {
  font-size: 18px;
  margin: 10px 0 5px;
  color: #088442;
}

.team-member p {
  font-size: 14px;
  color: #555;
}

/* ----------------------------------------
   SEDO VIDEOS SECTION - PlayList Style
---------------------------------------- */
.video-playlist img {
  width: 100%;
  margin-bottom: 15px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.video-playlist img:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

.video-featured iframe,
.video-featured video {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

/* ----------------------------------------
   BUTTONS & CALL-TO-ACTION
---------------------------------------- */
.vc_general.vc_btn3 {
  border-radius: 5px;
  padding: 12px 25px;
  font-weight: bold;
  background-color: #088442;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.vc_general.vc_btn3:hover {
  background-color: #066b33;
  transform: scale(1.03);
}

/* ----------------------------------------
   IMAGES & GRIDS
---------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.portfolio-item,
.vc_column-inner {
  padding: 15px;
}

/* ----------------------------------------
   TEXT CONTRAST HELPERS
---------------------------------------- */
.text-light {
  color: #ffffff !important;
}

.text-dark {
  color: #333333 !important;
}

/* ----------------------------------------
   REDUCE EMPTY GAPS BETWEEN ROWS
---------------------------------------- */
.vc_row + .vc_row {
  margin-top: -30px;
}

/* ----------------------------------------
   RESPONSIVE FIXES
---------------------------------------- */
@media (max-width: 768px) {
  .team-member img {
    max-width: 100px;
  }
  
  .vc_general.vc_btn3 {
    font-size: 15px;
    padding: 10px 20px;
  }

  .video-featured iframe {
    height: 250px;
  }
}
body {
  background-color: yellow !important;
}