@import url('https://fonts.googleapis.com/css2?family=Lato&family=Montserrat:wght@600;700&display=swap');

/* Base Styles */
body {
  margin: 0;
  background: #f9fafb;
  font-family: 'Lato', sans-serif;
  color: #2e3a46;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 900px;
  margin: 30px auto;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 30px 40px;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.container:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

/* Header Styles */
.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 6px;
  color: #0b4a3b;
  letter-spacing: 0.3px;
}

.header .contact-info {
  font-weight: 600;
  font-size: 1rem;
  color: #00856f;
  margin-top: 0;
  font-style: italic;
  user-select: none;
}

/* Section Heading */
h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #0b4a3b;
  margin-bottom: 18px;
  border-bottom: 2.5px solid #00856f;
  padding-bottom: 4px;
  margin-top: 40px;
}

/* Subheading */
h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #00735c;
  margin-bottom: 6px;
}

/* Paragraphs and Lists */
p,
ul {
  font-size: 0.95rem;
  color: #47575c;
  margin-bottom: 16px;
  line-height: 1.45;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 6px;
  position: relative;
}

ul li::marker {
  color: #00856f;
  font-weight: 700;
}

/* Skills Section */
.skills-inline li {
  margin-bottom: 14px;
}

.skills-inline li strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #00856f;
  margin-right: 8px;
}

/* Visitor Count Box */
.visitor-count {
  max-width: 300px;
  margin: 30px auto;
  padding: 14px 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(37, 117, 252, 0.4);
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s forwards ease-in-out;
  user-select: none;
}

/* Fade-in animation */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 650px) {
  .container {
    padding: 20px 20px;
    margin: 20px 15px;
  }

  .header h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-top: 30px;
  }

  h3 {
    font-size: 1rem;
  }

  p,
  ul {
    font-size: 0.9rem;
  }

  .visitor-count {
    max-width: 260px;
    font-size: 16px;
    padding: 12px 20px;
  }
}
