/* GENERAL IMAGE AND TEXT */ *{ margin:0; padding:0; box-sizing:border-box; }  body{ font-family:Arial,sans-serif; line-height:1.6; background:#000; color:#fff; scroll-behavior:smooth; padding-bottom:60px; padding-top:320px; /* Further increased space for fixed header unit */ }  body{ cursor:url("https://i.imgur.com/isbiQtJ.png"), auto; }  h1,h2,p,li,a{ color:#fff; text-decoration:none; }  /* ========================= FIXED CENTER LOGO ========================= */  .centered-logo{ position:fixed !important; top:10px !important; left:50%; transform:translateX(-50%); z-index:2000; }  .centered-logo img{ width:120px; height:auto; display:block; }  /* ========================= NAVBAR ========================= */  .header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 5px;
}

.centered-logo {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  padding: 10px 0;
}

.navbar {
  position: relative !important;
  top: 0 !important;
  width: 100%;
  background: #000;
  padding: 1em;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}  .navbar ul{ list-style:none; display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:20px; }  .navbar a{ display: inline-block; padding:10px 20px; border-radius:8px; border: 1px solid #fff; background: #000; color: #fff; font-weight: bold; transition:.3s; text-transform: uppercase; letter-spacing: 1px; }  .navbar a:hover, .navbar a.active{ background:#fff; color:#000; box-shadow:0 0 15px #fff; transform: translateY(-2px); }  /* HERO */ .hero{ position:relative; display:flex; justify-content:center; align-items:center; text-align:center; min-height:100vh; padding:5em 2em; overflow:hidden; }  .hero-content{ max-width:900px; margin:auto; z-index:2; }  .hero h1{ font-size:2.5rem; margin-bottom:.2em; }  .hero .title{ font-size:1.5rem; color:#ccc; margin-bottom:1em; }  .bio{ max-width:650px; margin:0 auto 2em; font-size:1.1rem; line-height:1.7; }  /* HEADSHOT */ .headshot{ width:160px; height:160px; object-fit:cover; border-radius:50%; border:4px solid #fff; box-shadow:0 0 20px #fff; margin-bottom:1em; transition:.3s; }  .headshot:hover{ transform:scale(1.05); box-shadow:0 0 30px #fff; }  /* ICON BUTTONS */ .btn, button{ display:inline-block; background:#d4af37; color:#fff; padding:12px 20px; border:none; border-radius:8px; font-weight:bold; transition:.3s; }  .btn:hover, button:hover{ transform:translateY(-2px); box-shadow:0 0 15px #fff; }  /* CTA BUTTONS */ .cta-buttons, .buttons{ display:flex; justify-content:center; flex-wrap:wrap; gap:1.5rem; margin-top:2rem; }  /* SECTIONS */ section { 
  padding: 20px 20px; 
  margin: 0 auto; 
  border-radius: 10px; 
  text-align: center; 
  background: #000;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

section h1 {
  margin-top: -80px;
  margin-bottom: 15px;
}

section p:first-of-type {
  margin-bottom: 30px;
}

.hero h1 {
  margin-top: 0;
  margin-bottom: 0.2em;
}

/* Ensure the hero section on homepage also moves down */
.hero {
  min-height: auto !important;
  padding-top: 0px !important;
}

.hero .headshot {
  margin-top: 20px;
}

body {
  padding-top: 340px !important;
}  .about, .contact{ max-width:900px; }  .portfolio{ max-width:1200px; }  /* ========================= PORTFOLIO / SERVICES / PROJECTS GRID ========================= */  .projects, .portfolio-grid, .services-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:2rem; max-width:1200px; margin:0 auto; align-items:stretch; }  /* ========================= CARDS ========================= */  .card, .service, .project-card, .portfolio-card, .featured-card{ width:100%; height:100%; min-height:340px;  display:flex; flex-direction:column; align-items:center;  background:#111; border:1px solid #fff; border-radius:12px; padding:1.5em;  box-shadow:0 0 10px rgba(255,255,255,.2); transition:.3s; }  .card:hover, .service:hover, .project-card:hover, .portfolio-card:hover, .featured-card:hover{ transform:translateY(-5px); box-shadow:0 0 20px #fff; }  .card img, .service img, .project-card img, .portfolio-card img, .featured-card img{ width:100%; height:220px; object-fit:cover; border-radius:8px; margin-bottom:1em; }  .card h2, .card h3, .service h2, .service h3{ margin-bottom:.75rem; }  .card p, .service p{ flex-grow:1; }  /* FEATURED WORK */ .featured{ display:flex; justify-content:center; flex-wrap:wrap; gap:2em; margin-top:2em; }  /* ABOUT SECTION */ .about .headshot{ width:180px; height:180px; display:block; margin:1em auto; }  .about .bio{ max-width:700px; text-align:center; }  /* SKILLS */ .skills{ display:grid; grid-template-columns:1fr 1fr; gap:2rem; max-width:1000px; margin:3em auto; }  .skill-column{ background:#111; border:1px solid #fff; border-radius:10px; padding:1.5em; box-shadow:0 0 10px rgba(255,255,255,.2); transition:.3s; }  .skill-column:hover{ transform:translateY(-5px); box-shadow:0 0 20px #fff; }  .skill-column h2{ text-align:center; margin-bottom:1rem; }  .skill-column ul{ list-style:none; }  .skill-column li{ background:#fff; color:#000; margin:.5em 0; padding:.7em; border-radius:6px; }  /* HIRE ME */ .hire-me{ margin-top:2em; padding:1.5em; background:#111; border:1px solid #fff; border-radius:10px; box-shadow:0 0 10px rgba(255,255,255,.2); }  /* CONTACT */ .contact-info a:hover{ background:#fff; color:#000; padding:2px 6px; border-radius:5px; }  /* FORM */ form{ display:flex; flex-direction:column; max-width:500px; margin:auto; }  input, textarea{ background:#111; color:#fff; border:1px solid #fff; border-radius:6px; padding:12px; margin-bottom:1em; }  textarea{ min-height:120px; }  form button{ background:#d4af37; }  /* FOOTER */ footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 10px;
  z-index: 1000;
  text-align: center;
}

