body {
    margin: 0;
    padding: 0;
    font-family: 'PT Sans', Arial, sans-serif;
    background-color:whitesmoke
   
   
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    background-color: orangered;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: bold;
    position: relative;
    padding-bottom: 4px;
  }
  
  
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
  }
  
 
  .nav-link:hover::after {
    width: 100%;
  }
  

  .nav-link.active::after {
    width: 100%;
  }
  

.hero {
    position: relative;
    width: 100%;
    height: 50vh; 
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
}

.hero-content {
    max-width: 800px;
    color: white;
}

.hero h1 {
    font-size: 2rem; 
    font-weight: bold;
    margin-bottom: 0.8rem;

}

.line {
    width: 80px;
    height: 2px;
    background-color: white;
    margin: 0.8rem auto;
}

.hero p {
    font-size: 1rem;
    opacity: 0.8;
}


.about-section {
    max-width: 1000px;
    margin: 4rem auto; 
    padding: 3rem; 
    background-color: #fff;
    border-radius: 10px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

.about-header {
    display: flex;
    justify-content: flex-end;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 2rem; 
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 1.5rem;
    padding: 2rem; 
}

.about-text-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem; 
}

.about-image img {
    width: 400px;
    margin-top: 1.5rem; 
    border-radius: 8px; 
}

.about-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem; /* Added space below text */
}

/* Expertise section styling */
.expertise {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.expertise h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 1rem;
}

.expertise-grid {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1rem;
}

.expertise-item {
    flex: 1;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.expertise-item h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #666;
}

/* Ensure responsive layout */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-image img {
        width: 100%;
        max-width: 400px;
    }

    .expertise-grid {
        flex-direction: column;
        align-items: center;
    }
}







.about-gallery {
    max-width: 1000px;
    margin: auto;
    padding: 3rem 2rem;
}

.gallery-text {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.gallery-text h2 {
    font-size: 1.8rem;
    font-weight: bold;
}

.gallery-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: auto;
   
}

.gallery-images {
    display: flex;
    justify-content: center;
    gap: 1.5rem; /* Increased gap for better spacing */
    flex-wrap: wrap;
}

.gallery-item {
    width: calc(50% - 1rem); /* Two images per row with spacing */
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .gallery-item {
        width: 100%; /* Stacks images in one column on smaller screens */
        flex-direction: column;
        align-items: center;
    }
}



.more-interviews {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    font-family: 'PT Sans', sans-serif;
}

.more-interviews h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.interview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.interview-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: black;
    background: none;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.interview-card:hover {
    transform: translateY(-5px);
}

.interview-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.category {
    font-size: 0.8rem;
    color: #888;
    margin: 0.75rem 0 0.25rem;
    text-transform: uppercase;
}

.interview-card h3 {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}




.homepage {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;


    
      
  }
  
  .home-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
  }

.artcenterlogo {
  margin-top: -2rem;
}
  
  .title-block h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    
  }
  
  .intro-text {
    max-width: 500px;
    font-size: 1rem;
    line-height: 1.6;
    color: #222;
    margin-top: 1rem;
  }
  
  .interview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .interview-card {
    text-decoration: none;
    color: black;
  }
  
  .interview-card h2 {
    font-size: 1.3rem;
    font-weight: bold;
    
  }
  
  .meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    text-align: right;
  }
  
  .interview-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }
  
  .interview-card.disabled {
    pointer-events: none;
    opacity: 0.5;
  }
  
  .placeholder-image {
    width: 100%;
    padding-top: 66%;
    background-color: #d8d8d8;
    border-radius: 4px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .home-header {
      flex-direction: column;
    }
  
    .interview-grid {
      grid-template-columns: 1fr;
    }
  }
  

  .site-footer {
    background-color:orangered ;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: white;
    margin-top: 4rem;
    border-top: 1px solid #ddd;
  }
  
  .footer-content {
    max-width: 1000px;
    margin: auto;
  }
  
  .footer-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: white;
  }
  