/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #FDE2CF;
  color: #111;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navigation */
nav {
    margin-left: 20%;
    margin-right: 20%;
  background-color: #FDE2CF;
  padding: 1rem 2rem;
  
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav_logo {
  height: 80px;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #111;
  
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li a {
   font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.nav-links li a:hover {
    border-radius: 20px;
   background-color: rgba(240,162,31, 0.3);
  
}
.thispagebutton{
    border-radius: 20px;
    background-color: rgba(240,162,31,1);
}

/* Hero */
.hero {
  padding-top: 2rem;
  background-color: #FDE2CF;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto;
  color: #1c1c1c;
}

/* Introduction */
.introduction {
  padding: 2rem;
  text-align: center;
  max-width: 700px;
  margin: auto;
  font-weight: 600;
  font-size: 10px;
  color: #642714;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.introduction button{
  margin-left: 15%;
  width: 150px;
  border-width: 0px;
  height: 50px;
  background-color: rgba(237,99,37,1);
  color: #FDE2CF;
  font-weight: 600;
  border-radius: 30px;
  font-size: 16px;
  box-shadow: rgb(142, 33, 33) 0px 8px 0px 0px;
  transition: box-shadow 0.35s;
}
.introduction button:hover{
  box-shadow: 0 0 0 0;
  
}

/* Services */
.services {
  padding: 3rem 2rem;
  background-color: #FDE2CF;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.services ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}

.services li {
  background-color: #FDE2CF;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-weight: 500;
}

/* Team */
.team {
  padding: 3rem 2rem;
  margin-bottom: 0px;
  background-color: #FDE2CF;
  text-align: center;
}

.team h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.team-member {
  display: inline-block;
  margin: 5rem;
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  background-color:  rgba(237,99,37,1);
 
}
.xlogo img {
  height: 50px;
  width: 50px;
  display: block;
  margin: 0.5rem auto 0; 
}

.xlogo img:hover {
  transform: scale(1.1);
  transition: transform 0.2s;
}


/* Footer */
.custom-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #1E1A16;
  color: #fff;
  margin-right: 20%;
  margin-left: 20%;
  margin-bottom: 1rem;
  padding: 2rem;
  flex-wrap: wrap;
  border-radius: 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials img {
  height: 35px;
  width: 35px;
  background-color: #FDE2CF;
  border-radius: 50%;
  padding: 0.3rem;
  transition: transform 0.3s ease;
}

.footer-socials img:hover {
  transform: scale(1.1);
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  justify-content: flex-end;
}

.footer-nav li {
  border-right: 1px solid #555;
  padding-right: 1rem;
}

.footer-nav li:last-child {
  border-right: none;
}

.footer-nav a {
  color: #ccc;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #fff;
}


/* Responsive */
@media (max-width: 1080px) {
    nav{
        margin-left: 10%;
        margin-right: 10%;
    }
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #FDE2CF;
    border-top: 1px solid #ccc;
    padding: 1rem 0;
    gap: 1rem;
    margin-top: 1rem;
  }

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

  .nav-links li {
    text-align: center;
  }
  .thispagebutton {
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  padding: 0.2rem 0.25rem;
  border-radius: 25px;
}

  .hero h1 {
    font-size: 2rem;
  }
  .hero img{
    padding-left: 0;
    width: 150px;
  }

  .introduction{
    display: flex;
    flex-direction: column;
  }
  .introduction button {
    margin-left: 0%;
  }
  .services ul {
    flex-direction: column;
  }

  .team-member {
    display: block;
    margin: 2rem auto;
  }

  .custom-footer {
    margin-left: 10%;
    margin-right: 10%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    text-align: center;
    align-items: center;
  }

  .footer-nav {
    justify-content: center;
  }
}