@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:wght@400;600;700;800;900&family=Ubuntu+Condensed&display=swap');

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

/* GLOBAL */
body {
  font-family: Arial, sans-serif;
  background: #0C0F16;
  color: #ffffff;
  line-height: 1.6;
  padding-top: 200px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 50px;
}

/* NAVBAR */
.site-header {
  position: fixed;
  top: 0;
  padding: 10px 0;
  width: 100%;
  z-index: 1000;

  background: rgba(12, 15, 22, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 20px 0;
}

/* LEFT */
.logo {
  font-family: 'Sofia Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
}

/* CENTER */
.nav-center {
  display: flex;
  gap: 100px;
}

.nav-link {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 18px;
  color: #ffffff;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  color: #FF96A1;
  opacity: 1;
}

.nav-link.active {
  opacity: 1;
  color: #FC5768;
}

/* RIGHT CTA */
.cta-button {
  padding: 14px 40px;
  border: 1.5px solid #ffffff;
  border-radius: 10px;
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.cta-button:hover {
  background: #FC5768;
  color: #ffffff;
  border: 1.5px solid #FC5768;
}

.cta-fill-button {
  padding: 16px 30px;
  background: #ffffff;
  color: #0C0F16;
  border-radius: 10px;
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.cta-fill-button:hover {
  background: #FC5768;
  color: #ffffff;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 10px; /* makes ends rounded */
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.hero-intro {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: clamp(20px, 4vw, 30px);
  line-height: 1;
  letter-spacing: 6.6px;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero-title {
  font-family: 'Sofia Sans Condensed', sans-serif;
  font-size: clamp(40px, 8vw, 80px);
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 900;
  color: #FC5768;
  margin-bottom: 30px;
}

.sub-head {
  font-family: 'Sofia Sans Condensed', sans-serif;
  font-size: clamp(25px, 8vw, 25px);
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

/* HERO */
.hero {
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical center */
  text-align: center;
}

/* PROJECT SECTION */
.projects {
  padding: 0px 0 80px;
}

/* PROJECT CARD */
.project-card {
  display: block;
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* IMAGE AREA */
.project-image {
  width: 100%;
  height: 150px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  background-clip: padding-box;
}

.project-image::before {
  content: "";
  position: absolute;
  inset: 0px; /* keeps overlay inside the border */
  background: rgba(12, 15, 22, 0.5);
  border-radius: inherit;
  transition: opacity 0.3s ease;
}

.project-image:hover::before {
  opacity: 0;
}

.project-area{
   display: flex;
   align-items: center;
   position: relative;
   z-index: 2;
   padding: 60px 50px 0 50px;
   gap: 30px;
}

.project-desc {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: clamp(5px, 4vw, 16px);
  letter-spacing: 0.5px;
  color: #ffffff;
}

/* INFO */
.project-number {
  padding: 0 0 0 50px;
  font-family: 'Sofia Sans Condensed', sans-serif;
  font-size: clamp(40px, 8vw, 80px);
  line-height: 1;
  letter-spacing: -2;
  font-weight: 900;
  color: #FC5768;
}

.project-title {
  padding: 0 0 0 0px;
  font-family: 'Sofia Sans Condensed', sans-serif;
  font-size: clamp(40px, 8vw, 80px);
  line-height: 1;
  letter-spacing: -2;
  font-weight: 900;
  color: #ffffff;
}


.about-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  max-width: 800px;   /* limits width */
  margin: 0 auto;     /* centers the card */
}

.about-photo img {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
}

.about-info {
  font-family: 'Ubuntu Condensed', sans-serif;
  flex: 1;
  color: #151820;
  text-align: center;
}

.about-info h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.about-info p {
  margin: 4px 0;
}

.about-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-fill-button-dark {
  padding: 16px 30px;
  background: #15181F;
  color: #ffffff;
  border-radius: 10px;
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.cta-fill-button-dark:hover {
  background: #FC5768;
  color: #ffffff;
}

.cta-outline-dark {
  padding: 14px 40px;
  border: 1.5px solid #15181F;
  color: #15181F;
  border-radius: 10px;
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.cta-outline-dark:hover {
  background: #FC5768;
  color: #ffffff;
  border: 1.5px solid #FC5768;
}

.body-text{
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: clamp(5px, 4vw, 16px);
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 50px;
}

.sub-head-2 {
  font-family: 'Sofia Sans Condensed', sans-serif;
  font-size: clamp(25px, 8vw, 25px);
  line-height: 1;
  font-weight: 900;
  color: #FC5768;
  margin-bottom: 20px;
}

.resume{
margin-bottom: 120px;
}

.work-experience {
  display: flex;
  margin-bottom: 50px;
}

.company-role {
  font-family: 'Ubuntu Condensed', sans-serif;
  flex: 0.4;
  color: #ffffff;
  text-align: left;
}

.role-description {
  font-family: 'Ubuntu Condensed', sans-serif;
  flex: 1;
  color: #ffffff;
  text-align: left;
}

.skills{
  font-family: 'Ubuntu Condensed', sans-serif;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.skills-box{
  background-color: #272D36;
  padding: 16px;
  border-radius: 10px;
  margin: 0;
  width: fit-content;

  display: flex;
  align-items: center;
  gap: 8px;
}

.skills-box img{
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.education {
  font-family: 'Ubuntu Condensed', sans-serif;
  color: #ffffff;
  text-align: left;
}


.project-page{
  padding-top: 90px;
}


.project-hero{
  width: 100%;
  margin: 0 0 50px 0;
}

.project-hero-image{
  position: relative;
  width: 100%;
  height: 40vh;
  overflow: hidden;
}

.project-hero-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-logo{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  max-width: 350px;
  max-height: 200px;
}

.project-hero figcaption{
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 16px;
  color: #414E5C;
  margin-top: 10px;
  text-align: center;
}

.project-content{
margin-bottom: 120px;
}

.update-notice{
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: clamp(5px, 4vw, 16px);
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 50px;
  background: #181B22;
  border-radius: 20px;
  padding: 40px;
}

.project-images{
  text-align: center;
  margin-bottom: 50px;
}

.project-logo-image img{
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.project-logo-image:hover img{
  transform: scale(1.02);
}

.project-loading-image img{
  width: 100%;
  max-width: 100px;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.project-loading-image:hover img{
  transform: scale(1.02);
}

.project-content-image img{
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.project-content-image:hover img{
  transform: scale(1.02);
}

.project-content-image video{
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
}

.project-images-group{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  background: #08090e;
  border-radius: 20px;
  padding: 40px;
}

.project-images-row{
  text-align: center;
  margin-bottom: 10px;
}

.project-content-size1 img{
  width: 100%;
  max-width: 100px;
  display: block;
  margin: 0 auto;
}

.project-content-size2 img{
  width: 100%;
  max-width: 200px;
  display: block;
  margin: 0 auto;
}

.project-content-size3 img{
  width: 100%;
  max-width: 250px;
  display: block;
  margin: 0 auto;
}

.project-content-size4 img{
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
}

.project-content-image-row:hover img{
  transform: scale(1.02);
}

.project-images figcaption{
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 16px;
  color: #414E5C;
  margin-top: 10px;
  text-align: center;
}

.project-images-row figcaption{
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 16px;
  color: #414E5C;
  margin-top: 10px;
  text-align: center;
}

.category-text{
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 16px;
  color: #414E5C;
  margin-top: 10px;
  margin-bottom: 50px;
  text-align: center;
}




.lightbox{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox-image{
  max-width: 90%;
  max-height: 90%;
}

.lightbox-close{
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}





/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {

  .project-image {
    height: 200px;
  }

}

.mobile-cta {
  display: none;
}

.nav-center {
  display: flex;
  gap: 40px;
}

@media (max-width: 768px) {

  /* Hide desktop CTA */
  .nav-right {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
    z-index: 1100;
  }

  /* FULL SCREEN OVERLAY MENU */
  .nav-center {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: rgba(12, 15, 22, 0.95);
    backdrop-filter: blur(15px);

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;

    display: flex;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }

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

  .mobile-cta {
    display: block;
  }

  .desktop-cta {
    display: none;
  }

  .project-area {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 50px 0 50px;
    text-align: center;
  }

   .about-card {
    flex-direction: column;
    text-align: center;
    max-width: 300px;
  }

  .about-photo img {
    width: 140px;
    height: 140px;
  }

  .about-actions {
    width: 100%;
    align-items: center;
  }

  .work-experience{
    flex-direction: column;
    gap: 10px;
  }

  .project-hero-image{
    height: 30vh;
  }

  .project-images-group{
  display: block;
  }


}

body.menu-open {
  overflow: hidden;
}

/* MAIN CONTENT */
.site-content {
  background: #0C0F16;
  position: relative;
  z-index: 2;
}

/* FOOTER */
.site-footer {
  background: #ffffff;
  color: #000000;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  z-index: 1;
}

.footer-inner p {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: clamp(10px, 4vw, 20px);
  line-height: 1;
  letter-spacing: 1px;
  color: #151820;
  margin-bottom: 10px;
}

.footer-head p {
  font-family: 'Sofia Sans Condensed', sans-serif;
  font-size: clamp(40px, 8vw, 80px);
  line-height: 1;
  letter-spacing: -2;
  font-weight: 900;
  color: #151820;
  margin-top: 0;
}

