/* Import fonts - Nunito has excellent Romanian diacritics support (ă, â, î, ș, ț) */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

/* CSS Variables for colors */
:root {
  /* Base colors */
  --background: hsl(45, 30%, 97%);
  --foreground: hsl(25, 30%, 25%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(25, 30%, 25%);
  --muted: hsl(45deg 37.97% 92.62% / 63%);  
  --muted-foreground: hsl(25, 20%, 45%);
  --border: hsl(35, 30%, 85%);

  /* Brand colors */
  --primary: hsl(160, 45%, 55%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(10, 70%, 72%);
  --secondary-foreground: hsl(10, 50%, 25%);
  --accent: hsl(40, 90%, 62%);
  --accent-foreground: hsl(40, 80%, 20%);

  /* Playful colors */
  --coral: hsl(10, 70%, 72%);
  --mint: hsl(160, 45%, 55%);
  --sunshine: hsl(40, 90%, 62%);
  --sky: hsl(200, 70%, 78%);
  --leaf: hsl(90, 45%, 55%);
  --sand: hsl(35, 40%, 88%);
  --peach: hsl(25, 80%, 85%);
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and typography */
body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
}

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

/* Utility classes */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-coral { color: var(--coral); }
.text-mint { color: var(--mint); }
.text-sunshine { color: var(--sunshine); }
.text-sky { color: var(--sky); }
.text-leaf { color: var(--leaf); }
.text-sand { color: var(--sand); }
.text-peach { color: var(--peach); }

.bg-coral { background-color: var(--coral); }
.bg-mint { background-color: var(--mint); }
.bg-sunshine { background-color: var(--sunshine); }
.bg-sky { background-color: var(--sky); }
.bg-leaf { background-color: var(--leaf); }
.bg-sand { background-color: var(--sand); }
.bg-peach { background-color: var(--peach); }

.border-coral { border-left: 4px solid var(--coral); }
.border-mint { border-left: 4px solid var(--mint); }
.border-sunshine { border-left: 4px solid var(--sunshine); }
.border-leaf { border-left: 4px solid var(--leaf); }

.font-bold { font-weight: 700; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo-img {
  height: 3.5rem;
  width: auto;
  border-radius: 0.75rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--foreground);
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-mobile {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.3s ease-out;
}

.nav-mobile.active {
  display: block;
}

.nav-link-mobile {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.2s;
}

.nav-link-mobile:hover {
  color: var(--primary);
  background-color: var(--muted);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
  background-color: var(--background);
}

/* Floating Shapes - Decorative Background Elements (only in hero) */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--coral);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--mint);
  top: 60%;
  right: -5%;
  animation-delay: -5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--sunshine);
  bottom: 10%;
  left: 20%;
  animation-delay: -10s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  background: var(--sky);
  top: 30%;
  right: 15%;
  animation-delay: -15s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-30px) rotate(5deg) scale(1.05); }
  50% { transform: translateY(0) rotate(0deg) scale(1); }
  75% { transform: translateY(30px) rotate(-5deg) scale(0.95); }
}


