/* Hairy Styley Brand Colors */
:root {
  --primary-pink: #FF6B3D;
  --secondary-purple: #C44569;
  --accent-turquoise: #00D2D3;
  --highlight-yellow: #F3B500;
  --white: #FFFFFF;
  --light-pink: #FDF6F9;
  --text-dark: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Sans MS', 'Trebuchet MS', cursive, sans-serif;
  background: var(--light-pink);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-purple) 50%, var(--accent-turquoise) 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  background: linear-gradient(45deg, var(--white), var(--highlight-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(45deg, var(--highlight-yellow), #FFD700);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(243, 181, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 181, 0, 0.6);
}

.btn-secondary {
  background: var(--white);
  color: var(--secondary-purple);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.8;
}

.sparkle-1 {
  top: 20%;
  left: 10%;
  animation: float 3s ease-in-out infinite;
}

.heart-1 {
  top: 60%;
  right: 15%;
  animation: float 4s ease-in-out infinite 1s;
}

.star-1 {
  top: 30%;
  right: 25%;
  animation: float 3.5s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* Features Section */
.features {
  padding: 4rem 0;
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, var(--light-pink), var(--white));
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--secondary-purple);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section:nth-child(even) {
  background: var(--white);
}

.section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary-pink), var(--secondary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Search */
.search-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto 3rem;
}

#search {
  width: 100%;
  padding: 1rem 3rem 1rem 1rem;
  border: 3px solid var(--primary-pink);
  border-radius: 50px;
  font-size: 1.1rem;
  background: var(--white);
  transition: all 0.3s ease;
}

#search:focus {
  outline: none;
  box-shadow: 0 0 20px rgba(255, 107, 61, 0.3);
  transform: scale(1.02);
}

.search-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Cards */
.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-pink), var(--secondary-purple), var(--accent-turquoise));
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.card img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.card h3 {
  color: var(--secondary-purple);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.card a {
  background: linear-gradient(45deg, var(--primary-pink), var(--secondary-purple));
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
}

.card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 61, 0.4);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.faq-card {
  background: linear-gradient(135deg, var(--white), var(--light-pink));
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
}

.faq-card h3 {
  color: var(--secondary-purple);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--secondary-purple), var(--primary-pink));
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.social-link {
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.disclaimer {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 2rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .logo {
    max-width: 250px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .floating {
    width: 30px;
    height: 30px;
  }
  
  .section h2 {
    font-size: 2rem;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .logo {
    max-width: 200px;
  }
  
  .container {
    padding: 0 0.5rem;
  }
  
  .card, .feature-card, .faq-card {
    padding: 1.5rem;
  }
}

