@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--cream);
  color: var(--brown);
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--pink), var(--yellow));
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}

.logo {
  width: 400px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}


@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* PROJECTS */
.projects {
  padding: 80px 40px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
}

.coming-soon {
  background: linear-gradient(135deg, #fff, #ffe9f0);
  border: 2px dashed rgba(0,0,0,0.08);
  color: var(--brown);
  opacity: 0.9;
}

.coming-soon h3 {
  font-size: 1.3rem;
}

.coming-soon p {
  font-size: 0.9rem;
  margin-top: 10px;
}


/* ABOUT + CONTACT */
.about, .contact {
  padding: 80px 40px;
  text-align: center;
}

.about {
  background: var(--mint);
  border-radius: 80px;
}

.contact {
  background: var(--lavender);
  border-radius: 80px 80px 0 0;
}

.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 12px 30px;
  border-radius: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  z-index: 100;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: var(--brown);
  font-weight: 500;
}

.nav a:hover {
  color: var(--pink);
}

.nav-logo img {
  width: 48px;
  height: auto;
  cursor: pointer;
}


.hero {
  position: relative;
  overflow: hidden;
}

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 200;
}

.popup-content {
  background: white;
  padding: 40px;
  border-radius: 30px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.close {
  cursor: pointer;
  font-size: 1.5rem;
}

.about p {
  max-width: 600px;
  margin: auto;
  font-size: 1.1rem;
}

.contact-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 30px;
  background: white;
  color: var(--brown);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-btn:hover {
  background: var(--pink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(var(--pink) 4px, transparent 5px),
    radial-gradient(var(--yellow) 3px, transparent 4px);
  background-size: 80px 80px;
  opacity: 0.25;
  pointer-events: none;
}


html {
  scroll-behavior: smooth;
}

section {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

section.show {
  opacity: 1;
  transform: none;
}

:root {
  --pink: #FFB7C5;
  --yellow: #FDE68A;
  --mint: #B9FBC0;
  --lavender: #E9D5FF;
  --cream: #FFF6EC;
  --brown: #5A3E2B;
}

.page-header,
.about-page,
.projects-page,
.contact-page {
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.about-page p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-card {
  background: white;
  padding: 50px;
  border-radius: 40px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.project-item {
  text-align: left;
}

.project-item h3 {
  margin-bottom: 10px;
}

.project-item::after {
  content: "🍬 🍭 🍪";
  display: block;
  margin-top: 20px;
  text-align: center;
}

.project-card::after {
  content: "✨";
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 0.5;
}


.contact-page p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--lavender);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  opacity: 0.5;
}

@keyframes wiggle {
  0%,100% { transform: rotate(0); }
  25% { transform: rotate(1deg); }
  75% { transform: rotate(-1deg); }
}

.card:hover,
.contact-btn:hover {
  animation: wiggle 0.3s ease-in-out;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

button:hover {
  animation: wiggle 0.4s ease;
}

@keyframes wiggle {
  0% { transform: rotate(0); }
  25% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
  100% { transform: rotate(0); }
}


.home-btn {
  padding: 14px 30px;
  background: white;
  border-radius: 30px;
  text-decoration: none;
  color: var(--brown);
  font-weight: 600;
}

.home-btn.secondary {
  background: var(--mint);
}

.home-highlights {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 80px 20px;
}

.highlight {
  background: white;
  padding: 25px 30px;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* WORK PAGE */
.projects-page {
  padding: 80px 40px;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.project-card {
  background: white;
  padding: 40px 30px;
  border-radius: 28px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.project-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 35
}

/* Hover effect */
.project-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 35
}

.nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #f6b1c3;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav ul li a:hover::after {
  width: 60%;
}

.what-i-do {
  padding: 80px 40px;
  text-align: center;
}

.services {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.service-card {
  background: white;
  padding: 30px 35px;
  border-radius: 25px;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px) rotate(-1deg);
}

body {
  background-color: #fff7ed;
  background-image: radial-gradient(#f6b1c3 1px, transparent 1px);
  background-size: 40px 40px;
}
