.btn-pink {
    background: #ff4f86;
    border: none;
    color: #fff;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
    font-size: 17px;
}
.btn-pink:hover {
    background: #ff2d71;
}

.bg-default{
    background-color: #eeeeee;
}
/* TEMPLATE BOXES */
.template-box {
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }
  
  /* PHOTO GRID */
  .template-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .template-photos img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 0.5rem;
  }
  
  /* 1. ROMANTIC */
  
  
  /* 2. MINIMAL */
  .minimal { background: #ffffff; color: #333; font-family: 'Helvetica Neue', sans-serif; border: 2px solid #eee; }
  .minimal h1 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 600; }
  .minimal p { font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.4; }
  
  /* 3. PLAYFUL */
  .playful { background: #fff3e0; color: #ff5722; font-family: 'Comic Neue', cursive; }
  .playful h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); text-transform: uppercase; }
  .playful p { font-size: clamp(1rem, 2.5vw, 1.5rem); line-height: 1.4; }
  
  /* 4. ELEGANT */
  .elegant { background: linear-gradient(to bottom, #2c3e50, #34495e); color: #ecf0f1; font-family: 'Georgia', serif; }
  .elegant h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
  .elegant p { font-size: clamp(1rem, 2.5vw, 1.5rem); line-height: 1.6; }
  
  /* 5. BOLD */
  .bold { background: #ff6f00; color: #fff; font-family: 'Impact', sans-serif; text-transform: uppercase; text-shadow: 2px 2px rgba(0,0,0,0.3); }
  .bold h1 { font-size: clamp(2rem, 5vw, 4rem); }
  .bold p { font-size: clamp(1.2rem, 3vw, 1.8rem); }
  
  /* 6. SOFT */
  .soft { background: #e0f7fa; color: #006064; font-family: 'Arial', sans-serif; }
  .soft h1 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 600; }
  .soft p { font-size: clamp(1rem, 2.5vw, 1.4rem); }
  
  /* 7. DREAMY */
  .dreamy { background: linear-gradient(135deg, #a18cd1, #fbc2eb); color: #4b0082; font-family: 'Cursive', sans-serif; }
  .dreamy h1 { font-size: clamp(1.7rem, 4vw, 3rem); font-style: italic; }
  .dreamy p { font-size: clamp(1rem, 2.5vw, 1.5rem); line-height: 1.6; }

  .romantic-template {
    position: relative;
    width: 100%;
    min-height: 420px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, #a8004f, #ff4d88);
    color: white;
  }
  
  /* RIGHT SIDE BIG IMAGE */
  .romantic-template::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: var(--romantic-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.9;
  }
  
  /* DARK OVERLAY for readability */
  .romantic-template::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(0,0,0,0.6) 0%,
      rgba(0,0,0,0.4) 40%,
      rgba(0,0,0,0.1) 70%,
      rgba(0,0,0,0) 100%
    );
    z-index: 1;
  }
  
  /* CONTENT */
  .romantic-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* BIG TITLE */
  .romantic-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
  }
  
  /* DATE */
  .romantic-date {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }
  
  /* MESSAGE */
  .romantic-message {
    font-size: 15px;
    line-height: 1.6;
    max-width: 90%;
    margin-bottom: 20px;
  }
  
  /* PHOTO GRID */
  .romantic-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .romantic-photos img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.6);
    transition: transform 0.3s ease;
  }
  
  .romantic-photos img:hover {
    transform: scale(1.05);
  }
  
  /* MOBILE RESPONSIVE */
  @media (max-width: 768px) {
    .romantic-template {
      flex-direction: column;
    }
  
    .romantic-template::after {
      width: 100%;
      height: 40%;
    }
  
    .romantic-content {
      width: 100%;
      padding: 20px;
      margin-top: 140px;
    }
  
    .romantic-photos img {
      height: 60px;
    }
  }



/* MAIN CONTAINER */
.minimal-template {
    position: relative;
    width: 100%;
    border-radius: 20px;
    padding: 40px 20px 20px;
    background: radial-gradient(circle at top, #1e293b, #020617);
    color: white;
    overflow: hidden;
    text-align: center;
    animation: fadeIn 0.6s ease;
  }
  
  /* SOFT BACKGROUND SHAPES */
  .minimal-template::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 20%, rgba(245,158,11,0.25), transparent 40%),
      radial-gradient(circle at 80% 10%, rgba(59,130,246,0.25), transparent 40%);
    opacity: 0.4;
  }
  
  /* FLOATING BALLOONS 🎈 */
  .minimal-template .balloon {
    position: absolute;
    width: 18px;
    height: 24px;
    border-radius: 50%;
    opacity: 0.8;
    animation: float 6s infinite ease-in-out;
  }
  
  .balloon::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 12px;
    background: white;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* different colors */
  .balloon.red { background: #ef4444; left: 15%; top: 20%; }
  .balloon.blue { background: #3b82f6; left: 80%; top: 25%; animation-delay: 1s; }
  .balloon.yellow { background: #f59e0b; left: 70%; top: 10%; animation-delay: 2s; }
  
  /* CIRCLE IMAGE */
  .minimal-template::after {
    content: '';
    display: block;
    width: 170px;
    height: 170px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background-image: var(--minimal-bg);
    background-size: cover;
    background-position: center;
    border: 6px solid white;
    box-shadow:
      0 10px 30px rgba(0,0,0,0.5),
      0 0 20px rgba(255,255,255,0.2);
    z-index: 2;
  }
  
  /* CONTENT */
  .minimal-content {
    position: relative;
    z-index: 3;
  }
  
  /* TITLE (BOLD MAIN) */
  .minimal-title {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 700;
    margin-bottom: 6px;
  }
  
  /* DATE BADGE */
  .minimal-date {
    display: inline-block;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    background: linear-gradient(to right, #f59e0b, #fbbf24);
    color: #000;
    margin-bottom: 12px;
    font-weight: 600;
  }
  
  /* MESSAGE */
  .minimal-message {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 85%;
    margin: 0 auto 15px;
  }
  
  /* SIGNATURE STYLE */
  .minimal-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #f59e0b;
    margin: 8px auto 0;
    border-radius: 2px;
  }
  
  /* PHOTO GRID */
  .minimal-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 12px;
  }
  
  .minimal-photos img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .minimal-photos img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
  }
  
  /* ANIMATIONS */
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  /* MOBILE */
  @media (max-width: 600px) {
    .minimal-template::after {
      width: 130px;
      height: 130px;
    }
  
    .minimal-photos img {
      height: 60px;
    }
  }