/* Ultra-Minimal Black & White Design */
:root {
  --black: #000000;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #666666;
  --gray-dark: #333333;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--black);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 300;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  color: var(--black);
  letter-spacing: -0.02em;
}

h1 { font-size: 3rem; font-weight: 200; }
h2 { font-size: 2rem; font-weight: 200; }
h3 { font-size: 1.5rem; font-weight: 300; }
h4 { font-size: 1.25rem; font-weight: 300; }
h5 { font-size: 1.1rem; font-weight: 400; }
h6 { font-size: 1rem; font-weight: 400; }

p {
  margin: 0 0 1.5rem 0;
  color: var(--gray-dark);
  font-weight: 300;
  line-height: 1.7;
}

.lead {
  font-size: 1.3rem;
  color: var(--gray-medium);
  font-weight: 300;
  margin-bottom: 2rem;
}

a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  transition: all 0.2s ease;
}

a:hover {
  background: var(--black);
  color: var(--white);
  padding: 2px 4px;
  margin: -2px -4px;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar .container {
  display: flex;
  justify-content: flex-end;
}

/* Navbar */
.navbar {
  background: var(--white);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  align-items: center;
}

.navbar-nav li {
  display: inline-block;
}

/* Main Layout */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-top: 5rem;
  align-items: start;
}

/* Profile Section */
.profile-sticky {
  position: sticky;
  top: 120px;
  padding-top: 0;
}

.nav-link {
  color: var(--black);
  font-weight: 300;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
  display: inline-block;
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  margin: -8px -16px;
}

/* Profile Section */
.profile-sticky {
  position: sticky;
  top: 100px;
}

.profile-content {
  text-align: left;
  margin-top: 0;
  padding-top: 0;
}

.profile-photo {
  width: 200px;
  height: 200px;
  border-radius: 0;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: none;
}

.profile-content h6 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 200;
}