.footer-content p {
  font-size: 9px;
  color: #000;
  margin-top: 5px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  background: #000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 10px;
  text-decoration: none;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: bold;
}

.social-links a:hover {
  background: #444;
  transform: translateY(-2px);
}

.contact-info-container {
  border: 4px solid #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
}  /* AUDIO */ h3{ font-size:10px; text-align:center; } h1, h2 { text-decoration: underline; text-decoration-color: #fff; text-underline-offset: 8px; }

h2 {
  font-size: 1.2rem;
}

h1 {
  animation: pulsate 2s infinite ease-in-out;
}

.hero-subtitle {
  display: block;
  font-size: 0.75rem;
  color: #ccc;
  margin-top: 0.5rem;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-subtitle .bullet {
  text-decoration: inherit;
  display: inline;
  color: #fff;
  margin: 0 5px;
  font-weight: bold;
}

.skill-column ul {
  list-style-type: disc !important;
  padding-left: 25px !important;
  text-align: left !important;
  display: block !important;
}

.skill-column li {
  display: list-item !important;
  background: none !important;
  color: #fff !important;
  margin: .5em 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  list-style: disc !important;
}

@keyframes pulsate {
  0% { text-shadow: 0 0 5px #fff, 0 0 10px #fff; transform: scale(1); }
  50% { text-shadow: 0 0 15px #fff, 0 0 30px #fff; transform: scale(1.02); }
  100% { text-shadow: 0 0 5px #fff, 0 0 10px #fff; transform: scale(1); }
}

.header-container {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(5px);
}

.social-links a {
  background: #000;
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  body {
    padding-top: 120px;
    padding-bottom: 80px;
    cursor: auto; /* Remove custom cursor on mobile for better touch response */
  }

  .centered-logo img {
    width: 80px; /* Smaller logo for mobile */
  }

  .navbar {
    position: relative !important;
    top: 0 !important;
    padding: 0.5em;
  }
  .header-container {
    position: fixed;
  }

  .navbar ul {
    gap: 10px;
  }

  .navbar a {
    font-size: 0.85rem;
    padding: 6px 8px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .title {
    font-size: 1.1rem;
  }

  .headshot {
    width: 120px;
    height: 120px;
  }

  section {
    padding: 2em 1em;
    margin: 1em auto;
  }

  .projects, .portfolio-grid, .services-grid {
    grid-template-columns: 1fr; /* Stack cards in a single column */
    gap: 1.5rem;
  }

  .skills {
    grid-template-columns: 1fr; /* Stack skill columns */
  }
}

u, .glow-text {
  text-decoration: none;
  border-bottom: 2px solid #fff;
  text-shadow: 0 0 10px #fff, 0 0 20px #fff;
  transition: 0.3s;
}

section {
  display: none;
  min-height: calc(100vh - 200px);
}

section:target, section.active {
  display: block !important;
}