@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

:root {
  --pink: #fbd3e9;
  --lavender: #caa9ff;
  --rose: #e46bb1;
  --cream: #fff6f9;
  --text: #4a4a4a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--cream), #fbe8ff);
  color: var(--text);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, var(--pink), var(--lavender));
  padding: 1rem 2rem;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.logo {
  height: 60px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: rotate(8deg) scale(1.05);
}

nav a {
  margin-left: 1.2rem;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--rose);
  text-shadow: 0 0 8px rgba(255,255,255,0.8);
}

.hero {
  flex: 1;
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #ffeef7 0%, #fff6fb 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 2.8rem;
  color: var(--rose);
  letter-spacing: 1px;
}

.hero p {
  margin: 1rem 0 2rem;
  font-size: 1.2rem;
  max-width: 600px;
}

.hero button {
  background: linear-gradient(90deg, var(--rose), var(--lavender));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 3rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(228,107,177,0.5);
  transition: all 0.3s ease;
  animation: glowPulse 2s infinite alternate;
}

.hero button:hover {
  transform: scale(1.07);
  background: linear-gradient(90deg, var(--lavender), var(--rose));
}

.product-page {
  text-align: center;
  padding: 4rem 2rem;
}

.product-page h2 {
  color: var(--rose);
  margin-bottom: 2rem;
  font-size: 2rem;
  text-shadow: 0 0 10px rgba(255,192,203,0.3);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: start;
  padding: 0 2rem;
}

.product {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.product img:hover {
  transform: scale(1.05);
}

.product h3 {
  margin-top: 1rem;
  color: var(--rose);
  font-size: 1.2rem;
  font-weight: 700;
}

.product p {
  margin: 0.5rem 0 1rem;
  font-size: 0.95rem;
  color: var(--text);
  text-align: center;
}

.product button {
  background: linear-gradient(90deg, var(--rose), var(--lavender));
  border: none;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(228,107,177,0.3);
}

.product button:hover {
  transform: scale(1.08);
  background: linear-gradient(90deg, var(--lavender), var(--rose));
}

.product-grid {
  column-count: 3;
  column-gap: 1.5rem;
  padding: 0 2rem;
}

.product {
  display: inline-block;
  margin-bottom: 1.5rem;
  width: 100%;
}
@media (max-width: 768px) {
  .product-grid { column-count: 2; }
}
@media (max-width: 480px) {
  .product-grid { column-count: 1; }
}


.about-page {
  text-align: center;
  padding: 4rem 2rem;
}

.about-page h2 {
  color: var(--rose);
  margin-bottom: 1.5rem;
}

.about-page p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  background: rgba(255,255,255,0.6);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-page {
  text-align: center;
  padding: 5rem 2rem;
}

.contact-page h2 {
  color: var(--rose);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-page p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-page button {
  background: linear-gradient(90deg, var(--rose), var(--lavender));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(228,107,177,0.4);
  animation: glowPulse 2s infinite alternate;
  transition: all 0.3s ease;
}

.contact-page button:hover {
  transform: scale(1.08);
  background: linear-gradient(90deg, var(--lavender), var(--rose));
}

@keyframes glowPulse {
  from { box-shadow: 0 0 12px var(--rose); }
  to { box-shadow: 0 0 28px var(--lavender); }
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(90deg, var(--pink), var(--lavender));
  color: white;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
  margin-top: auto;
}

footer p {
  margin: 0.3rem 0;
  font-size: 0.9rem;
}

footer a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

footer a:hover {
  color: var(--rose);
  text-shadow: 0 0 10px rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }
  nav a {
    display: inline-block;
    margin: 0.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero button {
    font-size: 1rem;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  
  .button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.yt-btn {
  background: linear-gradient(90deg, #ff7a7a, #ff4d4d);
  box-shadow: 0 4px 20px rgba(255,77,77,0.3);
}

.yt-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(90deg, #ff4d4d, #ff7a7a);
}