.profile-content p {
  color: var(--gray-medium);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-weight: 300;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  /* Prevent size changes on hover */
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.btn:hover,
.btn:focus,
.btn:active {
  background: var(--black);
  color: var(--white);
  /* Maintain same size on hover */
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  /* Override Bootstrap hover effects */
  border-color: var(--black) !important;
  text-decoration: none !important;
}

.btn-outline-warm {
  border: 1px solid var(--black);
  color: var(--black);
}

.btn-outline-warm:hover {
  background: var(--black);
  color: var(--white);
}

.btn-warm {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-warm:hover {
  background: var(--black);
  color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1rem !important;
  font-size: 0.8rem !important;
  /* Force consistent sizing */
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
  /* Prevent any size changes */
  min-width: auto !important;
  min-height: auto !important;
  max-width: none !important;
  max-height: none !important;
  /* Prevent any hover size changes */
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

.btn-sm:hover,
.btn-sm:focus,
.btn-sm:active {
  padding: 0.5rem 1rem !important;
  font-size: 0.8rem !important;
  /* Force consistent sizing */
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
  /* Prevent any size changes */
  min-width: auto !important;
  min-height: auto !important;
  max-width: none !important;
  max-height: none !important;
  /* Prevent any hover size changes */
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

/* Override Bootstrap button hover effects globally */
.btn,
.btn:hover,
.btn:focus,
.btn:active,
.btn:visited,
.btn:not(:disabled):not(.disabled),
.btn:not(:disabled):not(.disabled):hover,
.btn:not(:disabled):not(.disabled):focus,
.btn:not(:disabled):not(.disabled):active {
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  /* Force consistent sizing */
  min-width: auto !important;
  min-height: auto !important;
  max-width: none !important;
  max-height: none !important;
  /* Prevent any Bootstrap transitions that might affect size */
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

/* Ensure social icons maintain exact dimensions */
.social-icons .btn,
.social-icons .btn:hover,
.social-icons .btn:focus,
.social-icons .btn:active,
.social-icons .btn:not(:disabled):not(.disabled),
.social-icons .btn:not(:disabled):not(.disabled):hover,
.social-icons .btn:not(:disabled):not(.disabled):focus,
.social-icons .btn:not(:disabled):not(.disabled):active {
  width: 35px !important;
  height: 35px !important;
  min-width: 35px !important;
  min-height: 35px !important;
  max-width: 35px !important;
  max-height: 35px !important;
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  /* Override any Bootstrap flexbox sizing */
  flex: none !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  /* Ensure consistent padding */
  padding: 0.5rem !important;
}

/* Additional Bootstrap button overrides */
.btn.btn-warm,
.btn.btn-outline-warm,
.btn.btn-sm,
.btn.btn-warm:hover,
.btn.btn-outline-warm:hover,
.btn.btn-sm:hover,
.btn.btn-warm:focus,
.btn.btn-outline-warm:focus,
.btn.btn-sm:focus,
.btn.btn-warm:active,
.btn.btn-outline-warm:active,
.btn.btn-sm:active {
  /* Force consistent sizing for all button variants */
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
  /* Prevent any size changes */
  min-width: auto !important;
  min-height: auto !important;
  max-width: none !important;
  max-height: none !important;
  /* Override Bootstrap's button sizing */
  line-height: 1.5 !important;
  font-size: inherit !important;
  /* Ensure consistent transitions */
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

/* Nuclear option: Override ALL button-related Bootstrap classes */
[class*="btn"] {
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
  /* Force exact sizing */
  width: auto !important;
  height: auto !important;
  min-width: auto !important;
  min-height: auto !important;
  max-width: none !important;
  max-height: none !important;
  /* Override Bootstrap padding */
  padding: 0.75rem 1.5rem !important;
  /* Prevent any size changes */
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
}

[class*="btn"]:hover,
[class*="btn"]:focus,
[class*="btn"]:active {
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
  /* Maintain exact same size on hover */
  width: auto !important;
  height: auto !important;
  min-width: auto !important;
  min-height: auto !important;
  max-width: none !important;
  max-height: none !important;
  /* Keep same padding on hover */
  padding: 0.75rem 1.5rem !important;
  /* Prevent any size changes */
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
}

/* Force social icons to exact size */
.social-icons .btn,
.social-icons .btn:hover,
.social-icons .btn:focus,
.social-icons .btn:active,
.social-icons [class*="btn"],
.social-icons [class*="btn"]:hover,
.social-icons [class*="btn"]:focus,
.social-icons [class*="btn"]:active {
  width: 35px !important;
  height: 35px !important;
  min-width: 35px !important;
  min-height: 35px !important;
  max-width: 35px !important;
  max-height: 35px !important;
  padding: 0.5rem !important;
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
  /* Override any Bootstrap flexbox */
  flex: none !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  /* Prevent any transitions that affect size */
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

/* Ultimate override: Target every possible button scenario */
body .btn,
body .btn:hover,
body .btn:focus,
body .btn:active,
body [class*="btn"],
body [class*="btn"]:hover,
body [class*="btn"]:focus,
body [class*="btn"]:active,
.container .btn,
.container .btn:hover,
.container .btn:focus,
.container .btn:active,
.container [class*="btn"],
.container [class*="btn"]:hover,
.container [class*="btn"]:focus,
.container [class*="btn"]:active {
  /* Force consistent sizing */
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
  /* Prevent any size changes */
  min-width: auto !important;
  min-height: auto !important;
  max-width: none !important;
  max-height: none !important;
  /* Override Bootstrap's default button sizing */
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  /* Ensure consistent padding */
  padding: 0.75rem 1.5rem !important;
  /* Prevent any hover size changes */
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

/* Project detail buttons - make them smaller and consistent */
.project-actions .btn,
.project-actions .btn:hover,
.project-actions .btn:focus,
.project-actions .btn:active,
.project-actions .btn-sm,
.project-actions .btn-sm:hover,
.project-actions .btn-sm:focus,
.project-actions .btn-sm:active {
  /* Smaller size for project buttons */
  padding: 0.5rem 1rem !important;
  font-size: 0.8rem !important;
  /* Force consistent sizing */
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
  /* Prevent any size changes */
  min-width: auto !important;
  min-height: auto !important;
  max-width: none !important;
  max-height: none !important;
  /* Prevent any hover size changes */
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  justify-content: flex-start;
}

.social-icons .btn {
  padding: 0.5rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  /* Prevent size changes on hover */
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Research Question Styling */
.research-question {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--black);
  padding: 1rem;
  margin: 1rem 0;
  border-left: 3px solid var(--black);
  background-color: var(--gray-light);
  font-weight: 400;
}

.research-question .action-word {
  font-weight: 700;
  color: var(--black);
  font-style: normal;
  border-bottom: 2px solid var(--black);
}

.research-question .role-word {
  font-weight: 600;
  color: var(--gray-dark);
  font-style: normal;
  background-color: var(--white);
  padding: 0.1rem 0.3rem;
}

/* News Section */
.news-section h2 {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--black);
  font-weight: 600;
  text-align: left;
  position: relative;
}

.news-section h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 1px;
  background: var(--black);
}

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

.news-item {
  display: flex;
  gap: 2rem;
  align-items: baseline;
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-light);
}

.news-date {
  color: var(--black);
  font-weight: 400;
  font-size: 0.9rem;
  min-width: 80px;
  font-family: 'Courier New', monospace;
}

.news-text {
  color: var(--gray-dark);
  font-size: 0.95rem;
  flex: 1;
}

/* Main Content */
main {
  padding-top: 0;
}

.section-title {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--black);
  font-weight: 600;
  text-align: left;
  letter-spacing: -0.02em;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 1px;
  background: var(--black);
}

/* Research Interests */
.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.research-card {
  text-align: left;
  padding: 2rem 1rem;
}

.research-card h5 {
  margin-bottom: 1rem;
  color: var(--black);
  font-weight: 300;
  font-size: 1.3rem;
}

.research-card p {
  margin: 0;
  color: var(--gray-dark);
  font-size: 1rem;
}

/* Publications */
.publications-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-light);
}

.publications-section .container {
  text-align: left;
}

.pub-card {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    gap: 2rem;            /* fix: no space */
    align-items: flex-start;
  }
  
  .pub-thumb {
    flex: 0 0 180px;      /* make it a fixed column */
    aspect-ratio: 16 / 9; /* keeps a nice shape */
    height: auto;         /* let aspect-ratio handle height */
    margin-bottom: 0;     /* flex gap handles spacing */
  }
  
  .pub-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid var(--gray-light);
    display: block;
  }
  
  .pub-content {
    flex: 1 1 auto;
    margin-left: 0;       /* fix: remove invalid 3 rem */
  }
  
  .pub-content h5 {
    margin: 0 0 0.4rem 0;
    color: var(--black);
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.3;
  }
  
  .pub-authors {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    font-style: italic;
  }
  
  .badge {
    display: inline-block;
    border: 1px solid var(--gray-light);
    padding: 0.15rem 0.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.6rem;
  }
  
  .pub-description {
    color: var(--gray-dark);
    margin: 0 0 0.8rem 0;
    line-height: 1.6;
  }
  
  /* Keep your button sizing stable without zeroing margins globally */
  .pub-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }
  
  .pub-actions .btn {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.75rem !important;
    line-height: 1.5 !important;
    border-radius: 0 !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
  }
  
  /* Responsive: stack on small screens */
  @media (max-width: 700px) {
    .pub-card {
      flex-direction: column;
      gap: 1rem;
    }
    .pub-thumb {
      width: 100%;
      flex: none;
    }
  }
  

