body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white; 
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #313131;
  background-color: white;    
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-size: 3rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline;
}

.logo img {
  height: 100px; 
  width: auto;
}

.nav-links a {
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
  color: #313131;
}

.nav-links a:hover {
  color: #f4a261;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger .line {
  width: 25px;
  height: 3px;
  background-color: #313131;
}

.hero-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f77f00; 
  height: 100vh; 
  margin: 0; 
}

.hero-text {
  flex: 1;
  padding: 40px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%; 
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.hero-image {
  flex: 1;
  height: 100%; 
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

/* media q's */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .hero-banner {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    padding: 20px;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }
}

/* contact section with mq's */
.contactSection {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding: 80px 15%;
  color: #313131;
  align-items: flex-start;
}

.contactFormContainer {
  flex: 1 1 45%;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

.contactForm h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.contactForm input,
.contactForm textarea {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 5px;
  color: #313131;
  font-size: 1em;
}

.contactForm button {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #FF6600;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: 600;
  color: #313131;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contactForm button:hover {
  background-color: #E55A00;
}

.ourContact {
  flex: 1 1 45%;
  text-align: center;
}

.ourContact h6 {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: 600;
}

.ourContact a {
  font-size: 1.1em;
  color: #FF6600;
}

.ourContact a:hover {
  text-decoration: underline;
}

#socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

#socials svg {
  width: 32px;
  height: 32px;
  color: #FF6600;
  transition: color 0.3s ease;
}

#socials svg:hover {
  color: #E55A00;
}

/* mob mq's */
@media (max-width: 768px) {
  .contactSection {
    flex-direction: column;
    padding: 40px 10%;
    gap: 20px;
  }

  .contactFormContainer,
  .ourContact {
    flex: 1 1 100%;
    padding: 20px;
    box-shadow: none; 
  }
  .contactForm h2 {
    font-size: 1.5em;
  }

  .contactForm input,
  .contactForm textarea {
    font-size: 0.9em;
    padding: 10px;
  }

  .contactForm button {
    font-size: 0.9em;
    padding: 10px 15px;
  }

  .ourContact h6 {
    font-size: 1em;
  }

  .ourContact a {
    font-size: 1em;
  }

  #socials svg {
    width: 28px;
    height: 28px;
  }
}

/* about section */
.about-section {
  padding: 80px 15%;
  background-color: #fdf0e6;
  text-align: center;
  color: #313131;
}

.about-section h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 40px;
}

.about-photo-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-photo-grid img {
  width: 30%;
  border-radius: 10px;
  object-fit: cover;
}

/* teams section */
.teams-section {
  padding: 80px 10%;
  background-color: #fff7f0;
  text-align: center;
  color: #313131;
}

.teams-section h2 {
  font-size: 2em;
  margin-bottom: 40px;
}

.team-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.team-slider::-webkit-scrollbar {
  height: 8px;
}

.team-slider::-webkit-scrollbar-thumb {
  background: #f77f00;
  border-radius: 4px;
}

.slide {
  flex: 0 0 auto;
  width: 200px;
  text-align: center;
  scroll-snap-align: start;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.slide p {
  margin-top: 10px;
  font-weight: 600;
}

/* blog and top tips section */
.blog-section {
  padding: 80px 15%;
  background-color: #fff;
  color: #313131;
  text-align: center;
}

.blog-section h2 {
  font-size: 2em;
  margin-bottom: 40px;
}

.blog-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-card {
  background-color: #fdf0e6;
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.blog-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.blog-card h3 {
  font-size: 1.3em;
  margin: 0 0 10px;
}

.blog-card p {
  font-size: 0.95em;
}

@media (max-width: 768px) {
  .about-photo-grid img {
    width: 100%;
  }

  .slide {
    width: 150px;
  }

  .blog-cards {
    flex-direction: column;
    align-items: center;
  }

  .blog-card {
    width: 90%;
  }
}
