.landing-body {
  margin: 0;
  height: 100vh;
  background: url('background.jpg') no-repeat center center/cover;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: 0.2em;
  color: white;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}

.left-text h1 {
  font-size: 4rem; 
  margin: 0;
  font-weight: 600;
}

.left-text p {
  margin-top: 5px;
  font-size: 0.9rem;
  font-weight: 300;
}

.right-links {
  display: flex;
  gap: 40px;
}

.right-links a {
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
  font-weight: 400;
  transition: 0.3s;
}

.right-links a:hover {
  color: #cccccc;
  letter-spacing: 0.25em;
}

body {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.bio-body {
  margin: 0;
  min-height: 100vh;
  background-color: #ffffff;
  color: #000000;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: 0.03em;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  background-color: #000000;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-left h1 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
}

.header-right {
  display: flex;
  gap: 40px;
}

.header-right a {
  text-decoration: none;
  color: white;
  font-size: 0.95rem;
  transition: 0.3s;
}

.header-right a:hover,
.header-right a.active {
  color: #00b4d8;
}

.bio-content {
  max-width: 800px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: left;
}

.bio-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #000000;
  display: inline-block;
  padding-bottom: 5px;
}

.bio-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #111111;
}

/* --------------------
   FIXED ABOUT LAYOUT
   Text = 3/4 width
   Image = 1/4 width
--------------------- */
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 40px;
  gap: 60px;
}

.about-left {
  flex: 3;
  text-align: left;
}

.about-left h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: left;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 5px;
}

.about-left p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #111;
  margin-bottom: 20px;
}

.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-right img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.headshot-text {
  margin-top: 15px;
}

.headshot-text h3 {
  margin: 10px 0 5px 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.headshot-text p {
  font-size: 0.95rem;
  color: #444;
}

@media (max-width: 850px) {
  .about-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-left, .about-right {
    width: 100%;
  }

  .about-left h2 {
    text-align: center;
  }
}

.contact-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 40px;
  gap: 60px;
}

.contact-left {
  flex: 2;
}

.contact-left h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 5px;
}

.contact-left p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #111;
  margin-bottom: 20px;
}

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  font-size: 1rem;
  color: #000;
  margin: 5px 0;
}

.contact-info a {
  color: #000;
  text-decoration: underline;
  transition: 0.3s;
}

.contact-info a:hover {
  color: #00b4d8;
}

.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-right img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 850px) {
  .contact-layout {
    flex-direction: column;
    align-items: center;
  }

  .contact-left, .contact-right {
    width: 100%;
  }

  .contact-right {
    margin-top: 30px;
  }
}

.portfolio-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
  text-align: center;
}

.portfolio-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 5px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.portfolio-item img:hover {
  transform: scale(1.02);
}

.portfolio-item p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #111;
  line-height: 1.5;
}

@media (max-width: 950px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 1024px) {
  .header-left h1 {
    font-size: 1.2rem;
  }

  .header-right a {
    font-size: 0.9rem;
    gap: 30px;
  }

  .about-section,
  .contact-layout,
  .portfolio-section {
    padding: 0 20px;
  }

  .portfolio-grid {
    gap: 25px;
  }
}

@media (max-width: 850px) {
  .main-header {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
  }

  .header-right {
    gap: 25px;
    margin-top: 10px;
  }

  .about-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

  .about-left h2 {
    text-align: center;
  }

  .contact-layout {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-right img {
    max-width: 90%;
    margin: 0 auto;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .header-left h1 {
    font-size: 1rem;
  }

  .header-right {
    gap: 15px;
  }

  .header-right a {
    font-size: 0.85rem;
  }

  .bio-content,
  .contact-left,
  .about-left {
    padding: 0 10px;
  }

  .about-left h2,
  .portfolio-section h2,
  .contact-left h2 {
    font-size: 1.5rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item p {
    font-size: 0.9rem;
  }

  .contact-info p {
    font-size: 0.9rem;
  }

  .about-right img {
    max-width: 250px;
  }
}

.audio-toggle {
  background: #00b4d8;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s;
  margin-left: 20px;
}

.audio-toggle:hover {
  background: #0090ad;
}

.audio-toggle[aria-pressed="false"] {
  background: #555;
}

.logo-link {
  text-decoration: none;
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
}

.logo-link:hover {
  color: #00b4d8;
}


/* CONTACT POPUP STYLES */

.blurred {
  filter: blur(6px);
  transition: 0.3s;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: white;
  width: 70%;
  max-width: 850px;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

.modal-left {
  width: 40%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-left img {
  width: 90%;
  border-radius: 10px;
}

.modal-right {
  width: 60%;
  padding: 30px 40px;
  font-family: Helvetica, sans-serif;
  color: black;
}

.modal-right h2 {
  margin: 0;
  font-size: 1.6rem;
  color: #000;
}

.modal-right p {
  margin-top: 4px;
  margin-bottom: 18px;
  color: #333;
}

.modal-right input,
.modal-right textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.send-btn {
  width: 100%;
  padding: 12px;
  background: #00b4d8;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.send-btn:hover {
  background: #0090ad;
}

.page-content.blurred {
  filter: blur(6px);
  transition: 0.3s;
}

.cancel-btn {
  width: 100%;
  padding: 12px;
  background: white;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.cancel-btn:hover {
  background: #f2f2f2;
}

.ada-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  padding: 10px 18px;
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: 0.2s;
}

.ada-btn:hover {
  background: rgba(0,0,0,0.9);
}

.landing-ada-toggle {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