.pub-actions .btn {
  padding: 0.4rem 0.8rem !important;
  font-size: 0.75rem !important;
  /* Force consistent sizing */
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
  /* Prevent any size changes */
  min-width: auto !important;
  min-height: auto !important;
  max-width: none !important;
  max-height: none !important;
  /* Prevent any hover size changes */
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

.pub-actions .btn:hover,
.pub-actions .btn:focus,
.pub-actions .btn:active {
  padding: 0.4rem 0.8rem !important;
  font-size: 0.75rem !important;
  /* Force consistent sizing on hover */
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
  /* Prevent any size changes */
  min-width: auto !important;
  min-height: auto !important;
  max-width: none !important;
  max-height: none !important;
  /* Prevent any hover size changes */
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

/* Universal button styling - works on ALL pages */
.btn {
  padding: 0.4rem 0.8rem !important;
  font-size: 0.75rem !important;
  line-height: 1.5 !important;
  border-radius: 0 !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
  /* Prevent any size changes */
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  /* Prevent any size changes */
  min-width: auto !important;
  min-height: auto !important;
  max-width: none !important;
  max-height: none !important;
  /* Prevent any hover size changes */
  flex: none !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  /* Prevent any margin/padding changes */
  margin: 0 !important;
  /* Prevent any border changes that might affect size */
  border-width: 1px !important;
  /* Prevent any font changes */
  font-family: inherit !important;
  /* Prevent any box-sizing changes */
  box-sizing: border-box !important;
}

.badge {
  background: var(--black);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 300;
  font-family: 'Courier New', monospace;
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--black);
  margin-top: 5rem;
  padding: 3rem 0;
  text-align: center;
  color: var(--gray-medium);
  font-size: 0.9rem;
}

/* Research Areas Styling */
.research-areas {
  margin: 2rem 0;
}

.research-areas-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.research-area {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-left: 4px solid var(--black);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.research-area-number {
  background-color: var(--black);
  color: var(--white);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.research-area-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--black);
}

.research-area-content p {
  margin: 0;
  line-height: 1.6;
  color: var(--gray-dark);
}

/* Internship Text Styling */
.internship-text {
  color: #6B8E23 !important; /* Olive green color */
}

strong.internship-text {
  color: #6B8E23 !important; /* Olive green color */
}

/* Mobile Layout - Sidebar First, Then Main Content */
@media (max-width: 768px) {
  .main-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .profile-sticky {
    position: static;
    order: 1;
  }
  
  main {
    order: 2;
  }
  
  .publications-section {
    margin-top: 2rem;
    padding-top: 2rem;
  }
  
  .pub-card {
    flex-direction: column;
    gap: 1rem;
  }
  
  .pub-thumb {
    width: 100%;
    flex: none;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .profile-photo {
    width: 200px;
    height: 200px;
  }
  
  .research-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .navbar-nav {
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .pub-card {
    text-align: center;
    flex-direction: column;
  }
  
  .pub-thumb {
    margin: 0 auto 1.5rem auto;
  }
  
  .pub-actions {
    justify-content: center;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }
  
  .gallery-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .music-project, .essay-project {
    flex-direction: column;
    gap: 1rem;
  }
  
  .music-thumb, .essay-thumb {
    width: 100%;
    height: 200px;
  }
  
  .video-container {
    max-width: 100%;
  }
  
  .video-container iframe {
    height: 200px;
  }
  
  .project-card {
    flex-direction: column;
    gap: 1rem;
  }
  
  .project-thumb {
    width: 100%;
    height: 200px;
  }
}

/* Project Card Styles */
.project-card {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-light);
}



.project-thumb {
  width: 200px;
  height: 150px;
  flex-shrink: 0;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--gray-light);
}

.project-content {
  flex: 1;
}

.project-content h5 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--black);
}

