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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #fdf6fb, #fcefee);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: #4a4a4a;
}

/* Container */
.container {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 15px 40px rgba(255, 111, 145, 0.25);
  padding: 3rem 2.5rem;
  max-width: 720px;
  width: 100%;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
  border: 1px solid #ffc1d3;
}

/* Image styling */
.image-container img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ff8ea3;
  box-shadow: 0 10px 30px rgba(255, 143, 160, 0.3);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.image-container img:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(255, 111, 145, 0.5);
}

/* Title */
.title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff6f91 0%, #ff9a8b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
  letter-spacing: 1.2px;
}

/* Tagline */
.tagline {
  font-size: 1.5rem;
  font-style: italic;
  color: #ff6f91;
  margin-bottom: 0.75rem;
  letter-spacing: 0.6px;
}

/* Location */
.location {
  font-weight: 600;
  font-size: 1.1rem;
  color: #ff758f;
  margin-bottom: 2rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Category sections */
.category {
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.category h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ff647f;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category .emoji {
  font-size: 1.5rem;
}

.category ul {
  list-style-type: none;
}

.category ul li {
  background: #fff0f4;
  margin-bottom: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  box-shadow: inset 1px 1px 6px rgba(255, 111, 145, 0.15);
  font-weight: 500;
  color: #8a405a;
  transition: background 0.3s ease;
}

.category ul li:hover {
  background: #ffd4dc;
  cursor: default;
}

/* CTA buttons container */
.cta-buttons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.3rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #ff6f91 0%, #ff9a8b 100%);
  box-shadow: 0 6px 15px rgba(255, 111, 145, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.btn:hover {
  background: linear-gradient(90deg, #ff4972 0%, #ff6f91 100%);
  box-shadow: 0 10px 30px rgba(255, 73, 114, 0.6);
}

.btn.insta {
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 6px 15px rgba(255, 94, 73, 0.6);
}

.btn.insta:hover {
  background: linear-gradient(45deg, #a340c7, #e81111, #fcb045);
  box-shadow: 0 10px 30px rgba(255, 94, 73, 0.9);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .container {
    padding: 2rem 1.5rem;
  }

  .title {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.3rem;
  }

  .location {
    font-size: 1rem;
  }

  .image-container img {
    width: 130px;
    height: 130px;
  }

  .category {
    max-width: 100%;
  }

  .btn {
    font-size: 1rem;
    padding: 0.8rem 1.3rem;
  }
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}