/* You can customize theme styles here */

/* Modern styles */
:root {
  --primary-color: rgb(85, 74, 160);
  --secondary-color: #c2dcf5;
  --text-color: #2d3436;
  --transition: all 0.3s ease;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: var(--text-color);
}

.navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.navbar-brand span {
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), #6c5ce7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  position: relative;
  font-weight: 500;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #6c5ce7);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.3);
}

.display-1 {
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), #6c5ce7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.platform-links a {
  font-size: 1.5rem;
  margin: 0 15px;
  color: var(--primary-color);
  transition: var(--transition);
}

.platform-links a:hover {
  color: #6c5ce7;
  transform: translateY(-3px);
}

.education {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.education:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.education__date {
  color: var(--primary-color);
  font-weight: 600;
}

.navbar-collapse {
  transition: all 0.3s ease;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
