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

html, body {
  height: 100%;
}

.page-wrapper {
  min-height: 100vh;  
  display: flex;
  flex-direction: column;  
  position: relative;
  z-index: 2;
}

.dark-home .page-wrapper { 
  margin-top: 100vh;
  background: #0f0f0f;
}

.content {
  flex: 1;        
  width: 85vw;     
  margin: 0 auto;   
  padding: 2rem 0;
}

h1, .headline {
    font-family: Texturina, Georgia, 'Times New Roman', Times, serif;
    font-size: 3.5rem;
    letter-spacing: 1px;
}

.image-banner img {
    height: 30vw;
    width: 100%;
    object-fit: contain;
    background-color: #1b1b1b;
} 

.photo-tile {
  position: relative;
  overflow: hidden;
  border-radius: .5rem; 
}

.photo-tile img {
  transition: transform 0.4s ease;
  display: block;  
}

.photo-tile:hover img {
  transform: scale(1.08);
}

.tile-label {
  position: absolute;
  bottom: 10px;      
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55); 
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 1.5rem;
  font-weight: 500;
  pointer-events: none;
  white-space: nowrap;
}

.title-text {
  font-family: Texturina;
}

p {
  font-family: Poppins !important;
}

.nav-item {
  font-family: Poppins !important;
  font-weight: bold;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.site-footer {
  background-color: #111;
  color: white;
}

.header-bg {
  background-color: #0f0f0f
}

.footer-name {
  font-family: Texturina, serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.footer-socials a {
  color: white;
  font-size: 1.4rem;
  margin: 0 12px;
}

.footer-copy {
  font-family: Poppins, sans-serif;
  font-size: 0.85rem;
  opacity: 0.6;
}


.art-detail {
  max-width: 1100px;
}

.art-page-title {
  font-size: 3rem;
  letter-spacing: 1px;
}

.art-description {
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

.art-meta p {
  font-family: Poppins, sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.horizontalBar {
  border-top: 1px solid #ccc;
}

.btn-outline-dark {
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: #111;
  color: white;
}

.featured-work {
  background-color: #f5f5f5;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.featured-title {
  font-size: 2.2rem;
  letter-spacing: 1px;
}

.featured-img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.featured-img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.dark-home {
  background-color: #0f0f0f;
  color: #f5f5f5;
}

.home-dark .featured-work {
  background-color: #0f0f0f;
}

.hero {
  position: fixed;
  height: 100vh; 
  top: 0;
  left: 0;
  width: 100%;
  background: url('images/ChattFilm02.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.45); 
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .headline {
  font-family: Texturina, serif;
  font-size: 4rem;
  letter-spacing: 1px;
}

.section-head {
  padding-bottom: 9px;
}