/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #fdfdfd, #f7f3e9);
  color: #333;
  overflow-x: hidden;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 100%;
  z-index: 10;
}

.logo {
  font-size: 30px;
  color: #f4a523;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 5px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  transition: 0.3s;
}

.nav-links a:hover {
  border-top-color: #f4a523;
  border-bottom-color: #f4a523;
  color: black;
}

.contact-button {
  padding: 10px 20px;
  background-color: #f4a523;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 20px;
}

.contact-button:hover {
  background-color: transparent;
  color: black;
  border: 2px solid #f4a523;
}

/* Main Section */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  margin: 120px auto 0;
}

.intro {
  max-width: 45%;
  margin-left: 50px;
}

.intro .hello {
  margin-top: -20px;
  color: black;
}

.intro h1 {
  font-size: 56px;
  color: #f4a523;
  margin-bottom: 10px;
  line-height: 1.2;
}

.intro h2 {
  font-size: 18px;
  color: black;
  font-weight: normal;
  margin-bottom: 15px;
}

.intro p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.button {
  background-color: #f4a523;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 20px;
  text-decoration: none;
}

.button:hover {
  background-color: transparent;
  color: black;
  border: 2px solid #f4a523;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: #333;
  font-size: 20px;
  border: 1px solid #333;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s;
}

.social-icons a:hover {
  color: #f4a523;
  border-color: #f4a523;
}

/* Image and Info Boxes */
.image-container {
  /* background-image: url('assets/img/16135720e5f5883fe40eba65f359e043.jpg'); */
  position: relative;
  width: 400px;
  height: 500px;
  margin-right: 50px;
  /* background: #f4f4f4; */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

/* Decorative Background */
.decorative-background {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: linear-gradient(135deg, #f4a523);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.2;
}

.info-box {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-box span {
  font-size: 24px;
  color: #f4a523;
  font-weight: bold;
}

.info-box.top-left {
  top: 15%;
  left: 90px;
  transform: translateX(-50%);
}

.info-box.bottom-right {
  bottom: 15%;
  right: 90px;
  transform: translateX(50%);
}

/* Footer Styles */
footer {
  background-color: #1a1a1a;
  /* Dark background color */
  color: #cccccc;
  /* Light text color */
  padding: 5px 0;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1px;
  padding: 2px 5px;
  /* padding-bottom: 10px; */
}

.footer-logo img {
  width: 40px;
  /* Adjust logo size */
  margin-bottom: 10px;
}

.footer-logo p {
  max-width: 500px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #cccccc;
}

.footer-logo h2 {
  color: #f4a523;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-social-icons a {
  color: #cccccc;
  font-size: 16px;
  color: #f4a523;
}

.footer-social-icons a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  padding-top: 5px;
  font-size: 12px;
  color: #cccccc;
  border-top: none;
  /* Remove any line or border */
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 12px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Hide navigation links container on mobile */
.nav-links-container {
  display: flex;
}

.menu-toggle {
  display: none;
  /* Hidden on desktop */
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #f4a523;
}

/* Mobile View */

@media (max-width: 768px) {
  /* Show the hamburger icon on mobile */
  .menu-toggle {
    display: block;
  }

  /* Main Section */
  .container {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 60px auto 0;
  }

  /* Set the image to appear first */
  .image-container {
    order: 1; /* Image will come first */
    width: 80%;
    height: auto;
    margin: 0 auto 20px;
  }

  /* Set the text to appear after the image */
  .intro {
    order: 2; /* Text will come after the image */
    max-width: 100%;
    text-align: center;
    margin: 0 auto 20px;
  }

  .intro h1 {
    font-size: 36px;
  }

  .intro h2 {
    font-size: 16px;
  }

  .intro p {
    font-size: 14px;
  }

  .button {
    padding: 8px 16px;
    font-size: 14px;
  }

  .social-icons {
    justify-content: center;
  }

  /* Hide nav links container initially on mobile */
  .nav-links-container {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links a {
    padding: 10px 20px;
    font-size: 18px;
    width: 100%;
    text-align: center;
    color: #333;
    font-weight: 500;
  }

  .social-icons {
    justify-content: center;
  }

  /* Image and Info Boxes */
  .image-container {
    width: 80%;
    height: auto;
    margin: 0 auto 20px;
  }

  .info-box {
    font-size: 12px;
    padding: 8px 15px;
  }

  .info-box span {
    font-size: 18px;
  }

  .info-box.top-left {
    top: 10%;
    left: 30px;
  }

  .info-box.bottom-right {
    bottom: 10%;
    right: 30px;
  }

  /* Footer */
  footer {
    padding: 15px 0;
  }

  .footer-content {
    padding: 10px;
    padding-bottom: 5px;
  }

  .footer-logo img {
    width: 30px;
    /* Adjusted for smaller screens */
  }

  .footer-logo p {
    font-size: 12px;
  }

  .footer-logo h2 {
    font-size: 20px;
  }

  .footer-social-icons {
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 5px 10px;
    text-align: center;
  }

  .footer-links {
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links a {
    font-size: 12px;
  }
}
