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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #FFEAA7;
  color: #2d3436;
  line-height: 1.6;
}

/* Header */
header {
  background-color: black;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

header img {
 width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo {
  width: 80px;
  height: auto;
  margin: 0.5rem 0;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
 box-shadow: 0 4px 6px rgba(219, 213, 213, 0.3);
 text-shadow: 2px 9px  rgba(0, 0, 0, 0.7);
 width: 100%;
}

#watchword {
  font-style: italic;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Layout */
.container {
  display: flex;
  min-height: 80vh;
}

/* Left Sidebar */
#leftsidebar {
  width: 200px;
  background-color: #00CEC9;
  padding: 1rem;
  transition: all 0.3s ease;

}

#leftsidebar {
  width: 200px;
  background-color: #00CEC9;
  padding: 1rem;
}

#leftsidebar ul {
  list-style: none;
  padding-left: 0;
}

#leftsidebar li {
  margin: 1rem 0;
}

#leftsidebar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

#leftsidebar a:hover {
  text-decoration: underline;
}

/* Right Sidebar */
#rightsidebar {
  width: 200px;
  background-color: #00CEC9;
  padding: 1rem;
}

#rightsidebar ul {
  list-style: none;
  padding-left: 0;
}

#rightsidebar li {
  margin: 1rem 0;
}

#rightsidebar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

#rightsidebar a:hover {
  text-decoration: underline;
}

/* Main Content */
main#content {
  flex: 1;
  padding: 2rem;
  background-color: #fff;
}

h2 {
    text-align: center;
}

.description {
  text-align: center;
    margin-top: 0.2rem;
    font-style: italic;
}

h2, h3 {
  color: #6C5CE7;
  margin-bottom: 1rem;
}

h3 {
margin-top: 3rem;
}

/* Featured Work */
.featured {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 2fr);
  margin-bottom: 2rem;
  max-width: 100%;
  justify-items: center;
}

.project-card {
  background-color: #FFEAA7;
  border: 2px solid #6C5CE7;
  box-shadow: 0 4px 6px rgba(0,0,0,0.7);
  overflow: hidden;
  transition: transform 0.3s ease;
  width: 70%;
  column-gap: none;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 100%;
  display: grid;
  box-shadow: 0 4px 6px rgba(0,0,0,0.7);
  transition: transform 0.4s ease, filter 0.3s ease;
}

/* Hover Effect */
.project-img:hover {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}


/* Testimonials */
.testimonials blockquote {
  background: #f1f2f6;
  border-left: 4px solid #00CEC9;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 5px;
}

/* Footer */
.footer {
  background-color: #6C5CE7;
  color: white;
  text-align: center;
  padding: 1rem;
}

.footer a {
  color: #FFEAA7;
  text-decoration: none;
  margin: 0 5px;
}

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

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  #leftsidebar,
  #rightsidebar {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  #leftsidebar li,
  #rightsidebar li {
    display: inline-block;
    margin: 0.5rem 1rem;
  }

  #leftsidebar a,
  #rightsidebar a {
    font-size: 1rem;
  }

  main#content {
    padding: 1rem;
  }

  .featured {
    flex-direction: column;
    gap: 1rem;
  }

  .project-card {
    flex: 1 1 100%;
  }
  .footer {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  .logo {
    width: 60px;
  }

  header h1 {
    font-size: 1.5rem;
  }

  #watchword {
    font-size: 0.9rem;
  }
  .featured {
    flex-direction: column;
    align-items: center;
  }

  .project-card {
    width: 90%;
  }

}
