body {
  margin: 0;
  font-family: 'Comfortaa';
  background: url("subtle_pattern.jpg");
}

.navbar {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 70px;
  max-width: 100%;
  margin-right: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-weight: 700;
  font-size: 2.5em;
}

.logo-sub {
  font-size: 1.15em;
  font-weight: 800;
}

.nav-container {
  display: flex;
  justify-content: flex-end;
  align-items: center; /* Vertically center the items */
  position: relative;
}

.nav-links {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 1.1em;
  margin-left: 50px;
  color: black;
  transition: color 0.3s ease, font-weight 0.3s ease, background-position 0.3s ease;
  background-image: linear-gradient(to right, transparent, transparent);
  background-size: 200% 100%;
  background-position: 0 0;
}

.nav-links a:hover {
  color: #007bff;
  font-weight: 600;
}

.nav-links a.active {
  font-weight: bold;
  background-image: linear-gradient(to right, #a88734, #d9ac5a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero {
  height: 50vh;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 40px;
}

.hero-left {
  flex: 1;
  color: #d11a2a;
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.2;
  padding-left: 5px;
}

.hero-right {
  flex: 1.3;
  font-family: 'Comfortaa', cursive;
}

.hero-right p {
  line-height: 1.6;
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  hyphens: auto;
}

.we-are-good-at h2 {
  margin-bottom: 25px;
  color: black;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-weight: bold;
}

.good-at-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  font-size: 1.2em;
}

.good-at-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.good-at-item i {
  font-size: 1em;
  /* Adjust icon size if needed */
}

.gradient-text {
  background-image: linear-gradient(to right, #a88734, #d9ac5a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 3em;
  font-weight: bold;
  line-height: 1.2;
}

.footer {
  background: linear-gradient(to bottom, #fafafa, #f0f0f0);
  color: #333;
  padding: 20px 20px;
  margin: 0;
  font-size: 0.9em;
  height: auto;
  line-height: 1.5;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 5px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 1.2em;
  color: #000;
}

.footer-section p,
.footer-section a {
  line-height: 1.4;
  color: #555;
}

.footer-section a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #d11a2a;
}

.social-links h3 {
  margin-bottom: 15px;
  font-size: 1.5em;
  color: black;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  list-style: none;
  /* Remove bullet points */
  padding: 0;
  /* Remove default padding */
}

.social-icons li {
  /* Style the list items */
  margin: 0 10px;
  /* Add spacing between icons */
}

.social-icons a {
  display: inline-block;
  color: black;
  font-size: 2.5em;
  transition: color 0.4s ease;
}

.social-icons a:hover {
  color: #a88734;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-list i {
  color: black;
  margin-right: 10px;
  font-size: 1.2em;
}

.address-section {
  text-align: center;
}

.address-section p {
  margin-bottom: 5px;
}

/* Responsive design for footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 30px;
  }

  .navbar .logo {
    justify-content: flex-start; /* Align logo to the left */
  }
}

/* Hamburger Menu Icon */
.hamburger {
  display: none;    /* Hide by default on larger screens */
  cursor: pointer;
  font-size: 2em;   /* Slightly bigger icon */
  position: absolute;
  top: -60px;
  left: 310px;     /* Moved to top left */
}

/* Media Query for Mobile-Friendly Design */
@media (max-width: 768px) {
  .hamburger {
    display: block;     /* Show hamburger icon on mobile */
  }

  .nav-container { 
    display: block; /* This will make the hamburger visible */
    position: relative; /* To allow absolute positioning of the nav-links */
  }

    .nav-links {
        display: none; /* Hide the navigation links by default */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Position below the navbar */
        right: 0;
        left: 0;
        width: 100vw;
        background-color: 0 2px 5px #ddd;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 10px;
        border-bottom: 2px solid #ddd;
        background-color: #fafafa;
    }

  .nav-links.show {
    display: flex;
  top: -10px;
  left: 210px; 
    /* Show the links when the icon is clicked */
  }

    .nav-links a {
        margin: 10px 0;
        text-align: center;
        display: block; /* Make each link a block element */
        padding: 15px 20px; /* Add padding for better spacing and touch targets */
        border-top: 2px solid #ddd; /* Add a top border to each link */
        width: 100%; /* Make links take full width */
        text-align: left; /* Align text to the left */
    }

  .navbar {
    flex-direction: column;
    /* Stack navbar elements */
    height: auto;
top : 15px;
    align-items: flex-start;
    /* Allow navbar to adjust height */
  }

  .logo {
    margin-bottom: 10px;
    /* Add space between logo and nav */
  }



  .nav-links {
    align-items: center;
    /* Center nav links */
  }

  .nav-links a {
    margin: 5px 10px;
    /* Adjust spacing for smaller screens */
  }

  .hero {
    height: auto;
    /* Allow hero to adjust height */
    padding: 20px;
    /* Reduce padding */
  }

  .hero-left {
    font-size: 1.4em;
    /* Slightly smaller font size */
  }

  .hero-right p {
    font-size: 1em;
    /* Slightly smaller font size */
  }

  .good-at-items {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Adjust grid for smaller items */
  }

  .footer-section {
    margin-bottom: 20px;
    /* Add space between footer sections */
  }

  .navbar .logo {
    justify-content: flex-start;
    /* Align logo to the left */
  }

  .good-at-items {
    justify-content: center;
    /* Center items in mobile view */
  }

  .social-icons {
    justify-content: center;
    /* Center icons in mobile view */
  }

  .hero-content {
    flex-direction: column;
    /* Stack elements vertically on smaller screens */
  }

  .hero-left {
    text-align: center;
    /* Center text on smaller screens */
  }

  .hero-right {
    text-align: center;
    /* Center text on smaller screens */
  }
}