/* Custom Styles for GlowBeauty */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap");

body {
  font-family: "Poppins", sans-serif;
  background-color: #fafafa;
}
h1{
font-family: "Playfair Display", serif;
font-size: 66px;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

/* Custom Colors */
.text-pink {
  color: #ff4d85 !important;
}
.bg-pink {
  background-color: #ff4d85 !important;
}
.bg-pink-light {
  background-color: #fff0f5 !important;
}

/* Buttons */
.btn-pink {
  background-color: #ff4d85;
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.btn-pink:hover {
  background-color: #e6396e;
  color: white;
  transform: translate(0, -2px);
}

.btn-outline-pink {
  color: #ff4d85;
  border-color: #ff4d85;
}

.btn-outline-pink:hover {
  background-color: #ff4d85;
  color: white;
}

/* Top Bar */
.top-bar {
  background-color: #222;
}

/* Hero Section */
.hero-section {
  background:
    linear-gradient(
      rgba(236, 114, 155, 0.2),
      rgba(214, 123, 153, 0.2),
      rgba(255, 240, 245, 0.8)
    ),
    url("https://png.pngtree.com/thumb_back/fh260/background/20250208/pngtree-flowers-daisy-roses-spring-pink-background-image_16992726.jpg")
      center/cover;
  min-height: 500px;
  display: flex;
  align-items: center;
}

/* Cards */
.category-card {
  transition: transform(0, -10px);
  cursor: pointer;
  transition: 0.3s;
  width: 180px;
  height: 180px;
}

.category-card:hover {
  transform: translate(0, -10px);
  transition: 0.3s;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

.product-card {
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

/* Footer Links */
.footer-links a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--pink-main);
}

/* Forms */
.form-control:focus {
  border-color: var(--pink-main);
  box-shadow: 0 0 0 0.25rem rgba(255, 77, 133, 0.25);
  background-color: white !important;
}
