:root {
  --pastel-pink: #FFE5EC;
  --pastel-blue: #E0F2FE;
  --pastel-yellow: #FEF9C3;
  --text-dark: #334155;
  --text-light: #64748B;
  --primary-btn: #FF9EBB;
  --primary-btn-hover: #FF7FA3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Fredoka', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Colors */
.bg-pastel-pink { background-color: var(--pastel-pink); }
.bg-pastel-blue { background-color: var(--pastel-blue); }
.bg-pastel-yellow { background-color: var(--pastel-yellow); }

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.logo {
  height: 120px; 
  width: auto;
  align-items: center;
  border-radius: 10px;
  object-fit: cover;
  background-color: #f1f5f9; 
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-btn);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(255, 158, 187, 0.3);
}

.btn-primary {
  background-color: var(--primary-btn);
  color: white;
  border: none;
}

.btn-secondary {
  background-color: white;
  color: var(--primary-btn);
  border: 2px solid var(--primary-btn);
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column; 
  align-items: center;    
  justify-content: center;
  text-align: center;    
  padding: 5rem 5%;
  gap: 3rem;
}

.hero-content {
  max-width: 800px; /* Keeps the text from stretching too far out */
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  max-width: 700px; /* Made this a bit wider so it looks great centered */
  border-radius: 30px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  background-color: #cbd5e1; 
}

/* About Section */
.about-section {
  padding: 5rem 5%;
  text-align: center;
}

.about-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.about-icon {
  width: 80px;
  margin-bottom: 1rem;
}

.about-card h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-card p {
  font-size: 1.1rem;
}

/* Products Gallery */
.gallery-section {
  padding: 5rem 5%;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: white;
  padding: 1rem;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
  background-color: #cbd5e1; /* Placeholder */
}

.product-card h3 {
  font-size: 1.25rem;
}

/* Footer */
.footer {
  padding: 3rem 5%;
  background-color: white;
  text-align: center;
}

.social-container {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-text-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s, transform 0.2s;
}

.social-text-link:hover {
  color: var(--primary-btn);
  transform: translateY(-2px); /* Gives it a tiny bounce upward when hovered */
}

/* Responsive */
@media (max-width: 768px) {
  .hero { text-align: center; justify-content: center; }
  .hero-content h1 { font-size: 2.5rem; }
  .header { flex-direction: column; gap: 1rem; }
}