.hero-container {
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-logo {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-logo-img {
  width: 20rem;
  max-width: 90vw;
  height: auto;
}

.hero-content {
  margin-top: 2.5rem;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.hero-brand {
  font-family: 'Fredoka', cursive;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-tagline {
  color: var(--primary);
  font-weight: 600;
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

/* Section styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
}

.section-blob {
  position: absolute;
  z-index: -10;
  opacity: 0.3;
  filter: blur(48px);
}

.blob-1 {
  width: 24rem;
  height: 24rem;
  background-color: var(--peach);
  top: 0;
  right: 0;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.blob-2 {
  width: 20rem;
  height: 20rem;
  background-color: var(--sky);
  bottom: 0;
  left: 0;
  border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
}

.blob-3 {
  width: 24rem;
  height: 24rem;
  background-color: var(--mint);
  top: -5rem;
  right: -5rem;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.blob-4 {
  width: 18rem;
  height: 18rem;
  background-color: var(--coral);
  bottom: 2.5rem;
  left: 2.5rem;
  border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
}

.blob-5 {
  width: 20rem;
  height: 20rem;
  background-color: var(--peach);
  top: 2.5rem;
  left: 0;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.blob-6 {
  width: 24rem;
  height: 24rem;
  background-color: var(--mint);
  bottom: 0;
  right: 0;
  border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
}

.blob-7 {
  width: 20rem;
  height: 20rem;
  background-color: var(--sunshine);
  top: 0;
  left: 0;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.blob-8 {
  width: 24rem;
  height: 24rem;
  background-color: var(--sky);
  bottom: 0;
  right: 0;
  border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
}

/* About Section */
.about {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--card);
}

.about-content {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-paragraph {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-stats {
  position: relative;
}

.stats-card {
  position: relative;
  background-color: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
}

.stat-item:nth-child(1) { animation: bubbleFloat 3s ease-in-out infinite; animation-delay: 0s; }
.stat-item:nth-child(2) { animation: bubbleFloat 3s ease-in-out infinite; animation-delay: 0.5s; }
.stat-item:nth-child(3) { animation: bubbleFloat 3s ease-in-out infinite; animation-delay: 1s; }
.stat-item:nth-child(4) { animation: bubbleFloat 3s ease-in-out infinite; animation-delay: 1.5s; }

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

/* Features Grid */
.features-grid {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background-color: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--foreground);
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(15deg);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Workshops Section */
.workshops {
  padding: 6rem 0;
  background-color: var(--muted);
  position: relative;
  overflow: hidden;
}

.workshops-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.workshop-card {
  background-color: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  position: relative;
}

.workshop-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.workshop-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.workshop-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--foreground);
  transition: transform 0.3s;
}

.workshop-card:hover .workshop-icon {
  transform: scale(1.1) rotate(15deg);
}

.workshop-text {
  flex: 1;
}

.workshop-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.workshop-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.workshops-info {
  text-align: center;
}

.info-card {
  display: inline-block;
  background-color: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.info-subtext {
  color: var(--muted-foreground);
}

/* Shop Section */
.shop {
  padding: 6rem 0;
  background-color: var(--card);
  position: relative;
  overflow: hidden;
}

.products-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background-color: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.product-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.product-image-wrapper {
  width: 100%;
  height: 180px;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: var(--muted);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--foreground);
  transition: transform 0.3s;
}

.product-card:hover .product-icon {
  transform: scale(1.1) rotate(15deg);
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.product-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1rem;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  background-color: rgba(var(--primary), 0.1);
  color: var(--primary);
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s;
}

.product-btn:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.shop-note {
  text-align: center;
  color: var(--muted-foreground);
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--muted);
}

.contact-content {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--card);
  border-radius: 1.5rem;
  padding: 1.38rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.contact-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(15deg);
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--foreground);
  transition: transform 0.3s ease;
}

.contact-details {
  flex: 1;
}

.contact-title {
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-link {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--primary);
}

.contact-text {
  color: var(--muted-foreground);
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.social-card {
  background-color: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.social-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s;
}

.social-link:hover {
  transform: scale(1.1) rotate(15deg);
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-link.facebook {
  background-color: var(--sky);
  color: var(--foreground);
}

.cta-card {
  background-color: var(--card);
  border-radius: 1.5rem;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.cta-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.cta-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background-color: #25D366;
  color: white;
  transition: transform 0.3s ease;
}

.cta-card:hover .cta-icon {
  transform: scale(1.1) rotate(15deg);
}

.cta-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.cta-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 1.5rem;
  background-color: #25D366;
  color: white;
  font-weight: 700;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-btn:hover {
  background-color: #128C7E;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transform: scale(1.05);
}

/* Google Review Card */
.review-card {
  background-color: var(--card);
  border-radius: 1.5rem;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.review-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.review-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background-color: #FFF3CD;
  color: #FBBC04;
  transition: transform 0.3s ease;
}

.review-card:hover .review-icon {
  transform: scale(1.1) rotate(15deg);
}

.review-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.review-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 1.5rem;
  background-color: #4285F4;
  color: white;
  font-weight: 700;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s;
}

.review-btn:hover {
  background-color: #3367D6;
  box-shadow: 0 10px 25px rgba(66, 133, 244, 0.3);
  transform: scale(1.05);
}

/* Social Section - Centered attractive design */
.social-section {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 0;
  margin-top: 1rem;
}

.social-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--coral), transparent);
}

.divider-icon {
  font-size: 1.5rem;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.2) rotate(15deg); opacity: 0.8; }
}

.social-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.social-text {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.facebook {
  background: #1877F2;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-btn svg {
  stroke: white;
}

/* Footer */
.footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 4rem;
  width: auto;
  border-radius: 0.75rem;
}

.footer-brand-title {
  color: var(--background);
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-brand-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--background);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}

@keyframes bounce-soft {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .workshops-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-content {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 3.5rem;
  }
  
  .hero-logo-img {
    width: 24rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.nav-link:focus,
.nav-link-mobile:focus,
.btn:focus,
.product-btn:focus,
.contact-link:focus,
.social-link:focus,
.cta-btn:focus,
.footer-link:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
