/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hero-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  margin-top: 170px;
  margin-bottom: 170px;
}

.hero-image {
  flex-shrink: 0;
}

.hero-image img {
  width: 252px;
  height: 252px;
  object-fit: cover;
  display: block;
  border-radius: 126px;
}

.hero-content {
  display: flex;
  flex-direction: column; /* 🧠 Stack text + buttons vertically */
  justify-content: center;
  gap: 24px;
  max-width: 100%;
}

/* Ensure buttons are inline on desktop */
.buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

/* Button styling */
.btn, .btn.outline {
  display: inline-flex;
  padding: 10px 16px;
  font-size: 24px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

/* === MOBILE STYLES === */
@media screen and (max-width: 767px) {
  .hero-section {
    flex-direction: column;
    align-items: left;
    text-align: left;
    margin-top: 16px;
  }

  .hero-image img {
    width: 200px;
    height: 200px;
    border-radius: 126px;
  }

  .hero-content {
    align-items: left;
    max-width: 100%;
  }

  .buttons {
    flex-direction: column;
    align-items: left;
  }
}

.timeline {
  display: column;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
  max-width: 100%;
}

.timeline-item {
  width: 100%;
  margin-bottom: 32px;
}



.cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .cards {
    flex-direction: row;
    gap: 32px;
  }

  .timeline {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }

  .timeline-item {
    width: 100%;
    gap: 24px;
  }
}





body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
    padding-bottom: 40px;
}

.container {
  margin: 0 auto;
  padding: 40px 100px;
  max-width: 1400px;
}

.section {
  margin-bottom: 40px;
}

.section.top {
  margin-top: 200px;
    margin-bottom: 251px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

h1 {
  font-size: 52px; /* ≈ 40px mobile */
  font-weight: 200;
    line-height: 63px;
}

h2 {
  font-size: 40px;
    line-height: 58px;
  margin-bottom: 16px;
  font-weight: 400;
}

h3 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

p {
    font-size: 18px;
  margin-bottom: 24px;
  font-weight: 200;
}

.blockTag {
  font-size: 18px;
  color: #909090;
  margin-bottom: 12px;
}

.buttons {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 10px 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  transition: background-color 0.3s ease;
}

.btn.black {
  background-color: #000;
  color: #fff;
}

.btn.black:hover {
  background-color: #888;
}

.btnblock {
  padding: 10px 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.3s ease;
}

.btnblock.black {
  background-color: #000;
  color: #fff;
}

.btnblock.black:hover {
  background-color: #888;
}

.btn.outline {
  border: 2px solid #000; /* ⬅️ updated stroke */
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn.outline:hover {
  background-color: #888;
  color: #fff;
}

.btn.outline:hover .chevron path {
  stroke: #fff;
}

.chevron {
  width: 18px;
  height: 11px;
  pointer-events: none;
}

.chevron:hover {
    color: #ffffff
}

/* Projects */
.project {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.project.reverse {
  flex-direction: row-reverse;
}

.text-block,
.image-block {
  width: 100%;
  
}

.text-block {
  width: 100%;
   position: relative;
  padding-bottom: 48px;

}

.text-parallax {
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.image-block img {
  max-width: 100%;
  height: auto;
  display: block;
}

.image-block.large {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.divider {
  width: 180px;
  height: 3px;
  background-color: #ccc;
  margin: 80px auto; /* 40px vertical spacing, centered horizontally */
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background-color: #fff;
  border: 1px solid #000;
  width: 200px;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #000;
}

.dropdown-content a:hover {
  background-color: #888;
  color: #fff;
}

/* Desktop: 50/50 with 24px gap */
@media screen and (min-width: 769px) {
  .project {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .project.reverse {
    flex-direction: row-reverse;
  }

  .text-block,
  .image-block {
    width: calc(50% - 12px); /* Half of 24px gap removed from each */
  }

  .image-block {
    max-width: 100%;
    height: auto; /* Keep height locked in unless using aspect-ratio instead */
  }
  
  .image-block.large {
  width: auto;
  height: 100%;
  margin-bottom: 24px;
}
  
    .contact {
  text-align: center;
      flex-direction: row;
    justify-content: center; /* ✅ Center horizontally */
   margin-top: 32px;
}
  
 
}

/* Responsive */
@media screen and (max-width: 768px) {
  
    .footer {
        margin-bottom: 40px;
    }
    
    .container {
    padding-left: 16px;
      padding-right: 16px;
      padding-top: 24px;
  }
    
    h1 {
    font-size: 32px;
    line-height: 39px;
      font-weight: 200;
  }
    
    h2 {
  font-size: 32px;
  line-height: 39px;
  margin-bottom: 12px;
}
  
  h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}
    
    p {
    font-size: 18px;
  margin-bottom: 24px;
      font-weight: 200;
}
  
  .divider {
  width: 180px;
  height: 3px;
  background-color: #ccc;
  margin: 40px auto; /* 40px vertical spacing, centered horizontally */
}

  .project,
  .project.reverse {
    flex-direction: column;
  }
  
  .text-block {
  width: 100%;
   position: relative;
  padding-bottom: 16px;

}

  .image-block img{
    max-width: 100%;
    height: auot;
    padding-bottom: 16px;
    padding-top: 16px;
  }
  
 
    
    .section.top {
    margin-top: 80px;
      margin-bottom: 40px;
  }
    
     .buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
    
    .sectionbottom {
        margin-bottom: 40px;
    }
    
}

@media screen and (max-width: 376px) {
  
    .footer {
        margin-bottom: 40px;
    }
    
    .container {
    padding: 0 16px;
  }
    
    h1 {
    font-size: 32px;
    line-height: 39px;
  }
    
    h2 {
  font-size: 32px;
        line-height: 39px;
  margin-bottom: 12px;
}
    
    p {
    font-size: 20px;
  margin-bottom: 24px;
}

  .project,
  .project.reverse {
    flex-direction: column;
  }

  .image-block img{
    max-width: 100%;
    height: auto;
  }
    
    .section.top {
    margin-top: 80px;
      margin-bottom: 40px;
  }
    
     .buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
    
    .sectionbottom {
        margin-bottom: 40px;
    }
  
  .contact {
  text-align: center;
}
  .profile-image img {
  width: 215px;
  height: 249px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-bottom: 24px;
  margin-top: 24px;
}

    
}

    .profile-image img {
    width: 315px;
    height: 365px;
  }

a {
  color: black;
}

.top-cta {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 999;

  height: 40px;
  padding: 0 20px;

  background: #000;
  color: #fff;
  border: none;
  border-radius: 999px;

  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;

  text-decoration: none;  /* ensures no underline */
  display: flex;          /* centers text */
  align-items: center;    /* centers vertically */
  justify-content: center;

  cursor: pointer;
  transition: opacity 0.15s ease;
}

.top-cta:hover {
  opacity: 0.85;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .top-cta {
    top: 16px;
    right: 16px;
    font-size: 16px;
    height: 40px;
    padding: 0 18px;
  }
}
 

