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

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

/* Header */
header {
  background-color: #e9e4dc;
  padding: 2em 1em;
}

.profile {
  display: flex;
  align-items: center;
  gap: 1.5em;
  max-width: 1000px;
  margin: auto;
}

.profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.profile h1 {
  margin: 0;
  font-size: 1.8em;
  color: #2c2c2c;
}

.profile p {
  color: #666;
}

/* Main content */
.container {
  padding: 2em 1em;
  max-width: 1000px;
  margin: auto;
}

h2 {
  color: #b19777;
  font-size: 1.4em;
  border-left: 5px solid #b19777;
  padding-left: 0.6em;
  margin-top: 2em;
  margin-bottom: 0.6em;
}

.skills {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
}

.skills li {
  background: #ffffff;
  padding: 0.5em 1em;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Contact section */
.contact {
  background-color: #e9e4dc;
  padding: 1.5em;
  border-radius: 8px;
  margin-top: 2em;
}

.downloads {
  margin-top: 1em;
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  background-color: #b19777;
  color: white;
  padding: 0.6em 1.2em;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #9c7c5e;
}

/* Footer */
footer {
  text-align: center;
  padding: 2em 1em;
  font-size: 0.9em;
  color: #777;
  background-color: #f0ece5;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}
.mb-1{
    margin-bottom: 0.6em;
}

/* Responsive Styles */
@media(min-width: 768px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .profile img {
    width: 120px;
    height: 120px;
  }

  .profile h1 {
    font-size: 2.2em;
  }
}
