/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #fce7f3;
  text-shadow: none;
}

::selection {
  background: #fce7f3;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ===================================
   CUSTOM STYLES - Per Axbom Portfolio
   =================================== */

/* Reset & Base Styles */

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1.5rem;
  line-height: 1.3;
}

h2 span {
  font-size: 0.7em;
  display: inline-block;
  font-weight: normal;
}

h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #be185d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===================================
   LAYOUT UTILITIES
   =================================== */

.space-around {
  padding: 1.5rem 1rem 0.5rem;
}

.space-around-header {
  padding: 1.5rem 1rem 2.5rem;
}

.divc {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.divl {
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}

.text-small {
  font-size: 0.9rem;
}

/* ===================================
   BACKGROUNDS
   =================================== */

.bg-gradient-1 {
  background: linear-gradient(90deg, #fdf2f8 0%, #fce7f3 100%);
}

.bg-gradient-2 {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
}

.bg-pink {
  background-color: #fff1f2;
}

.bg-personal {
  background: linear-gradient(135deg, #fef3c7 0%, #fce7f3 50%, #f3e8ff 100%);
  padding: 3rem 1rem;
}

/* ===================================
   AVATAR
   =================================== */

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #ec4899;
  object-fit: cover;
  display: inline-block;
}

@media (max-width: 768px) {
  .avatar {
    width: 80px;
    height: 80px;
    border-width: 2px;
  }
}

@media (max-width: 480px) {
  .avatar {
    width: 60px;
    height: 60px;
  }
}

/* ===================================
   CONTACT SECTION WITH ICONS
   =================================== */

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fce7f3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  border: 2px solid #ec4899;
}

.contact-icon:hover {
  transform: scale(1.1);
  background: #ec4899;
  border-color: #be185d;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: #be185d;
}

.contact-icon:hover svg {
  fill: #ffffff;
}

.contact-label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}

/* ===================================
   MODAL OVERLAY
   =================================== */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
  line-height: 1;
  padding: 0.25rem;
}

.modal-close:hover {
  color: #1f2937;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #fafafa;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
  text-align: left;
  color: #1f2937;
}

.modal-button:hover {
  background: #fce7f3;
  border-color: #ec4899;
}

.modal-button svg {
  width: 24px;
  height: 24px;
  fill: #be185d;
  flex-shrink: 0;
}

.modal-button-text {
  flex: 1;
}

.modal-button-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.modal-button-detail {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Deliverables Modal (larger) */
.modal-content.modal-deliverables {
  max-width: 600px;
}

.deliverable-item {
  padding: 1rem;
  background: #fafafa;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.deliverable-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #be185d;
}

.deliverable-item p {
  font-size: 0.9rem;
  color: #4b5563;
  margin: 0;
}

/* ===================================
   SLIDESHOW FOR CASE MODAL
   =================================== */

.slideshow-container {
  position: relative;
  margin: 1.5rem 0;
  background: #f9fafb;
  border-radius: 8px;
  overflow: hidden;
}

.slideshow-slide {
  display: none;
  padding: 1.5rem;
}

.slideshow-slide.active {
  display: block;
}

.slideshow-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slideshow-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #be185d;
}

.slideshow-content p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.slideshow-link {
  display: inline-block;
  color: #be185d;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.slideshow-link:hover {
  color: #ec4899;
  text-decoration: underline;
}

.slideshow-link svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-left: 4px;
  fill: currentColor;
}

.slideshow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.slideshow-nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

.slideshow-nav.prev {
  left: 10px;
}

.slideshow-nav.next {
  right: 10px;
}

.slideshow-dots {
  text-align: center;
  padding: 1rem 0;
  background: #f3f4f6;
}

.slideshow-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.slideshow-dot.active {
  background: #ec4899;
}

.slideshow-counter {
  text-align: center;
  padding: 0.5rem;
  font-size: 0.85rem;
  color: #6b7280;
  background: #f3f4f6;
}

@media (prefers-color-scheme: dark) {
  .slideshow-container {
    background: #1f2937;
  }

  .slideshow-dots,
  .slideshow-counter {
    background: #111827;
  }

  .slideshow-content h4 {
    color: #f9a8d4;
  }

  .slideshow-content p {
    color: #d1d5db;
  }

  .slideshow-link {
    color: #f9a8d4;
  }

  .slideshow-link:hover {
    color: #fce7f3;
  }
}

/* ===================================
   QUOTE
   =================================== */

