* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f2f2f2;
}

/* NAV */
.nav {
  background: #0b6f73;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  background: black;
  padding: 10px 22px;
  border-radius: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.nav-links .active a {
  color: #0b6f73;
}

/* HERO */
.hero {
  height: 420px;
  width: auto;
  background-image: url("images/background2.png");
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.hero h1 {
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 14px 28px;
}

.hero button {
  padding: 10px 24px;
  border-radius: 20px;
  border: none;
}

/* INTRO */
.intro {
  background: white;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.intro-image {
  width: 360px;
  height: 420px;
  background-image: url("images/me.png");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}
/* ABOUT */
.about {
  background: white;
  padding: 60px;
  display: flex;
  justify-content: space-between;
}

.about-image {
  width: 260px;
  height: 320px;
  background-image: url("images/me.png");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

/* DARK SECTIONS */
.dark-section {
  background: black;
  color: white;
  padding: 150px;
  text-align: center;
}

.flex-row {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 10px;
}

.card {
  width: 250px;
  height: 310px;
  background: #888;
  border-radius: 16px;
  background-image: url("images/perfume1.png");
  background-size: cover;
  background-position: center;
}

.stat h3 {
  font-size: 32px;
  color: white;
}

.stat p {
  color: #0b6f73;
}


footer {
  background: white;
  text-align: center;
  padding: 30px;
}

h1 {
  font-size: 56px;
  line-height: 1.1;
}

h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

h3 {
  font-size: 28px;
}

.aspirations {
  background: rgb(214, 231, 229);
  padding: 80px 60px;
  text-align: center;
}

.aspirations h2 {
  font-size: 36px;
  margin-bottom: 50px;
  letter-spacing: 1px;
}


.aspiration-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}


.aspiration-card {
  width: 280px;
  height: 360px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 30px rgba(2, 2, 2, 0.158);
  transition: transform 0.3s ease;
}

.aspiration-card:hover {
  transform: translateY(-8px);
}

.a1 {
  background-image: url("images/aspiration1.png");
}

.a2 {
  background-image: url("images/aspiration2.png");
}

.a3 {
  background-image: url("images/aspiration3.png");
}



/* ===== PROJECTS PAGE ===== */

/* Intro section */
.projects-intro {
  background: white;
  padding: 100px 60px;
  display: flex;
  justify-content: center;
}

.projects-intro-box {
  max-width: 700px;
  text-align: center;
}

.projects-intro-box h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.projects-intro-box p {
  font-size: 20px;
}

/* Dark section */
.projects-dark {
  background: black;
  color: white;
  padding: 80px 60px;
  text-align: center;
}

.projects-dark h2 {
  font-size: 36px;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

/* Light section */
.projects-light {
  background: #eaeaea;
  padding: 80px 60px;
  text-align: center;
}

.projects-light h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

/* Shared layout */
.project-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.project-item {
  width: 300px;
  text-align: center;
}

/* Image boxes */
.project-image {
  width: 100%;
  height: 180px;
  border-radius: 40px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Text */
.projects-dark .project-item p {
  color: white;
  font-size: 16px;
}

.projects-light .project-item p {
  color: black;
  font-size: 16px;
}

/* Pitch deck images */
.pd-1 { background-image: url("images/pitchdeck1.png"); }
.pd-2 { background-image: url("images/pitchdeck2.png"); }
.pd-3 { background-image: url("images/pitchdeck3.png"); }

/* Other work images */
.ow-1 { background-image: url("images/other1.png"); }
.ow-2 { background-image: url("images/other2.png"); }
.ow-3 { background-image: url("images/other3.png"); }
