:root {
  --primary-color: #0b6f73;
  --dark-color: #000;
  --light-bg: #f2f2f2;
  --card-radius: 20px;
  --section-padding: clamp(60px, 8vw, 120px);
  --text-large: clamp(32px, 5vw, 56px);
  --text-medium: clamp(22px, 3vw, 40px);
  --text-small: clamp(16px, 2vw, 20px);
}

html {
  scroll-behavior: smooth;
}

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

body {
  background: var(--light-bg);
  color: var(--dark-color);
  padding-top: 80px; 
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--primary-color);
  padding: 16px clamp(20px, 5vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.nav .nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav .nav-links a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 6px #0bf, 0 0 12px #0bf;
}

.nav .nav-links .active a {
  color: var(--primary-color);
}

.hero {
  min-height: 420px;
  background-image: url("images/background2.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 40px;
}

.hero h1 {
  font-size: var(--text-large);
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 14px 28px;
}

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

.intro,
.about {
  background: white;
  padding: var(--section-padding);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro h1,
.about h2 {
  font-size: var(--text-large);
}

.intro h4,
.about p {
  font-size: var(--text-small);
}

.intro-image,
.about-image {
  width: 100%;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: var(--card-radius);
}

.intro-image {
  background-image: url("images/me.png");
}

.about-image {
  background-image: url("images/me.png");
}

.dark-section {
  background: var(--dark-color);
  color: white;
  padding: var(--section-padding);
  text-align: center;
}

.dark-section h2 {
  font-size: var(--text-medium);
  margin-bottom: 40px;
  transition: text-shadow 0.3s ease;
}

.dark-section h2:hover {
  text-shadow: 0 0 12px #0bf, 0 0 20px #0bf;
}

.flex-row {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 6vw, 100px);
  flex-wrap: wrap;
}

.card {
  width: 250px;
  height: 310px;
  border-radius: var(--card-radius);
  background-image: url("images/perfume1.png");
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.aspirations {
  background: rgb(214, 231, 229);
  padding: var(--section-padding);
  text-align: center;
}

.aspirations h2 {
  font-size: var(--text-medium);
  margin-bottom: 50px;
  transition: text-shadow 0.3s ease;
}

.aspirations h2:hover {
  text-shadow: 0 0 12px #0bf, 0 0 20px #0bf;
}

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

.aspiration-card {
  width: 280px;
  height: 360px;
  border-radius: var(--card-radius);
  background-size: cover;
  background-position: center;
  background-image: url("images/parents.jpeg");
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.aspiration-card:hover {
  transform: scale(1.05);
}

.project-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

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

.project-image {
  width: 100%;
  height: 200px;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.projects-dark .project-image:hover {
  box-shadow: 0 0 20px 4px rgba(0,191,255,0.6);
  transform: scale(1.03);
}

.projects-light .project-image:hover {
  box-shadow: 0 0 20px 4px rgba(0,191,255,0.4);
  transform: scale(1.03);
}

footer {
  background: #0b6f73;
  color: white;
  text-align: center;
  padding: 30px;
}

@media (max-width: 768px) {
  .intro,
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav {
    flex-direction: column;
    gap: 15px;
  }

  .nav .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: 350px;
  }

  .flex-row {
    gap: 40px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 18px;
  }

  .nav .nav-links {
    flex-direction: column;
    gap: 12px;
    padding: 15px;
  }

  .hero {
    min-height: 300px;
  }

  .card,
  .project-item {
    width: 100%;
  }

  .project-row {
    grid-template-columns: 1fr;
  }
}

.projects-intro {
  background: rgb(214, 231, 229);
  color: black;
  padding: var(--section-padding);
  text-align: center;
}

.projects-intro-box {
  max-width: 800px;
  margin: 0 auto;
}

.projects-dark {
  background: black;
  color: white;
  padding: var(--section-padding);
  text-align: center;
}

.projects-light {
  background: white;
  color: black;
  padding: var(--section-padding);
  text-align: center;
}

.projects-dark h2,
.projects-light h2 {
  font-size: var(--text-medium);
  margin-bottom: 50px;
}

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

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

.hero h1 {
  font-size: var(--text-large);
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 14px 28px;
  opacity: 0;
  transform: translateY(-50px);
  animation: slideDown 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-text h2 {
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInLeft 1s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.intro-text h1 {
  display: inline-block;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInName 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes slideInName {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-image {
  width: 100%;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: var(--card-radius);
  filter: grayscale(100%);
  transform: scale(0.8) rotateY(15deg);
  opacity: 0;
  animation: aboutImageIntro 1s ease forwards;
}

@keyframes aboutImageIntro {
  0% {
    opacity: 0;
    transform: scale(0.8) rotateY(15deg);
    filter: grayscale(100%);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    filter: grayscale(0%);
  }
}

.projects-intro-box h1 {
  transform: scale(0.8);
  opacity: 0;
  animation: projectsHeadingIntro 0.8s ease forwards;
  animation-delay: 0.2s;
}

@keyframes projectsHeadingIntro {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.dark-section .flex-row .card {
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.dark-section .flex-row .card.visible {
  transform: scale(1);
  opacity: 1;
}

.hamburger {
  font-size: 24px;
  color: white;
  cursor: pointer;
  display: none;
}

.rotate-card {
  transform: rotateY(180deg) scale(1.05) !important;
  transition: transform 0.6s ease;
}

.project-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.project-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat h3 {
  font-size: clamp(20px, 4vw, 40px);
  font-weight: lighter;
  margin-bottom: 6px;
}

.stat p {
  font-size: 16px;
}