/* ===== RESET DE BAZĂ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
  }
  
  /* ===== HERO / HEADER ===== */
  .hero {
    position: relative;
    padding: 2rem 1rem;
    overflow: hidden;
    background: #fff;
  }
  
  /* Forme geometrice pastelate în header */
  .hero-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 1;
    opacity: 0.6;
    border-radius: 8px;
  }
  .shape1 {
    top: -50px;
    left: -50px;
    background: #FFD1DC; /* pastel pink */
    transform: rotate(25deg);
  }
  .shape2 {
    bottom: -60px;
    right: -60px;
    background: #FFE5B4; /* pastel peach */
    transform: rotate(-15deg);
  }
  
  .hero-content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Textul din hero */
  .hero-text {
    flex: 1 1 300px;
    padding: 1rem;
  }
  .hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
  }
  .hero-text p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #444;
  }
  
  /* Imaginea din hero */
  .hero-image {
    flex: 1 1 300px;
    text-align: right;
    padding: 1rem;
  }
  .hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  /* ===== SECȚIUNI ===== */
  .section-wrapper {
    position: relative;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .section-wrapper.alt {
    background: #fdfdfd;
  }
  
  /* Conținutul secțiunii */
  .section-content {
    flex: 1 1 600px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  
  /* Imagine + overlay pastel */
  .section-image {
    position: relative;
    flex: 1 1 300px;
    margin-bottom: 1rem;
    min-width: 280px;
    max-width: 400px;
  }
  .section-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    opacity: 0.5;
    pointer-events: none;
  }
  
  /* Culori overlay pastelate */
  .overlay-pink {
    background-color: #FFD1DC;
  }
  .overlay-peach {
    background-color: #FFE5B4;
  }
  .overlay-lemon {
    background-color: #FFFACD;
  }
  .overlay-rose {
    background-color: #FADADD;
  }
  
  /* Pentru a inversa ordinea pe secțiunile alternate */
  .order-right {
    order: 2;
  }
  .order-left {
    order: 1;
  }
  
  /* Textul din secțiune */
  .section-text {
    flex: 1 1 300px;
    padding: 1rem;
    min-width: 280px;
  }
  .section-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #000;
  }
  .section-text p {
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
  }
  
  /* ===== FOOTER ===== */
  footer {
    text-align: center;
    padding: 1rem;
    background: #000;
    color: #fff;
    font-size: 0.9rem;
  }
  
  /* Lista social media din footer */
  footer .social-icons {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  footer .social-icons li a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  footer .social-icons li a:hover {
    color: #FFD1DC; /* efect pastel la hover */
  }
  
  /* ===== MEDIA QUERIES (RESPONSIVE) ===== */
  @media (max-width: 768px) {
    .hero-content {
      flex-direction: column;
      text-align: center;
    }
    .hero-image {
      text-align: center;
    }
  
    .section-wrapper {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .section-content {
      flex-direction: column;
    }
    .order-right, .order-left {
      order: 0 !important;
    }
  }

/* Container pentru centrare */
.btn-container {
  text-align: center;
  margin: 3rem 0; /* spațiu deasupra și dedesubt */
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;                  /* mai mult spațiu între icon și text */
  padding: 2rem 3rem;           /* padding mai mare: sus/jos 1.5rem, stânga/dreapta 3rem */
  background: linear-gradient(
    135deg,
    #FFB3C1 0%,
    #FFD1DC 50%,
    #FFE8E8 100%
  );
  color: #333;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;              /* font mai mare */
  text-decoration: none;
  border-radius: 2rem;            /* colțuri și mai rotunjite */
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse 3s ease-in-out infinite;
}

/* Iconița mai proporțională cu textul mărit */
.btn-buy i {
  font-size: 2rem;
}




/* Hover / Focus – efect „ridicare” */
.btn-buy:hover,
.btn-buy:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.25);
}

/* Keyframes pentru animație */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}