.project-description p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Art Page Styles */
.art-gallery {
  margin-bottom: 3rem;
}

/* Horizontal Art Gallery */
.art-gallery-horizontal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.art-photo {
  text-align: center;
}

.art-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 1px solid var(--gray-light);
  transition: all 0.2s ease;
}

.art-photo img:hover {
  border-color: var(--black);
}

/* Mobile: Stack horizontally one by one */
@media (max-width: 768px) {
  .art-gallery-horizontal {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .art-photo {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
    background-color: var(--white);
    border-left: 3px solid var(--black);
    text-align: left;
  }
  
  .art-photo img {
    width: 300px;
    height: 200px;
    flex-shrink: 0;
  }
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 1px solid var(--gray-light);
  transition: all 0.2s ease;
}

.gallery-item img:hover {
  border-color: var(--black);
}

.art-project {
  margin-bottom: 3rem;
}

.pdf-embed {
  width: 100%;
  height: 400px;
  margin-bottom: 1rem;
  border: 1px solid var(--gray-light);
}

.pdf-embed embed {
  width: 100%;
  height: 100%;
}

.art-caption {
  text-align: center;
  color: var(--gray-medium);
  font-style: italic;
  margin: 0;
}

.video-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 1rem auto;
}

.video-container iframe {
  width: 100%;
  height: 315px;
  border: 1px solid var(--gray-light);
}

.music-project, .essay-project {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-light);
}

.music-thumb, .essay-thumb {
  width: 120px;
  min-width: 120px;
  height: 120px;
}

.music-thumb img, .essay-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--gray-light);
}

.music-content, .essay-content {
  flex: 1;
}

.music-content h5, .essay-content h5 {
  margin-bottom: 0.4rem;
  color: var(--black);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.3;
}

.music-content p, .essay-content p {
  margin-bottom: 1rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.music-content audio {
  width: 100%;
  margin-bottom: 1rem;
}

/* Remove all Bootstrap styling */
.card, .soft-panel, .btn-md, .text-muted, .small, .mb-0, .list-unstyled {
  all: unset;
}

/* Clean spacing */
.py-4 { padding: 2rem 0 !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.g-4 { gap: 1.5rem !important; }

/* Remove top accent */
.top-accent {
  display: none;
}

