/* Yellow email link styling */
.email-link {
  color: #ffd600 !important;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s;
}
.email-link:hover {
  color: #fff200 !important;
}
/* Bright email link styling for Jonathan and Fredrick */
.bright-email {
  color: #00ffe7 !important;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s;
}
.bright-email:hover {
  color: #fff200 !important;
}
/* About me link styling */
.about-link {
  display: inline-block;
  margin-top: 0.7rem;
  color: #ffd600;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s;
}
.about-link:hover {
  color: #fff200;
  text-decoration: none;
}
/* tunnels.ai main stylesheet */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(120deg, #232526, #414345);
  color: #fff;
  min-height: 100vh;
}
/* Image Gallery Styles */
.gallery-section {
  max-width: 1100px;
  margin: 3rem auto;
  background: rgba(40, 40, 40, 0.98);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  padding: 2.5rem 2rem;
  animation: slideUp 1.2s;
}
.gallery-section h2 {
  color: #00ffe7;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  text-align: center;
}
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,255,231,0.10);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-img:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 24px rgba(0,255,231,0.18);
}

/* Slideshow Modal Styles */
.slideshow-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 30, 30, 0.97);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.7s;
}
.slideshow-content {
  position: relative;
  max-width: 700px;
  width: 90vw;
  background: #232526;
  border-radius: 16px;
  box-shadow: 0 2px 32px rgba(0,255,231,0.18);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
}
#slideshowImg {
  width: 100%;
  max-height: 60vh;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,255,231,0.12);
  transition: transform 0.3s;
}
.slideshow-controls {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.slideshow-controls button {
  background: #00ffe7;
  color: #232526;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,255,231,0.10);
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.slideshow-controls button:hover {
  background: #007cf0;
  color: #fff;
  transform: scale(1.12);
}
.close-modal {
  position: absolute;
  top: 18px;
  right: 28px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s;
}
.close-modal:hover {
  color: #00ffe7;
}
.slideshow-caption {
  margin-top: 1rem;
  color: #00ffe7;
  font-size: 1.1rem;
  font-weight: 500;
}
@media (max-width: 700px) {
  .slideshow-content { padding: 1rem 0.3rem; }
  #slideshowImg { max-height: 40vh; }
}
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(30, 30, 30, 0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav a {
  color: #00ffe7;
  text-decoration: none;
  margin: 0 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s;
  position: relative;
}
nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #00ffe7;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
nav a:hover {
  color: #fff;
}
nav a:hover::after {
  width: 100%;
}
.hero {
  text-align: center;
  padding: 5rem 1rem 3rem 1rem;
  animation: fadeIn 1.2s;
}
.hero h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #00ffe7, #007cf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
}
.cta-btn {
  background: #00ffe7;
  color: #232526;
  border: none;
  padding: 0.8rem 2.2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,255,231,0.15);
  transition: background 0.3s, color 0.3s;
}
.cta-btn:hover {
  background: #007cf0;
  color: #fff;
}
section {
  max-width: 900px;
  margin: 2rem auto;
  background: rgba(40, 40, 40, 0.95);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  padding: 2.5rem 2rem;
  animation: slideUp 1.2s;
}
section h2 {
  color: #00ffe7;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.team {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.member {
  background: #232526;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.3s;
}
.member:hover {
  transform: translateY(-8px) scale(1.04);
}
.member img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 0.7rem;
  border: 2px solid #00ffe7;
}
.member h3 {
  margin: 0.5rem 0 0.2rem 0;
  color: #00ffe7;
}
.member p {
  color: #b0b0b0;
  font-size: 0.98rem;
}
footer {
  text-align: center;
  padding: 2rem 0 1rem 0;
  color: #b0b0b0;
  font-size: 1rem;
}
.social-links a {
  color: #00ffe7;
  margin: 0 0.7rem;
  font-size: 1.5rem;
  transition: color 0.3s;
}
.social-links a:hover {
  color: #fff;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 700px) {
  .team { flex-direction: column; align-items: center; }
  section { padding: 1.2rem 0.5rem; }
  .hero h1 { font-size: 2.1rem; }
}
