:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --accent-color: #d8e3d8; 
    --border-color: #000000;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 40px 20px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
}


h1, h2, h3 {
    font-weight: 700;
    color: #000;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px; 
}

h2 {
    border-bottom: 3px solid black; 
    padding-bottom: 10px;
    text-transform: uppercase;
    font-size: 1.2rem;
}

nav {
    margin-bottom: 60px;
    font-family: monospace; 
    font-size: 1.1rem;
}

nav a {
    color: #666;
    margin-right: 20px;
    text-decoration: none;
}

nav a:hover, nav a.active {
    color: #000;
    text-decoration: underline;
}

.card {
    border: 2px solid black;
    padding: 20px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 0;
}

a {
    color: #666666;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
}

.bio-section {
    display: flex;          
    align-items: flex-start;
    gap: 40px;              
    margin-bottom: 50px;
}

.left-column {
    width: 240px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;        
    gap: 40px;                
}

.profile-pic {
    width: 100%;           
    height: 240px;         
    object-fit: cover;     
    border-bottom: none;    
    display: block;
}


.contact-card {
    width: 100%;           
    border: 2px solid black; 
    padding: 15px;
    box-sizing: border-box;
    font-size: 0.85rem;
    text-align: center;
    background-color: #fff;
}

.contact-card p {
    word-break: break-all;  
    margin: 5px 0;
}

@media (max-width: 600px) {
    .bio-section {
        flex-direction: column;
    }
}

.slideshow-container {
  max-width: 500px;
  

  height: 350px;
  
  position: relative;
  margin: auto;
  margin-top: 20px;

  background-color: transparent;
}


.mySlides {
  display: none;
  height: 100%;
  width: 100%;
}


.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white; 
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.mySlides {
  display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3); 
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}


.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

strong {
    font-weight: normal;
}

contact-card p {
    word-break: break-all; 
    font-size: 0.75rem;    
    line-height: 1.4;
}

.contact-card h3 {
    margin-top: 0;
    font-size: 1rem;       
}

.main-header {
    text-align: center; 
}
.my-video {
  width: 100%;       
  max-width: 600px;  
  height: auto;      
}
#playlist {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    border-top: 1px solid #eee;
}

/* 2. The Individual Rows */
#playlist li {
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

/* 3. Hover Effect - Clean & Subtle */
#playlist li:hover {
    background-color: #f4f4f4;
}

/* 4. The Links (The clickable area) */
#playlist li a {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Keeps icon and text together */
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

#playlist li a:active {
    background-color: #708090;
    color: white !important;
}

.play-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    fill: #666; 
    transition: fill 0.2s ease;
}

#playlist li:hover .play-icon {
    fill: #708090;
}

#playlist li a:active .play-icon {
    fill: white;
}
