html {
  scroll-padding-top: 110px; 
}

body {
  background-color: #1a1e23 !important;
  color: #d1d5db !important;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

.navbar.bg-dark {
  background-color: #0f1216 !important;
}

.logo-jz {
  color: #00e0ff;
  font-weight: 800;
  font-size: 1.8rem; 
  border: 2.5px solid #00e0ff;
  padding: 5px 12px;
  border-radius: 8px;
  margin-right: 15px;
  display: inline-block;
  text-shadow: 0 0 10px rgba(0, 224, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 224, 255, 0.2); 
  
  animation: logo-pulse 2s infinite ease-in-out;
  transition: all 0.3s ease; 
}

.logo-text {
  font-weight: 100;
  font-size: 1rem; 
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes logo-pulse {
  0% {
    box-shadow: 0 0 5px rgba(0, 224, 255, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.6); 
    text-shadow: 0 0 15px rgba(0, 224, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(0, 224, 255, 0.2);
    transform: scale(1);
  }
}

.navbar-brand:hover .logo-jz {
  background-color: #00e0ff;
  color: #0f1216; 
  box-shadow: 0 0 30px rgba(0, 224, 255, 1); 
  transform: rotate(-3deg) scale(1.1); 
}

.navbar-nav .nav-link.active {
    color: #00e0ff !important;
    font-weight: 700;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #00e0ff;
    bottom: -5px; 
    left: 0;
    box-shadow: 0 0 10px rgba(0, 224, 255, 0.7);
    transition: all 0.3s ease;
}

.navbar {
    min-height: 50px; 
    transition: all 0.3s ease;
    background-color: rgba(15, 18, 22, 0.95) !important;
    backdrop-filter: blur(10px); 
}

section {
    scroll-margin-top: 100px; 
}


h1, h2, h3, h5 {
  font-weight: 500;
}

.text-info {
  color: #00e0ff !important; 
}

section#portfolio, 
section#contact {
  background-color: #1a1e23 !important; 
}

.bg-black {
  background-color: #111418 !important; 
}

#about {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.about-description p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e2e8f0 !important; 
    font-weight: 400;
}

.about-description strong {
    color: #00e0ff !important; 
    font-weight: 700;
}
.about-description .lead {
    font-size: 1.25rem;
    color: #ffffff !important; 
}
.progress {
    background-color: #2d3748 !important; 
    height: 12px;
    border-radius: 20px;
}

.progress-bar {
    box-shadow: 0 0 15px rgba(0, 224, 255, 0.6); 
}

.project-card {
    background-color: #111418 !important; 
    border: 1px solid #2c313a !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 224, 255, 0.2) !important;
    border-color: #00e0ff !important;
}

.project-card .card-img-top {
    height: 350px; 
    object-fit: cover; 
    object-position: center; 
}


.project-card .card-body {
    display: flex;
    flex-direction: column; 
    height: 100%;
}

.project-card .card-text {
    flex-grow: 1; 
    font-size: 0.95rem;
    color: #adb5bd;
}

.btn-outline-info {
  border-color: #00e0ff;
  color: #00e0ff;
  transition: all 0.3s ease;
}

.btn-outline-info:hover {
  background-color: #00e0ff;
  color: #0f1216 !important;
  box-shadow: 0 0 15px rgba(0, 224, 255, 0.4);
}

.minimal-input {
    background-color: #111418 !important; 
    border: 1px solid #2c313a !important; 
    border-radius: 4px !important;
    color: #ffffff !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease;
}

.minimal-input::placeholder {
    color: #a0aec0 !important; 
    opacity: 1;
}

.minimal-input:focus {
    background-color: #1a1e23 !important; 
    border-color: #00e0ff !important; 
    box-shadow: 0 0 8px rgba(0, 224, 255, 0.2) !important;
    outline: none;
    color: #ffffff !important;
}

@media (max-width: 991px) {
  #home {
    padding-top: 160px !important; 
    height: auto !important;
    min-height: 100vh;
  }

  #home h1 {
    font-size: 2.5rem !important; 
  }

  #about {
    padding-top: 80px !important;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .logo-text {
    display: none;
  }
  
  #home h1 {
    font-size: 1.8rem !important;
  }
}