/* General look and theme colors */
:root {
  --main-bg: #f8f4f3;
  --text-color: #4a3b36;
  --accent: #f3b8c1;
  --footer-bg: #4a352f;
  --footer-text: #fff;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: var(--main-bg);
  color: var(--text-color);
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 40px;
  border-bottom: 1px solid #ddd;
}

.logo {
  background: var(--accent);
  color: white;
  font-weight: bold;
  border-radius: 50%;
  padding: 10px 15px;
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  margin-left: 20px;
  font-weight: 500;
}
nav a.active {
  color: #d43f55;
}

/* GRID LAYOUT */
.container {
  display: grid;
  grid-template-areas:
    "intro image"
    "socials softskills";
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Grid Areas */
.intro { grid-area: intro; }
.image { grid-area: image; }
.socials { grid-area: socials; }
.softskills { grid-area: softskills; }

/* Intro Section */
.intro h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
}
.intro h1 span {
  font-weight: bold;
}
.title {
  font-size: 1.1rem;
  color: #777;
}
.desc {
  margin: 10px 0;
}
.buttons button {
  background: white;
  border: 1px solid #ccc;
  padding: 6px 12px;
  border-radius: 6px;
  margin-right: 10px;
  cursor: pointer;
}
.buttons button:hover {
  background: var(--accent);
  color: white;
}

/* Image Section */
.circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 8px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f2f0;
  margin: auto;
  color: #777;
  font-weight: 600;
}

/* Socials Section */
.socials {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
}
.social {
  background: #f1e9e7;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
}

/* Soft Skills */
.softskills {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}
.softskills h3 {
  margin-top: 0;
}
.softskills ul {
  list-style: none;
  padding: 0;
}
.softskills li {
  border-left: 3px solid var(--accent);
  padding-left: 10px;
  margin-bottom: 8px;
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
}
footer h4 {
  margin-bottom: 8px;
}
.footer-links a {
  color: var(--footer-text);
  display: block;
  text-decoration: none;
  margin-bottom: 5px;
}
.location {
  font-size: 0.9rem;
  opacity: 0.8;
}
/* Profile image style */
.profile-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--accent);
}

/* Make icons look neat */
.socials a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1e9e7;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s;
}

.socials a:hover {
  background: var(--accent);
  color: white;
}

.socials i {
  font-size: 18px;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .container {
    grid-template-areas:
      "intro"
      "image"
      "socials"
      "softskills";
    grid-template-columns: 1fr;
    text-align: center;
  }
  .circle {
    margin-top: 20px;
  }

}