.quote-minimal {
  text-align: center;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 40rem;
  position: relative;
  background: linear-gradient(135deg, #fef3c7 0%, #fce7f3 100%);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.quote-minimal p {
  font-size: 1.15em;
  line-height: 1.8;
  margin: 0;
  color: #374151;
  font-weight: 500;
}

/* ===================================
   COMPETENCY TAGS
   =================================== */

.competency-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 2rem 0;
}

.tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #1f2937;
  font-weight: 500;
  transition: none;
}

.tag-pink { background-color: #fce7f3; }
.tag-purple { background-color: #f3e8ff; }
.tag-blue { background-color: #dbeafe; }
.tag-green { background-color: #d1fae5; }
.tag-yellow { background-color: #fef3c7; }
.tag-orange { background-color: #fed7aa; }
.tag-rose { background-color: #ffe4e6; }
.tag-indigo { background-color: #e0e7ff; }
.tag-teal { background-color: #ccfbf1; }
.tag-violet { background-color: #ede9fe; }

@media (max-width: 768px) {
  .tag {
    padding: 0.4rem 0.85rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .tag {
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
  }
  
  .competency-tags {
    gap: 0.4rem;
  }
}

/* ===================================
   REFERENCE CASES
   =================================== */

.reference-case {
  background: #fafafa;
  border-left: 4px solid #ec4899;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  position: relative;
}

.case-roles {
  font-size: 1.1rem;
  font-weight: 600;
  color: #be185d;
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.case-client {
  font-weight: 600;
  color: #1f2937;
}

.case-location {
  color: #6b7280;
}

.case-period {
  background-color: #dbeafe;
  color: #1e40af;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.9rem;
}

.case-meta-separator {
  color: #d1d5db;
}

.case-description {
  color: #374151;
  line-height: 1.7;
  margin: 1rem 0 1.25rem 0;
}

.case-deliverables {
  list-style: none;
  padding: 0;
  margin: 0;
}

.case-deliverables li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  color: #4b5563;
  line-height: 1.6;
}

.case-deliverables li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ec4899;
  font-weight: bold;
  font-size: 1.2em;
}

.case-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #fce7f3;
  border: 2px solid #ec4899;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: #be185d;
  transition: all 0.2s;
}

.case-button:hover {
  background: #ec4899;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(236, 72, 153, 0.3);
}

.case-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .reference-case {
    padding: 1.5rem;
  }
  
  .case-roles {
    font-size: 1rem;
  }
  
  .case-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .case-meta-separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .reference-case {
    padding: 1.25rem;
  }
  
  .case-deliverables li {
    padding-left: 1.25rem;
    font-size: 0.95rem;
  }
}

/* ===================================
   EDUCATION
   =================================== */

.education-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.education-item:last-child {
  border-bottom: none;
}

.education-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}

.education-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.95rem;
  color: #6b7280;
}

.education-institution {
  font-weight: 500;
  color: #4b5563;
}

.education-location {
  color: #6b7280;
}

.education-year {
  background-color: #f3e8ff;
  color: #6b21a8;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.9rem;
}

.education-meta-separator {
  color: #d1d5db;
}

@media (max-width: 768px) {
  .education-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .education-meta-separator {
    display: none;
  }
}

/* ===================================
   PUBLICATIONS
   =================================== */

.publication-item {
  background: #fafafa;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
  border-left: 4px solid #ec4899;
  position: relative;
}

.publication-item:nth-child(2) {
  border-left-color: #8b5cf6;
}

.publication-item:nth-child(3) {
  border-left-color: #3b82f6;
}

.publication-item:nth-child(4) {
  border-left-color: #10b981;
}

.publication-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.publication-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.publication-publisher {
  font-weight: 500;
  color: #4b5563;
}

.publication-year {
  background-color: #dbeafe;
  color: #1e40af;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.85rem;
}

.publication-description {
  color: #4b5563;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.publication-meta-separator {
  color: #d1d5db;
}

/* External link icon */
.external-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fce7f3;
  border: 2px solid #ec4899;
  transition: all 0.2s;
  flex-shrink: 0;
}

.external-link:hover {
  background: #ec4899;
  transform: scale(1.1);
}

.external-link svg {
  width: 16px;
  height: 16px;
  fill: #be185d;
}

.external-link:hover svg {
  fill: #ffffff;
}

@media (max-width: 768px) {
  .publication-item {
    padding: 1.25rem;
  }
  
  .publication-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .publication-meta-separator {
    display: none;
  }
}

/* ===================================
   LECTURES & AWARDS
   =================================== */

.lectures-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lecture-item {
  padding: 1.25rem 0 1.25rem 2.5rem;
  margin: 0;
  position: relative;
  border-left: 2px solid #e5e7eb;
}

.lecture-item:last-child {
  border-left-color: transparent;
}

.lecture-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 1.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ec4899;
  border: 2px solid #fff;
}

.lecture-item:nth-child(2)::before { background-color: #8b5cf6; }
.lecture-item:nth-child(3)::before { background-color: #3b82f6; }
.lecture-item:nth-child(4)::before { background-color: #10b981; }
.lecture-item:nth-child(5)::before { background-color: #f59e0b; }
.lecture-item:nth-child(6)::before { background-color: #ec4899; }
.lecture-item:nth-child(7)::before { background-color: #8b5cf6; }
.lecture-item:nth-child(8)::before { background-color: #3b82f6; }
.lecture-item:nth-child(9)::before { background-color: #10b981; }
.lecture-item:nth-child(10)::before { background-color: #f59e0b; }

.lecture-type {
  display: inline-block;
  background-color: #fce7f3;
  color: #be185d;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.lecture-event {
  font-weight: 600;
  color: #1f2937;
  font-size: 1rem;
}

.lecture-event-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.lecture-year {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0 0.5rem;
}

.lecture-title {
  display: block;
  color: #4b5563;
  font-style: italic;
  margin-top: 0.25rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .lecture-item {
    padding-left: 1.5rem;
    font-size: 0.95rem;
  }
  
  .lecture-item::before {
    left: -5px;
    width: 10px;
    height: 10px;
  }
  
  .lecture-type {
    display: block;
    margin-bottom: 0.25rem;
    width: fit-content;
  }
}

/* ===================================
   SIGNATURE
   =================================== */

.signature {
  width: 200px;
  height: auto;
  display: block;
  color: #1f2937;
  margin: 2rem 0 1rem;
}

.signature-container {
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .signature {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .signature {
    width: 120px;
  }
}

/* ===================================
   PERSONAL SECTION
   =================================== */

.personal-section {
  background: linear-gradient(135deg, #fef3c7 0%, #fce7f3 50%, #f3e8ff 100%);
  padding: 3rem 1rem;
  margin-top: 3rem;
}

.personal-content {
  max-width: 640px;
  margin: 0 auto;
}

.personal-section h2 {
  color: #831843;
  margin-top: 0;
}

.personal-section h3 {
  color: #be185d;
  margin-top: 1.5rem;
}

.personal-section p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: #1f2937;
  color: #d1d5db;
  padding: 3rem 1rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  color: #f9fafb;
  font-size: 1rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #f9a8d4;
}

.footer-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  text-align: center;
}

.footer-contact p {
  margin: 0.5rem 0;
  color: #9ca3af;
}

.footer-contact a {
  color: #d1d5db;
}

.footer-contact a:hover {
  color: #f9a8d4;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #374151;
  font-size: 0.9rem;
  color: #6b7280;
}

/* ===================================
   DARK MODE
   =================================== */

@media (prefers-color-scheme: dark) {
  body {
    background: #111827;
    color: #d1d5db;
  }

  h1, h2, h3 {
    color: #f9fafb;
  }

  a {
    color: #f9a8d4;
  }

  .bg-gradient-1 {
    background: linear-gradient(90deg, #4a1d33 0%, #3f1728 100%);
  }

  .bg-gradient-2 {
    background: linear-gradient(135deg, #50004F 0%, #50004F 100%);
  }

  .bg-pink {
    background-color: #3f1728;
  }

  .bg-personal {
    background: linear-gradient(135deg, #78350f 0%, #4a1d33 50%, #581c87 100%);
  }

  .personal-section {
    background: linear-gradient(135deg, #78350f 0%, #4a1d33 50%, #581c87 100%);
  }

  .personal-section h2 {
    color: #fce7f3;
  }

  .personal-section h3 {
    color: #f9a8d4;
  }

  .personal-section p {
    color: #d1d5db;
  }

  .quote-minimal {
    background: linear-gradient(135deg, #78350f 0%, #4a1d33 100%);
  }

  .quote-minimal p {
    color: #d1d5db;
  }

  .contact-label {
    color: #9ca3af;
  }

  .contact-icon {
    background: #831843;
    border-color: #4a1d33;
  }

  .contact-icon svg {
    fill: #fce7f3;
  }

  .contact-icon:hover {
    background: #be185d;
    border-color: #f9a8d4;
  }

  .contact-icon:hover svg {
    fill: #ffffff;
  }

  .modal-content {
    background: #1f2937;
    border: 1px solid #374151;
  }

  .modal-title {
    color: #f9fafb;
  }

  .modal-close {
    color: #9ca3af;
  }

  .modal-close:hover {
    color: #f9fafb;
  }

  .modal-button {
    background: #374151;
    border-color: #4b5563;
    color: #f9fafb;
  }

  .modal-button:hover {
    background: #831843;
    border-color: #be185d;
  }

  .modal-button svg {
    fill: #f9a8d4;
  }

  .modal-button-detail {
    color: #9ca3af;
  }

  .deliverable-item {
    background: #374151;
  }

  .deliverable-item h4 {
    color: #f9a8d4;
  }

  .deliverable-item p {
    color: #d1d5db;
  }

  .tag {
    color: #f9fafb;
  }

  .tag-pink { background-color: #831843; }
  .tag-purple { background-color: #6b21a8; }
  .tag-blue { background-color: #1e40af; }
  .tag-green { background-color: #065f46; }
  .tag-yellow { background-color: #92400e; }
  .tag-orange { background-color: #9a3412; }
  .tag-rose { background-color: #9f1239; }
  .tag-indigo { background-color: #4338ca; }
  .tag-teal { background-color: #115e59; }
  .tag-violet { background-color: #6d28d9; }

  .reference-case {
    background: #1f2937;
    border-left-color: #f9a8d4;
  }

  .case-roles {
    color: #f9a8d4;
  }

  .case-client {
    color: #f9fafb;
  }

  .case-location {
    color: #9ca3af;
  }

  .case-period {
    background-color: #1e3a8a;
    color: #93c5fd;
  }

  .case-description {
    color: #d1d5db;
  }

  .case-deliverables li {
    color: #d1d5db;
  }

  .case-deliverables li::before {
    color: #f9a8d4;
  }

  .case-button {
    background: #831843;
    border-color: #be185d;
    color: #fce7f3;
  }

  .case-button:hover {
    background: #be185d;
    color: #ffffff;
  }

  .education-item {
    border-bottom-color: #374151;
  }

  .education-title {
    color: #f9fafb;
  }

  .education-institution {
    color: #d1d5db;
  }

  .education-location {
    color: #9ca3af;
  }

  .education-year {
    background-color: #6b21a8;
    color: #e9d5ff;
  }

  .publication-item {
    background: #1f2937;
  }

  .publication-item:nth-child(1) {
    border-left-color: #f9a8d4;
  }

  .publication-item:nth-child(2) {
    border-left-color: #c4b5fd;
  }

  .publication-item:nth-child(3) {
    border-left-color: #93c5fd;
  }

  .publication-item:nth-child(4) {
    border-left-color: #6ee7b7;
  }

  .publication-title {
    color: #f9fafb;
  }

  .publication-publisher {
    color: #d1d5db;
  }

  .publication-year {
    background-color: #1e3a8a;
    color: #93c5fd;
  }

  .publication-description {
    color: #d1d5db;
  }

  .external-link {
    background: #831843;
    border-color: #be185d;
  }

  .external-link:hover {
    background: #be185d;
  }

  .external-link svg {
    fill: #fce7f3;
  }

  .external-link:hover svg {
    fill: #ffffff;
  }

  .lecture-item {
    border-left-color: #374151;
  }

  .lecture-item::before {
    border-color: #1f2937;
  }

  .lecture-type {
    background-color: #831843;
    color: #fce7f3;
  }

  .lecture-event {
    color: #f9fafb;
  }

  .lecture-year {
    color: #9ca3af;
  }

  .lecture-title {
    color: #d1d5db;
  }

  .signature {
    color: #f9fafb;
  }
}

/* ===================================
   PRINT STYLES
   Merged from HTML5 Boilerplate and custom styles
   =================================== */

@media print {
  /* HTML5 Boilerplate print optimizations */
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  /* Custom print styles for portfolio */
  .bg-gradient-1,
  .bg-gradient-2,
  .bg-pink,
  .bg-personal {
    background: white !important;
  }

  .contact-icon {
    display: none;
  }

  .modal-overlay,
  .case-button {
    display: none !important;
  }

  .external-link {
    display: none;
  }

  .reference-case,
  .publication-item {
    page-break-inside: avoid;
    border-left-color: #000 !important;
    background: white !important;
  }

  footer {
    background: white;
    color: black;
    border-top: 2px solid #000;
  }

  footer a {
    color: black;
  }

  .footer-columns {
    display: block;
  }

  .footer-column {
    margin-bottom: 1rem;
  }

  .signature {
    color: #000;
  }

  a {
    color: #000;
  }
}