/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f5f5f5;
  color: #222;
  scroll-behavior: smooth;
}

/* Navbar */
header {
  background: #1e1e1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 3em;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}

.logo span {
  color: #90ee90;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #90ee90;
}

.contact {
  background: #333;
  padding: 0.5em 1em;
  color: #fff;
  border-radius: 5px;
  font-size: 0.9em;
  margin-top: 10px;
}

/* Hero Section */
.hero {
  background-image: url('/images/Humming-herd-banner.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  padding: 2em;
}

.hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 0.5em;
}

.hero-content p {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto;
}

/* Section Styling */
.section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5em 3em;
  background: white;
  flex-wrap: wrap;
}

.alt-bg {
  background: #f9f9f9;
}

.content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 2em;
  align-items: center;
  justify-content: center;
}

.text {
  flex: 1;
  min-width: 280px;
}

.text h2 {
  font-size: 2em;
  margin: 0.5em 0;
}

.text p {
  margin: 1em 0;
  line-height: 1.6;
}

.subheading {
  text-transform: uppercase;
  font-size: 0.9em;
  color: #888;
  letter-spacing: 1px;
}

.columns {
  display: flex;
  gap: 3em;
  margin-top: 1em;
  flex-wrap: wrap;
}

.columns ul {
  list-style: none;
  padding: 0;
}

.columns li {
  margin: 0.5em 0;
  color: #555;
}

.content img {
  flex: 1;
  max-width: 100%;
  border-radius: 10px;
}

/* Footer */
.dt-footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
}

.dt-logo-section {
  margin-bottom: 20px;
}

.dt-logo {
  max-height: 40px;
  margin-bottom: 10px;
}

.dt-partners img {
  height: 30px;
  margin: 0 5px;
}

.dt-contact {
  margin: 20px 0;
  font-size: 18px;
}

.dt-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.dt-contact i {
  margin-right: 8px;
}

.dt-nav {
  margin: 20px 0;
}

.dt-nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
  font-size: 14px;
}

.dt-description {
  max-width: 600px;
  margin: 20px auto;
  font-size: 14px;
  line-height: 1.6;
}

.dt-address p {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.4;
}

.dt-social a {
  color: #fff;
  font-size: 20px;
  margin: 0 10px;
}

.dt-copy {
  margin-top: 30px;
  font-size: 12px;
  color: #ccc;
}

/* Responsive Media Queries */

/* Tablets */
@media (max-width: 992px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .hero-content h1 {
    font-size: 2.5em;
  }

  .columns {
    flex-direction: column;
    gap: 1em;
  }

  .content {
    flex-direction: column;
  }
}

/* Mobile Phones */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .footer-wrapper,
  .columns,
  .content,
  .call-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col,
  .call-section,
  .social-icons,
  .footer-logo {
    max-width: 100%;
    flex: 1 1 100%;
  }

  nav ul {
    width: 100%;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 1em;
  }
}