/* Global */
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: url("assets/background.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  color: #fff;
  font-family: 'Permanent Marker' ;
}

.content-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  min-height: 100vh;
  padding-bottom: 2rem;
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  word-wrap:normal;
}

.site-header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.site-nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.site-nav a:hover {
  color: #ffd700;
}

/* Hero */
.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  font-size: 3rem;
  color: white;
  font-weight: bold;
}

.scroll-cue {
  font-size: 2rem;
  margin-top: 2rem;
  animation: bounce 1.5s infinite;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Portfolio Grid */
#portfolio h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;

}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 0.5rem;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .overlay {
  opacity: 1;
}


#publications {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

#publications h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;

}

.publications-list {
  list-style-type: none;
  padding-left: 0;
  font-size: 1.1rem;
}

.publications-list li {
  margin-bottom: 1rem;
}

.publications-list a {
  color: #ffd700;
  text-decoration: none;
}

.publications-list a:hover {
  text-decoration: underline;
}

#contact {
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 0 auto 4rem auto;
  color: #fff;
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #ffd700;
  background-color: rgb(255, 255, 255);
}

.contact-form button {
  background-color: #ffd700;
  border: none;
  padding: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 5px;
  color: #000;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e6c200;
}

.hero-slideshow {
  margin-top: 1.5rem;
  width: auto;  /* adjust size as needed */
  height: 438px; /* keep 4:3 aspect ratio */
  overflow: hidden;
  border: 3px solid #ffc400a2;
  border-radius: 8px;
  box-shadow: 0 0 10px #ffc400a2;
}

.hero-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
  transition: opacity 0.5s ease;
}

.site-footer {
  text-align: center;
  padding: 1rem 0 2rem 0;
  background: rgba(0, 0, 0, 0.6);
}

.social-icon {
  width: 32px;
  height: 32px;
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  transition: filter 0.3s ease;
}

.social-icon:hover {
  filter: invert(65%) sepia(87%) saturate(746%) hue-rotate(320deg) brightness(92%) contrast(91%);
}

#blackout {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease;
}

.bulb-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bulb-glow {
  position: absolute;
  top: 15%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #ffd700 0%, transparent 100%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 0;
  filter: blur(12px);
}

.bulb {
  width: 140px;
  filter: none; /* bulb starts OFF */
  transition: filter 0.5s;
}

.bulb.on + .bulb-glow {
  opacity: 1;
  animation: glow-on 2s forwards;
}


@keyframes glow-on {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(2);
    opacity: 1;
  }
}

#chain {
  position:relative;
  left: 50px;
  margin-top: -20px;
  margin-left: 0px;
  z-index: -1;
}

#pullHandle {
  position: absolute;
  margin-left: 20px;
  top: 240px;
  width: 12px;
  height: 136px;
  background: transparent;
  cursor: grab;
  z-index: 2;
}

.permanent-marker-regular {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
}

.lb-image {
  max-width: 90vw !important;
  max-height: 80vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block;
  margin: auto;
}

.lb-outerContainer {
 
  max-width: 90vw !important;
  max-height: 80vh !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #000; /* optional dark background */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

/* Paperwork Grid */
#paperwork h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.paperwork-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.logo a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.logo a:hover {
  color: #ffd700;
}

