/*
Theme Name: Clean
Theme URI: http://www.devbyjc.com
Author: Jose Cardenas
Author URI: http://www.devbyjc.com
Description: UI/UX Web Developer Portfolio Site
Version: 1.0
License: GPL2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
Tags: custom-theme, responsive, portfolio
*/


/* =======================================================
  Base Styles & Global Background
======================================================= */


/* ==========================
   Navbar link styling
========================== */

/* Base nav link */
.navbar-nav .nav-link {
  position: relative;
  padding: 0.5rem 0;
  margin: 0 0.75rem;
  border-bottom: 2px solid transparent;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease;
}

/* Hover */
.navbar-nav .nav-link:hover {
  color: #ef8037;
}

/* Active = UNDERLINE + ORANGE TEXT */
.navbar-nav .nav-link.active {
  border-bottom: 2px solid #ef8037;
  color: #ef8037;
}

/* =======================================================
  Hero Section
======================================================= */

/* === Hero Buttons === */
.btn-orange {
  background-color: #fd7e14 !important; /* orange */
  color: #fff !important;
  border: 1px solid #fd7e14 !important;
}

.btn-orange:hover {
  background-color: #e96b0b !important;
  border-color: #e96b0b !important;
  color: #fff !important;
}

.btn-outline-orange {
  background-color: transparent !important;
  color: #fd7e14 !important;
  border: 1px solid #fd7e14 !important;
}

.btn-outline-orange:hover {
  background-color: #fd7e14 !important;
  color: #fff !important;
}



/* =======================================================
  Section Headings
======================================================= */

section h2 {
  font-weight: 700;
  font-size: 2.5rem;
}



/* =======================================================
  About Section
======================================================= */




  /* Force-center the About avatar across breakpoints */
#about .col-lg-5 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; /* keeps captions/wrappers centered too */
}

#about .col-lg-5 img {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
  max-width: 250px; /* matches your inline style */
  height: auto;
}





/* =======================================================
  Education Section
======================================================= */

/* General Section Styling */
#education {
  background-color: #f8f9fa;
  color: #333;
}

#education h3 {
  font-weight: 700;
  color: #111;
}

/* Program Card */
.education-program {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.education-program:hover {
  transform: translateY(-5px);
}

/* Program Title */
.education-program h4 {
  font-size: 1.25rem;
  color: #212529;
}

/* Online badge */
.education-program .badge-online {
  display: inline-block;
  background-color: transparent;
  color: #fd7e14;
  border: 1px solid #fd7e14;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-right: 0.5rem;
}

/* School name & date */
.education-program .text-muted {
  font-size: 0.875rem;
}

/* List items */
.education-program .ps-3 div {
  font-size: 0.9rem;
  padding-left: 1.2rem;
  position: relative;
}

.education-program .ps-3 div::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #fd7e14;
}


/* =======================================================
  Skills Section
======================================================= */

#skills {
  scroll-margin-top: 80px;
  padding: 4rem 0;
  background-color: #f9f9f9;
}

/* Center container */
#skills .container {
  max-width: 1000px;
  margin: auto;
}

/* Section Title */
#skills h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

#skills h2 span {
  color: #ef8037;
}

/* Info Box (Left Column) */
.intro-box {
  background: #fff;
  border-left: 4px solid #ef8037;
  border-radius: 16px;
  margin-top: 20px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.intro-box:hover {
  transform: translateY(-4px);
}

/* Skill Items */
.skill-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.skill-icon {
  width: 40px;
  font-size: 1.8rem;
  margin-right: 0.75rem;
}

.skill-info h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

/* Tags */
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.skill-tags span {
  background-color: #ef8037;
  color: #333;
  padding: 3px 10px;
  font-size: 0.7rem;
  border-radius: 6px;
  font-weight: 500;
}

/* Progress Bars (Right Column) */
.progress-group {
  margin-bottom: 1.5rem;
}

.progress-group strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.progress {
  height: 8px;
  background-color: #ef8037;
  border-radius: 6px;
  overflow: hidden;
}

.progress-bar {
  background-color: #ef8037 !important;
  height: 100%;
  transition: width 0.6s ease-in-out;
  border-radius: 6px;
}



/* Responsive */
@media (max-width: 768px) {
  .skill-item {
    flex-direction: row;
    align-items: center;
  }

  .skill-icon {
    font-size: 1.5rem;
    width: 30px;
  }

  
}






/* =======================================================
  Projects Section (REVISED)
======================================================= */

/* =======================================================
  Contact Form
======================================================= */



#contact {
  min-height: 100vh; /* GOOD: allows content to push beyond if needed */
}




/* =======================================================
  Footer
======================================================= */


/* =======================================================
  Utility Classes
======================================================= */

.text-muted {
  color: #6c757d !important;
}

/* =======================================================
  Responsive Tweaks
======================================================= */

@media (max-width: 768px) {
  .footer-logo img {
    margin-left: auto;
    margin-right: auto;
  }
}


