/* Base Styles */
    :root {
      --sweet-pink-50: #fff1f2;
      --sweet-pink-100: #ffe4e6;
      --sweet-pink-200: #fecdd3;
      --sweet-pink-300: #fda4af;
      --sweet-pink-400: #fb7185;
      --sweet-pink-500: #f43f5e;
      --sweet-pink-600: #e11d48;
      --sweet-pink-700: #be123c;
      --sweet-pink-800: #9f1239;
      --sweet-pink-900: #881337;
      
      --sweet-purple-50: #faf5ff;
      --sweet-purple-100: #f3e8ff;
      --sweet-purple-200: #e9d5ff;
      --sweet-purple-300: #d8b4fe;
      --sweet-purple-400: #c084fc;
      --sweet-purple-500: #a855f7;
      --sweet-purple-600: #9333ea;
      --sweet-purple-700: #7e22ce;
      --sweet-purple-800: #6b21a8;
      --sweet-purple-900: #581c87;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
     svg {
      width: 24px;
      height: 24px;
      fill: var(--sweet-pink-200);
      transition: fill 0.3s ease;
    }

    /* Hover effect */
     a:hover svg {
      fill: var(--sweet-pink-400);
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(to bottom, var(--sweet-pink-50), var(--sweet-pink-100));
      color: #333;
      line-height: 1.6;
    }
    
    h1, h2, h3, h4 {
      font-family: 'Caveat', cursive;
      font-weight: 600;
    }
    
    a {
      text-decoration: none;
      color: inherit;
    }
    
    img {
      max-width: 100%;
      height: auto;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Header */

    
    .header-bg {
      position: relative;
      overflow: hidden;
      background-image: url('icones/banner2.jpeg');
      background-position: center !important;
      background-size: cover !important;
      background-repeat: no-repeat !important;
      background-attachment: fixed ;
      padding: 100px 0;
      text-align: center;
      max-height: 100vh;
    }
    @media (max-width:768px) {
      .header-bg{
        background-attachment: unset;
      }
    }
    
    .header-bg::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, rgba(252, 231, 243, 0.253), rgba(254, 215, 226, 0.849));
      z-index: 0;
    }
    .header-content {
      position: relative;
      z-index: 1;
    }
    .logo {
      height: 150px;
      width: fit-content;
      object-fit: contain;
      width: fit-content;
      margin: 0 auto 20px;
      animation: float 3s ease-in-out infinite;
    }
    
    .header-title {
      font-size: 3.5rem;
      color: var(--sweet-pink-600);
      margin-bottom: 10px;
      animation: popIn 0.5s ease-out;
    }
    
    .header-subtitle {
      font-size: 1.25rem;
      color: var(--sweet-pink-700);
      max-width: 600px;
      margin: 0 auto;
      font-weight: 300;
    }
    
    /* Navigation */
    .navbar {
      position: sticky;
      top: 0;
      background-color: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      z-index: 100;
      padding: 15px 0;
    }
    
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .brand {
      display: flex;
      align-items: center;
    }
    
    .brand-logo {
      width: 32px;
      height: 32px;
      margin-right: 10px;
    }
    
    .brand-name {
      font-family: 'Caveat', cursive;
      font-size: 1.5rem;
      color: var(--sweet-pink-600);
    }
    
    .nav-links {
      display: flex;
      gap: 25px;
    }
    
    .nav-link {
      color: var(--sweet-pink-600);
      transition: color 0.3s;
      position: relative;
    }
    
    .nav-link:hover {
      color: var(--sweet-pink-800);
    }
    
    .mobile-menu-btn {
      display: none;
      color: var(--sweet-pink-600);
      background: none;
      border: none;
      font-size: 1.5rem;
    }
    nav .active{
      transition: all 0.5s ease;
      transform: translateX(0);
      opacity: 1;
      pointer-events: all;
    }
    @media (max-width: 768px) {
      .nav-links{
        position: absolute ;
        display: flex ;
        flex-direction: column ;
        transform: translateY(-20px);
        opacity: 0;
        right: 0.5rem ;
        top: 90% ;
        background-color: var(--sweet-pink-200);
        padding: 0.5rem;
        border-radius: 0.5em;
        pointer-events: none;
      }

      .mobile-menu-btn {
        display: block;
        cursor: pointer;
        
      }
    }
    
    /* Banner */
    .banner {
      background-color: var(--sweet-pink-200);
      text-align: center;
      padding: 10px 0;
    }
    
    .banner-text {
      font-family: 'Caveat', cursive;
      font-size: 1.2rem;
      color: var(--sweet-pink-800);
    }
    
    /* Sections */
    .section {
      padding: 60px 0;
    }
    
    .section-title {
      font-size: 2.5rem;
      color: var(--sweet-pink-600);
      text-align: center;
      margin-bottom: 40px;
    }
    
    .section-subtitle {
      text-align: center;
      color: #666;
      max-width: 700px;
      margin: 0 auto 40px;
    }
    
    /* About Section */
    .about-content {
      background-color: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .about-grid {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    
    @media (min-width: 768px) {
      .about-grid {
        flex-direction: row;
        align-items: center;
      }
    }
    
    .about-image {
      flex: 1;
    }
    
    .about-image img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border: 4px solid var(--sweet-pink-100);
    }
    
    .about-text {
      flex: 2;
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin-top: 30px;
    }
    
    @media (min-width: 768px) {
      .stats-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    
    .stat-item {
      background-color: var(--sweet-pink-50);
      padding: 15px;
      border-radius: 10px;
      text-align: center;
      transition: all 0.3s ease;
    }
    .stat-item:hover{
      transform: translateY(-10px) scale(1.05);
    }
    
    .stat-number {
      font-size: 2rem;
      color: var(--sweet-pink-600);
      margin-bottom: 5px;
    }
    
    .stat-label {
      font-size: 0.8rem;
      font-weight: 500;
      color: #555;
    }
    
    /* Sticker Cards */
    .sticker-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 20px;
      width: 100%;
      max-width: 1200px; /* Adjust this based on your desired max width */
      margin: 0 auto; /* This centers the grid */
      padding: 0 1rem; /* Add some padding on mobile */
    }
    
    @media (min-width: 480px) {
      .sticker-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (min-width: 768px) {
      .sticker-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    @media (min-width: 1024px) {
      .sticker-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 0 5rem;
            padding: 0 2rem; /* Reduced from 5rem for better centering */

      }
    }
    
    .sticker-card {
      background-color: var(--sweet-pink-100);
      border-radius: 15px;
      padding: 20px;
      text-align: center;
      transition: all 0.3s ease;
      opacity: 0;
      max-width: 250px;
      justify-self: center;
      /*animation: bounceIn 0.6s ease-out forwards;
      animation-delay: calc(0.15s * var(--index));*/
    }
    
    .sticker-card:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0 12px 24px rgba(244, 114, 182, 0.4);
      filter: brightness(1.05);
    }
    
    .sticker-image-container {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 15px;
      height: 180px;
    }
    
    .sticker-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }
    
    .sticker-image-container::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    }
    

    .sticker-image-container:hover {
      animation: wiggle 0.3s ease-in-out infinite;
    }
    
    .sticker-title {
      font-family: 'Caveat', cursive;
      font-size: 1.4rem;
      color: #333;
      margin-bottom: 5px;
    }
    
    .sticker-description {
      font-size: 0.8rem;
      color: #666;
      margin-bottom: 10px;
    }
    
    /* Process Section */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 30px;
    }
    
    @media (min-width: 768px) {
      .process-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    .process-step {
      text-align: center;
    }
    
    .step-number {
      width: 70px;
      height: 70px;
      margin: 0 auto 15px;
      background-color: var(--sweet-pink-100);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--sweet-pink-600);
    }
    
    .step-title {
      font-family: 'Caveat', cursive;
      font-size: 1.5rem;
      color: #333;
      margin-bottom: 10px;
    }
    
    /* Contact Section */
    .contact-form-container {
      background-color: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      max-width: 800px;
      margin: 0 auto;
    }
    
    .form-group {
      margin-bottom: 20px;
      position: relative;
    }
    
    .form-label {
      display: block;
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 8px;
      font-weight: 500;
    }
    
    .form-input {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid var(--sweet-pink-200);
      border-radius: 12px;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      transition: all 0.3s;
      background-color: rgba(255, 255, 255, 0.9);
    }
    
    .form-input:focus {
      outline: none;
      border-color: var(--sweet-pink-300);
      box-shadow: 0 0 0 2px var(--sweet-pink-200);
    }
    
    .form-icon {
      position: absolute;
      right: 15px;
      top: 40px;
      color: var(--sweet-pink-400);
    }
    
    .submit-btn {
      width: 100%;
      background-color: var(--sweet-pink-500);
      color: white;
      padding: 12px;
      border: none;
      border-radius: 25px;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    
    .submit-btn:hover {
      background-color: var(--sweet-pink-600);
    }
    
    .submit-btn::after {
      content: '✨';
      position: absolute;
      top: -10px;
      right: -10px;
      font-size: 1.2rem;
      opacity: 0;
      transition: all 0.3s;
    }
    
    .submit-btn:hover::after {
      opacity: 1;
      transform: translate(-20px, 20px);
    }
    
    .submit-icon {
      margin-left: 8px;
      transition: all 0.3s;
    }
    
    .submit-btn:hover .submit-icon {
      animation: pulse 0.6s infinite alternate;
    }
    
    .loading-spinner {
      width: 20px;
      height: 20px;
      border: 2px solid white;
      border-top-color: transparent;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-left: 8px;
      display: none;
    }
    
    .form-success {
      display: none;
      background-color: #e6ffea;
      color: #2e7d32;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      margin-top: 20px;
    }
    
    /* FAQ */
    .faq-item {
      border: 1px solid var(--sweet-pink-100);
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 15px;
    }
    
    .faq-toggle {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--sweet-pink-50);
      border: none;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      text-align: left;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    .faq-toggle span{
      color: black;
    }
    
    .faq-toggle:hover {
      background-color: var(--sweet-pink-100);
    }
    
    .faq-content {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .faq-content.active {
      padding: 20px;
      max-height: 500px;
    }
    
    /* Footer */
    .footer {
      background-color: var(--sweet-pink-900);
      color: white;
      padding: 60px 0 30px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 40px;
      margin-bottom: 40px;
    }
    
    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    .footer-brand {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .footer-logo {
      width: 40px;
      height: 40px;
      margin-right: 10px;
    }
    
    .footer-title {
      font-family: 'Caveat', cursive;
      font-size: 1.8rem;
    }
    
    .footer-description {
      color: var(--sweet-pink-200);
      font-size: 0.9rem;
    }
    
    .footer-links-title {
      font-family: 'Caveat', cursive;
      font-size: 1.3rem;
      margin-bottom: 20px;
    }
    
    .footer-links-list {
      list-style: none;
    }
    
    .footer-link {
      color: var(--sweet-pink-200);
      margin-bottom: 10px;
      display: block;
      transition: color 0.3s;
    }
    
    .footer-link:hover {
      color: white;
    }
    
    .social-links {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
    }
    
    .social-link {
      color: var(--sweet-pink-200);
      font-size: 1.5rem;
      transition: color 0.3s;
    }
    
    .social-link:hover {
      color: white;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid var(--sweet-pink-800);
      color: var(--sweet-pink-300);
      font-size: 0.9rem;
    }
    
    .heart {
      color: var(--sweet-pink-400);
    }
    
    /* Back to top button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: var(--sweet-pink-500);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      cursor: pointer;
      z-index: 99;
      border: none;
    }
    
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      background-color: var(--sweet-pink-600);
    }
    
    /* Animations */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    @keyframes bounceIn {
      0% { transform: scale(0.8); opacity: 0; }
      60% { transform: scale(1.1); opacity: 1; }
      100% { transform: scale(1); opacity: 1; }
    }
    
    @keyframes popIn {
      from { transform: scale(0.9); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }
    
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.6; }
    }
    
    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    @keyframes wiggle {
      0%, 100% { transform: rotate(0deg); }
      20% { transform: rotate(4deg); }
      60% { transform: rotate(-4deg); }
    }
    
    /* Page Loader */
    .page-loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, var(--sweet-pink-100), var(--sweet-pink-50));
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.5s ease;
    }
    
    .sakura-loader {
      width: 100px;
      height: 100px;
      animation: spin 1.2s linear infinite, pulse 1.5s ease-in-out infinite;
      position: relative;
    }
    
    .sakura-loader img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }