/* Full CSS - Updated for HOTSHOT Podcast Section (Text Right of Image) */

/* Global Styles */
body {
  margin: 0;
  background: #0E0E0E;
  color: #ffffff;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Offset main content for fixed header */
main {
  margin-top: 80px;
  text-align: center;
}

/* Header */
header.logistx-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(14, 14, 14, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  z-index: 9999;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #2EC5B6;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  width: 100px; /* Make logo smaller by adjusting width */
  height: auto;
  max-width: 100%; /* Ensure it scales proportionally */
  max-height: 54px; /* Limit the height if needed */
}

/* Main nav */
nav.main-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.main-nav li a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.85rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav.main-nav li a:hover {
  color: #2EC5B6;
  text-shadow: 0 0 6px rgba(46, 197, 182, 0.6);
}

.main-nav a.active {
  color: #00aced;
  border-bottom: 2px solid #00aced;
}

/* Optional social links group */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #6C3BAA;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #2EC5B6;
  transform: scale(1.1);
}

/* Header underline gradient */
.logistx-header::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #6C3BAA, #2EC5B6);
}

/* Welcome Section */
#welcome-section .inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

#welcome-section h2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#welcome-section p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #ddd;
}

/* Fast, Reliable Hotshot Trucking Services Section */
#seo-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

#seo-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

#seo-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
}

#seo-content hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 2em 0;
}

/* America First Section */
#america-first-banner {
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
  color: #FFD700;
  text-align: center;
  padding: 0;
  border-top: 2px solid #FFD700;
  border-bottom: 2px solid #FFD700;
  font-family: 'Raleway', sans-serif;
}

#america-first-banner img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

/* Dispatch Section */
#hiring-cta {
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
  color: #FFD700;
  text-align: center;
  padding: 60px 20px;
  border-top: 2px solid #FFD700;
  border-bottom: 2px solid #FFD700;
  font-family: 'Raleway', sans-serif;
}

#hiring-cta img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* Podcast Spotlight Section */
#podcast-spotlight {
  display: flex;
  flex-direction: row; /* Align content horizontally */
  justify-content: flex-start; /* Align both image and text to the left */
  align-items: center; /* Center vertically */
  gap: 2rem; /* Space between image and text */
  padding: 2rem;
}

#podcast-spotlight .image {
  flex: 0 0 40%;  /* Image takes 40% of the space */
  max-width: 40%;
}

#podcast-spotlight .image img {
  width: 100%; /* Image will fill its container */
  height: auto;
  border-radius: 8px;  /* Optional: rounded corners */
}

#podcast-spotlight .content {
  flex: 1;  /* Content takes the remaining 60% */
  max-width: 60%;
  text-align: left; /* Align text to the left */
}

#podcast-spotlight .content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

#podcast-spotlight .content p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Footer */
#footer {
  padding: 6em 0 4em 0;
  background-color: #1d242a;
  text-align: center;
}

#footer .icons {
  font-size: 1.25em;
}

#footer .icons a {
  color: rgba(255, 255, 255, 0.5);
}

#footer .icons a:hover {
  color: #fff;
}

#footer .copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8em;
  letter-spacing: 0.225em;
  list-style: none;
  padding: 0;
  text-transform: uppercase;
}

#footer .copyright li {
  border-left: solid 1px rgba(255, 255, 255, 0.5);
  display: inline-block;
  line-height: 1em;
  margin-left: 1em;
  padding-left: 1em;
}

#footer .copyright li:first-child {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}

#footer .copyright li a {
  color: inherit;
}

#footer .copyright li a:hover {
  color: #fff;
}

@media screen and (max-width: 980px) {
  #footer {
    padding: 4em 3em 2em 3em;
  }
}

@media screen and (max-width: 736px) {
  #footer {
    padding: 3em 2em 1em 2em;
  }
}

/* Cookie Consent Banner */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #eee;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  padding: 16px 22px;
  text-align: center;
  border-top: 1px solid #333;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  transition: all 0.7s ease;
}

#cookie-banner.show {
  display: block;
  opacity: 1;
  bottom: 0;
}

#cookie-banner a {
  color: #00bfa5;
  text-decoration: underline;
}

#cookie-banner button {
  margin-left: 12px;
  background: #00bfa5;
  border: none;
  color: #000;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.1s ease;
}

#cookie-banner button:hover {
  background: #03e2c6;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  #cookie-banner {
    font-size: 13px;
    padding: 14px;
  }

  #cookie-banner button {
    display: block;
    margin: 10px auto 0 auto;
  }
}
