/* Base layout and typography */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #2B0033, #4B002A); /* dark purple to maroon */
  color: #f0f0f0;
}

/* Header styling */
header {
  background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 4px solid #FF7F00; /* orange accent */
}

header img {
  max-width: 120px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #00FFE0; /* cyan blue for "PARADIGM" */
}

.tagline {
  font-size: 1.2rem;
  color: #FF7F00; /* orange for "DIGITAL MEDIA" */
}

/* Section styling */
section {
  padding: 2rem;
  text-align: center;
  background-color: rgba(43, 0, 51, 0.6); /* semi-transparent purple overlay */
  margin: 1rem;
  border-radius: 8px;
}

/* About section enhanced styling */
.about-content {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 3rem;
  color: #f0f0f0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.expertise-item {
  background: linear-gradient(135deg, rgba(0, 255, 224, 0.08), rgba(255, 127, 0, 0.08));
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #00FFE0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 255, 224, 0.2);
}

.expertise-item h4 {
  color: #00FFE0;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.expertise-item p {
  color: #f0f0f0;
  line-height: 1.5;
  margin: 0;
}

.approach-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 127, 0, 0.3);
  text-align: center;
}

.approach-section h3 {
  color: #FF3399;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.approach-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-tag {
  background: linear-gradient(45deg, #FF3399, #FF7F00);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.value-tag:hover {
  transform: scale(1.05);
}

h2 {
  color: #FF3399; /* pink accent for section headers */
  margin-bottom: 1rem;
}

p {
  line-height: 1.6;
  font-size: 1rem;
}

/* Link styling */
a {
  color: #FFFF66; /* yellow for links */
  text-decoration: none;
}

a:hover {
  color: #FF0033; /* red hover effect */
  text-decoration: underline;
}

/* Footer styling */
footer {
  background: #111;
  padding: 1rem;
  font-size: 0.9rem;
  text-align: center;
  color: #FF7F00;
  border-top: 2px solid #FF3399;
}

/* Portfolio section styling */
#portfolio {
  text-align: left;
}

.project-showcase {
  background: linear-gradient(135deg, rgba(255, 127, 0, 0.08), rgba(0, 255, 224, 0.08));
  border: 2px solid #FF7F00;
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2rem 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-showcase:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 127, 0, 0.25);
}

.project-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 127, 0, 0.3);
}

.project-logo {
  max-width: 120px;
  max-height: 120px;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 255, 224, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 255, 224, 0.3);
}

.project-header h3 {
  color: #00FFE0;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.project-tagline {
  color: #FF7F00;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.project-pitch {
  color: #f0f0f0;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.value-proposition {
  margin: 2rem 0;
}

.value-proposition h4 {
  color: #FF3399;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.impact-item {
  text-align: center;
  padding: 1.2rem;
  background: rgba(255, 51, 153, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 51, 153, 0.3);
}

.impact-number {
  display: block;
  color: #FFFF66;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.impact-label {
  color: #f0f0f0;
  font-size: 0.95rem;
}

.solution-overview {
  margin: 2.5rem 0;
}

.solution-overview h4 {
  color: #FF3399;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.tech-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(0, 255, 224, 0.05);
  border-radius: 10px;
  border-left: 4px solid #00FFE0;
}

.tech-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tech-item strong {
  color: #00FFE0;
  display: block;
  margin-bottom: 0.3rem;
}

.tech-item p {
  color: #f0f0f0;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.project-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 127, 0, 0.3);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(45deg, #FF3399, #FF7F00);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 51, 153, 0.3);
  margin-bottom: 0.5rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 51, 153, 0.4);
  color: white;
  text-decoration: none;
}

.arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(3px);
}

.cta-subtext {
  color: #f0f0f0;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.discord-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(45deg, #5865F2, #7289DA);
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
  color: white;
  text-decoration: none;
}

.discord-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.discord-button:hover .discord-icon {
  transform: scale(1.1);
}

/* Responsive design for portfolio */
@media (min-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}