/* RESET & GLOBAL */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow-y: auto;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.8rem 0;
}

.nav-inner {
  max-width: 1200px;       /* ⬅ More horizontal room */
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;         /* ⬅ Slightly reduced edge padding */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  text-decoration: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.nav-links a:hover {
  text-decoration: underline;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
}

.hamburger {
  align-self: center;
  margin-top: -0.8rem; /* adjust as needed for precise alignment */
}

/* CONTENT AREA */
.content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;       /* ⬅ Matches header */
  margin: 4rem auto 2rem auto;
  padding: 0 1rem;         /* ⬅ Matches header */
  gap: 2rem;
}

.image-container {
  flex: 1 1 350px;
}

.image-container img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.text-container {
  flex: 1 1 500px;
}

.text-container h2 {
  font-size: 1.5rem;
  margin-top: 0;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #444;
  font-weight: 600;
  text-transform: none;
}


.text-container p {
  margin-bottom: 1rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}


.text-container a {
  color: #e67300;
  text-decoration: none;
}

.text-container a:hover {
  text-decoration: underline;
}

/* MOBILE NAVIGATION */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: white;
    border-top: 1px solid #ddd;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1001;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-inner {
    align-items: flex-start;
  }
  
  .content {
  margin-top: 0rem; /* was 4rem — reduced for mobile only */
  }

  .contact-columns {
  flex-direction: column-reverse;
  gap: 0;
  margin-top: 1rem;
}

.contact-right img {
  margin-bottom: 0;
}


  .contact-left {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .contact-right img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 0 1rem 0;
    display: block;
  }

}

.cv-button-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.cv-button {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  color: #555 !important; /* force soft gray */
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cv-button:hover {
  color: #0066cc !important;        /* blue text */
  border-color: #0066cc !important; /* blue border */
  background-color: #f9f9f9;
}

/* Fade Animations (New) */
	
.fade-animate {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-animate.visible {
  opacity: 1;
}

/* Contact Page */

.contact-content {
  max-width: 300px;
  margin: 4rem auto 2rem;
  padding: 0 1.5rem;
  text-align: left; /* you can use 'center' if you want all-text centered */
}

.contact-heading {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #444;
  margin-bottom: 2rem;
}

.contact-section {
  margin-bottom: 2.5rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #666;
  font-size: 1rem;
}

.contact-section h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #555;
}

.contact-section i {
  margin-right: 0.7rem; 
  color: #888;
  min-width: 1.2em;
}

.contact-section a {
  color: #0066cc;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

.contact-icon-block {
  display: flex;
  align-items: flex-start;  /* aligns icon to the top of the text */
  gap: 0.8rem;
  line-height: 1.6;
}

.contact-icon-block i {
  line-height: 1;
  font-size: 1rem;
  margin-top: 0.4rem; /* Adjust if needed for visual balance */
}

/* .contact-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-left {
  flex: 1 1 300px;
}

.contact-right {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.contact-right img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
} 
*/

/* Banner Image */

.banner {
  position: relative;
  width: 100%;
  height: 250px;           /* set the height */
  overflow: hidden;
  margin-bottom: 2rem;
  flex-shrink: 0;
}

.banner img {
  width: 100%;
  height: 100%;            /* match the banner height */
  object-fit: cover;
  /* object-position: center 70%;   */    /* shifts the banner downward a bit */
  display: block;
  /* filter: grayscale(30%) brightness(50%) contrast(90%); */
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: white;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* subtle outline */
  white-space: nowrap; 
}

.photo-credit {
  font-size: 0.8rem;
  color: #999;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: -2rem 0 2rem 1rem; /* pull it up slightly toward the banner */
}

/* Footer */

.site-footer {
  background-color: #f2f2f2;
  padding: 1.5rem 0;
  text-align: center;
  margin-top: 4rem;
}

.footer-inner {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-credit {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #999;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.social-icon {
  color: #555;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-icon:hover {
  color: #0077b5; /* LinkedIn blue by default — works for both icons */
}

/* Sticky Footer (for contact page) */

.sticky-footer {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.sticky-footer main {
  flex: 1 0 auto;
}

.sticky-footer .site-footer {
  flex-shrink: 0;
}

