@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
  --pink-main: #e91e63;
  --pink-dark: #ad1457;
  --pink-light: #f8bbd0;
  --white: #fff;
  --black: #222;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff0f5;
  color: var(--black);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: var(--pink-dark);
  padding: 1rem 0;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink-light);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--pink-light);
}

/* Marquee */
.marquee {
  background-color: #ffe0ec;
  color: var(--pink-dark);
  padding: 0.5rem;
  font-weight: bold;
  font-size: 1rem;
}

/* Hero */
.hero {
  background: linear-gradient(to right, var(--pink-dark), var(--pink-main));
  color: white;
  padding: 5rem 0 2rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 900;
  animation: fadeInDown 1s ease-in-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin: auto;
  font-weight: 500;
  animation: fadeInUp 1.2s ease-in-out;
}

.hero-image {
  max-width: 100%;
  margin-top: 2rem;
  border-radius: 12px;
  animation: zoomIn 1.5s ease-in-out;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--pink-light);
  color: var(--pink-dark);
}

.btn.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.6);
}

/* Section */
.section {
  padding: 4rem 0;
}

.section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--pink-dark);
  font-weight: 900;
  margin-bottom: 2rem;
  position: relative;
}

.section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--pink-main);
  margin: 1rem auto 0;
}

/* About */
.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.about-flex img {
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2);
}

.about-text {
  max-width: 500px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(233, 30, 99, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(233, 30, 99, 0.3);
}

.service-card h3 {
  color: var(--pink-main);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card i {
  font-size: 2rem;
  color: var(--pink-dark);
  margin-bottom: 1rem;
}

/* Contact */
.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink-main);
  outline: none;
  box-shadow: 0 0 5px rgba(233, 30, 99, 0.3);
}

/* Footer */
footer {
  background: var(--pink-dark);
  color: #ffe4ef;
  padding: 3rem 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

.footer-links h4 {
  margin-bottom: 0.5rem;
  color: #ffcadd;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #ffe4ef;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

footer p {
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .about-flex {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}
