/* ===== Global Styles ===== */
:root {
  --plp-primary: #2b50aa;  /* PLP blue */
  --plp-secondary: #f8a51b; /* PLP orange */
  --dark: #2c3e50;
  --light: #f5f7fa;
  --text-dark: #333;
  --text-light: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header Styles ===== */
.plp-header {
  background: linear-gradient(135deg, var(--plp-primary), #1a3a8f);
  color: var(--text-light);
  padding: 3rem 0;
  text-align: center;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.profile-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    display: block; /* Ensures image renders */
    margin: 0 auto; /* Centers image */
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-links a {
  color: var(--text-light);
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: translateY(-3px);
  color: var(--plp-secondary);
}

/* ===== Section Styles ===== */
section {
  padding: 4rem 0;
}

.section-light {
  background-color: var(--light);
}

.section-dark {
  background-color: var(--dark);
  color: var(--text-light);
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 10px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--plp-secondary);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--plp-primary);
}

.section-dark h3 {
  color: var(--plp-secondary);
}

/* ===== About Section ===== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.plp-highlight {
  background: rgba(248, 165, 27, 0.1);
  border-left: 4px solid var(--plp-secondary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.plp-highlight h3 {
  color: var(--plp-secondary);
  margin-bottom: 1rem;
}

.plp-highlight ul {
  list-style-type: none;
}

.plp-highlight li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.plp-highlight li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--plp-secondary);
}

/* ===== Skills Section ===== */
.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2