
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Geo:ital@0;1&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Libre+Caslon+Display&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

html, body {
  font-size: 16px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

:root {
  --cream: #FEFEFE;
  --blue: #498EDB;
  --red: #FB4D11;
  --yellow: #F0D750;
  --text-color: #0C0B08;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--cream);
  color: var(--text-color);
  position: relative;
}

main {
  flex: 1; /* grows to fill vertical space */
}

/* Navigation bar 
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0.85;
  background-color: var(--red);  
  padding: 0rem 0rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);  
}*/

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(251, 77, 17, 0.8); /* translucent red */
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px); /* Safari support */
  padding: 0rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4); /* subtle depth */
  border-bottom: 2px solid rgba(255, 255, 255, 0.2); /* optional glass border */
}

.nav-logo {
  flex: 1;
}

.nav-logo img {
  height: clamp(50px, 10vw, 100px);
  width: auto;
  display: block;
}

.navbar ul {
  flex: 10;
  list-style: none;
  display: flex;
  flex-wrap: wrap; /* enables wrapping */
  gap: clamp(1rem, 5vw, 5rem);
}

.nav-list li a {
  font-family: 'Outfit', serif;
  color: var(--cream);
  display: inline-block;
  text-decoration: none;
  font-size: clamp(1, 1.5vw, 1.5rem);
  transition: all 0.5s ease;
}

.nav-list li a:hover {
  transform: scale(1.3);           /* slightly grow */
  color: var(--cream);             /* or any color you want */
  text-shadow: 0px 0px 10px rgba(256, 256, 256, 0.5);
}


/* Hide nav-toggle on desktop */
.nav-toggle {
  flex: 0;
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-family: 'Outfit', serif;
  font-size: 1rem;
  cursor: pointer;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* semi-transparent black */
  backdrop-filter: blur(8px);          /* blur effect */
  -webkit-backdrop-filter: blur(8px);  /* Safari support */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.nav-list li {
  margin: 1rem 0;
}

.nav-list a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}


/* Fullscreen nav links */
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.nav-links li {
  margin: 1rem 0;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  color: white;
  text-decoration: none;
}


/* Hero Section */
.hero {
  position: relative;
  width: 100%;
}

.hero-image {
  position: fixed;
  top: -5%;
  transform: scale(0.9);
  transform-origin: center;
  left: 0;
  width: 100%;
  object-fit: cover;
  z-index: 0;
  /*filter: brightness(80%);*/
}

.content {
  position: relative;
  top:65vh;
  left: 5%;
  z-index: 2;
  text-align: left;
}

.title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 7vw, 7rem);
  opacity: 90%; 
  color: var(--text-color);
  letter-spacing: -8px;
  text-shadow: 7px 7px 5px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.title > span {
  display: inline-block; /* for measuring width */
}

.letter {
  display: inline-block;
  transition: all 0.3s ease;

}

.letter:hover {
      transform: scale(1.1) rotate(0deg);
      text-shadow: 7px 14px 10px rgba(0, 0, 0, 0.2);
}

.roles {
  font-family: 'Outfit', sans-serif;
  font-weight: 100;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
  font-size: clamp(1rem, 3vw, 3rem); /* optional tweak */
  color: var(--text-color);
  margin: 0.2em auto 4rem auto;
  display: inline-block;
  white-space: normal;
  vertical-align: top;
}

.sectionTitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
  font-size: clamp(2rem, 3vw, 3rem); /* optional tweak */
  color: var(--text-color);
  margin: 0.2em auto 0.2rem auto;
  display: inline-block;
  white-space: normal;
  vertical-align: top;
}

/* BIO SECTION */
.bio {
  width: clamp(300px, 60vw, 800px);
  margin: 0 ;
  background-color: rgba(255, 255, 255, 0.3); /* semi-transparent white or cream */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  border-radius: 12px; /* optional: smooth corners */
  padding: 0.5rem 2rem ;       /* optional: space inside */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); /* optional: soft shadow for depth */
}

.bio p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-color);
}

a {
  color: var(--red);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline; /* Optional: add underline on hover */
}

.iframe-wrapper iframe {
  margin: 1rem 0rem;
  box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.3);
  width: clamp(300px, 60vw, 800px);
  height: clamp(169px, 33.75vw, 450px); 
}

