body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  line-height: 1;
  background-color: #fdf6e3;
  color: #222;
}

h5{
  display: none;
}

.hero-img {
  width: 250px;
  max-width: 90%;
  height: auto;
  border-radius: 1rem;
}

ol,
ul {
  list-style: none;
}

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

h1,
h2,
h3,
.logo {
  font-family: 'Ziclets', sans-serif;
}

header nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #0A3A4F;
  color: white;
  padding: 1rem;
  margin: 0;
  font-family: 'Ziclets';
}

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

.logo {
  font-size: 1.5rem;
}

section {
  padding: 4rem 2rem;
}

#hero {
  background-color: #003b4a;
  color: #fff;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1, 5 rem;
  background-color: #0A3A4F;
  color: #FDBE1C;
  padding: 3rem 1rem;
}

.hero-content h1 {
  font-family: 'Ziclets', cursive;
  font-size: 3rem;
  margin: 1rem 0;
}

.hero-content span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: white;
}

#about {
  background-color: #fffbe8;
}

#about h2 {
  font-family: 'Ziclets', cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.about-content p {
  margin: 1rem 0;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background-color: #FDBE1C;
  color: #0A3A4F;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}

#work {
  background-color: #003b4a;
  color: white;
}

#work h2 {
  font-family: 'Ziclets', cursive;
  color: #ffcb05;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.work-grid {
  display: grid;
  gap: 1rem;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.work-grid img {
  width: 100%;
  display: block;
}

.work-grid figure {
  background-color: #e0e0e0;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

.skills-grid figure img {
  width: 64px;
  height: 64px;
  margin-bottom: 0.5rem;
}

.work-grid figcaption,
.skills-grid figcaption {
  margin-top: 0.5rem;
  padding: 0, 75rem;
}

#skills {
  background-color: #fdf6e3;
}

#skills h2 {
  font-family: 'Ziclets', cursive;
  color: #003b4a;
  font-size: 2rem;
  margin-bottom: 2rem;
}


#contact {
  background-color: #FDBE1C;
  padding: 3rem 1rem;
}

form {
  max-width: 400px;
  margin: 2rem auto;
  background-color: #0A3A4F;
  padding: 2rem;
  border-radius: 10px;
  color: white;
}

form fieldset {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form label {
  display: block;
  margin: 1rem 0 0.5rem;
}

form input,
form textarea {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
}

form button {
  background-color: #FDBE1C;
  color: #0A3A4F;
  border: none;
  padding: 0.7rem 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 1rem;
  cursor: pointer;
}

footer {
  background-color: #0A3A4F;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

footer a {
  color: #FDBE1C;
  text-decoration: none;
}

footer p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

footer .btn {
  display: inline-block;
  margin-top: 1rem;
  background: #ffcb05;
  color: #003b4a;
  padding: 0.5rem 1rem;
  font-weight: bold;
  border-radius: 0.5rem;
}

.titel {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    gap: 0,5rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
  .about-content {
    text-align: center;
    align-items: center;
  }

  .work-grid,
  .skills-grid {
    grid-template-columns: 1fr;
  }
  form{
    padding:1rem;
  }
}


.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.project-description {
  padding: 2rem;
}

.project-description h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.project-description p {
  margin-bottom: 1rem;
  max-width: 700px;
}

.btn-back {
  display: inline-block;
  background: var(--primary-blue);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-back:hover {
  background: #0f1f2f;
}

.project-gallery {
  padding: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.more-projects {
  background: var(--primary-yellow);
  padding: 2rem;
  text-align: center;
}

.more-projects h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.more-grid article {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.more-grid article:hover {
  transform: translateY(-4px);
}

.more-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.more-grid h3 {
  padding: 1rem;
  font-size: 1.1rem;
  color: var(--primary-blue);
}

.cta {
  background: var(--primary-blue);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.cta strong {
  color: var(--primary-yellow);
}

.btn-chat {
  display: inline-block;
  margin-top: 1rem;
  background: var(--primary-yellow);
  color: var(--primary-blue);
  padding: 0.8rem 1.4rem;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-chat:hover {
  background: #e6b93a;
}