/* Custom minimal monochrome styles */

/* Simple light background */
body {
  background: #f5f5f5;
  font-family: 'Open Sans', sans-serif;
}

/* Clean container */
.main.container {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px;
}

/* Subtle navigation styling */
.navbar-default {
  background: transparent;
  border: none;
  box-shadow: none;
  margin-top: 0;
  position: relative !important;
}

.navbar-default .container-fluid {
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 20px;
}

.navbar-default .navbar-nav > li > a {
  color: #333333;
  font-weight: 600;
  font-size: 1.3em;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.navbar-default .navbar-nav > li > a:hover {
  color: #666666;
  border-bottom-color: #cccccc;
}

.navbar-default .navbar-nav > li.active > a,
.navbar-default .navbar-nav > li.active > a:hover,
.navbar-default .navbar-nav > li.active > a:focus {
  background: transparent;
  color: #333333;
  border-bottom-color: #333333;
}

.navbar-brand {
  color: #333333 !important;
  font-weight: 700;
  font-size: 1.4em;
}

/* Hero title */
.hero-content h1 {
  margin-bottom: 30px;
  font-weight: 600;
  color: #2c3e50;
}

/* Bio sections with minimal styling */
.bio-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Home page - larger text */
.bio-content .intro-plain {
  font-size: 1.2em;
  margin-bottom: 30px;
  padding: 20px;
  text-align: center;
  font-style: italic;
  background: #f9f9f9;
  border-radius: 6px;
  color: #777777;
}

/* Work/Projects pages - smaller intro text, not italic */
.hero-content > .intro-plain {
  font-size: 1em;
  margin-bottom: 30px;
  padding: 20px;
  text-align: center;
  font-style: normal;
  background: #f9f9f9;
  border-radius: 6px;
  color: #777777;
}

.bio-content .intro {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 6px;
  border-left: 3px solid #333333;
}

.bio-section {
  margin-bottom: 25px;
  padding: 25px;
  background: #fafafa;
  border-radius: 6px;
  border-left: 3px solid #999999;
  transition: all 0.3s ease;
}

.bio-section:hover {
  background: #f5f5f5;
  border-left-color: #666666;
  transform: translateX(5px);
}

.section-heading {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #333333;
  font-weight: 600;
}

.bio-section p {
  line-height: 1.8;
  margin-bottom: 10px;
  color: #666666;
  font-size: 1.1em;
}

.closing-text {
  font-size: 1.2em;
  margin-top: 30px;
  padding: 20px;
  text-align: center;
  font-style: italic;
  background: #f9f9f9;
  border-radius: 6px;
  color: #777777;
}

/* Round-edge rectangle buttons */
.hero-buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.hero-buttons .btn {
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  background: #ffffff;
  border: 2px solid #333333;
  color: #333333;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-buttons .btn:hover {
  background: #333333;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn i {
  font-size: 1.2em;
}

/* Link styling */
.bio-content a {
  color: #555555;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.bio-content a:hover {
  color: #333333;
}

/* Profile photo (if used) */
.profile-photo-container {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 20px;
}

.profile-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid #333333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.profile-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Work experience sections */
.work-section {
  margin-bottom: 25px;
  padding: 25px;
  background: #fafafa;
  border-radius: 6px;
  border-left: 3px solid #999999;
  transition: all 0.3s ease;
}

.work-section:hover {
  background: #f5f5f5;
  border-left-color: #666666;
  transform: translateX(5px);
}

.work-title {
  font-size: 1.3em;
  margin-bottom: 8px;
  color: #333333;
  font-weight: 600;
}

.work-date {
  color: #777777;
  margin-bottom: 15px;
  font-size: 1em;
}

.work-section p {
  line-height: 1.8;
  margin-bottom: 10px;
  color: #666666;
  font-size: 1.1em;
}

.work-section p:last-child {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 30px 0;
  margin-top: 40px;
}

.site-footer p {
  color: #666666;
}

.site-footer a {
  color: #333333;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #000000;
  text-decoration: none;
}

.closing-text {
  font-size: 1.2em;
  margin-top: 30px;
  padding: 20px;
  text-align: center;
  font-style: italic;
  background: #f9f9f9;
  border-radius: 6px;
  color: #777777;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main.container {
    margin-top: 60px;
    padding: 20px;
  }

  .bio-section {
    padding: 15px;
  }

  .section-heading {
    font-size: 1.1em;
  }

  .hero-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .profile-photo {
    width: 140px;
    height: 140px;
  }

  .hero-content h1 {
    font-size: 1.8em;
  }
}