:root {
  --font-family-body: 'Noto Sans', serif;
  --font-family-display: 'Outfit', sans-serif;
}

.contactForm {
  margin-bottom: 10rem;

}

.fs-label,
.my-submit, 
.fs-fieldset-title {
  font-family: var(--font-family-display);
}

.fs-input,
.fs-textarea,
.fs-checkbox-group label {
  font-family: var(--font-family-body) !important;
}

.fs-form {
  width: clamp(300px, 60vw, 800px);
  background-color: rgba(255, 255, 255, 0.3); /* semi-transparent white or cream */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  border-radius: 12px; /* optional: smooth corners */
  padding: 1rem;       /* optional: space inside */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); /* optional: soft shadow for depth */
}

#message.fs-textarea {
  width: 100%; /* or 600px, or 80%, etc. */
  max-width: 100%;

}

.fs-button-group {
  justify-content: center;
  display: flex;
}

.fs-textarea {
  cursor: url("https://cur.cursors-4u.net/others/oth-7/oth697.cur"), auto !important;
}

.my-submit {
  font-size: 1rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0px;
  letter-spacing: 0.05em;
  cursor: url(https://cur.cursors-4u.net/others/oth-7/oth674.cur), auto !important;
  transition: color 1s ease;
}

.my-submit:hover {
  color: var(--red);
}

/* Footer */
.footer {
  display: flex;
  width: 100%;
  height: 80px;
  position: fixed;
  bottom: 0%;
  z-index: 2;
  list-style: none;
  background-color: rgba(251, 77, 17, 0.8); /* translucent red */
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px); /* Safari support */
  padding: 0rem;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.4); /* subtle depth */
  border-top: 2px solid rgba(255, 255, 255, 0.2); /* optional glass border */
}

.foot-list {
  display: flex;             /* <--- This is the missing piece */
  gap: 3rem;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;                 /* optional: removes default margin */
}

.foot-list li {
  margin: 1;
  padding: 1;
}

.foot-list li a {
  font-family: 'Outfit', serif;
  color: var(--cream);
  display: inline-block;
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 2rem);
  transition: all 0.5s ease;
}

.foot-list li a:hover {
  transform: scale(1.3);           /* slightly grow */
  color: var(--cream);             /* or any color you want */
  text-shadow: 0px 0px 10px rgba(256, 256, 256, 0.5);
}

.footer-icons {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-cream {
  flex: 2;
  color: var(--cream); 
  font-weight: 300;
  font-size: clamp(1, 1.8vw, 1.8rem);
  display: flex;
  align-items: right;
  padding-left: 1rem;
}

/* Responsive */
@media (max-width: 600px) {

html, body {
  height: 210%; 
}

  .title {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    z-index: 5;
    left: -5%;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
    letter-spacing: -3px;
  }

  .content {
    top: -6vw;
  }

  .roles {
  margin: 0.2em auto 0.2rem auto;
  }

  .bio {
   width: 90%;
   background-color: rgba(255, 255, 255, 0); /* semi-transparent white or cream */
   backdrop-filter: blur(0px);
   -webkit-backdrop-filter: blur(0px); /* Safari support */
   border-radius: 12px; /* optional: smooth corners */
   padding: 2rem 0rem ;       /* optional: space inside */
   box-shadow: 0 0 10px rgba(0, 0, 0, 0); /* optional: soft shadow for depth */
	}

.bio p {
    font-size: 1rem; 
}
 
 .iframe-wrapper iframe {
   width: 92%;
 }

 .fs-form {
    width: 85%;
 }

  .roles {
    font-size: 1rem;
    padding: 0 1rem;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
  }

  .navbar li a {
    font-size: 0.9rem;
  }

  .hero-image {
    transform: scale(1);
    width: 100%; /* wider than container */
    position: relative;
    top: 15vw;
  }

  .red-bar {
    right: calc(50% / 2 - 27%);
    width: 18%;
    filter: blur(1px);
  }

  .navbar {
    padding: 1rem 1rem;
    justify-content: right ;
  }

  .nav-toggle {
    display: block;
    font-size: 2rem;
  }

  .nav-list {
    display: none !important;
    visibility: hidden;
    opacity: 0;
  }

  .foot-list {
    display: none !important;
    visibility: hidden;
    opacity: 0;
  }

  .footer-icons {
   flex: 0;
   }

}

