/* Base and Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #444;
  line-height: 1.6;
}

/* Header Section */
.hero {
  background: linear-gradient(to bottom right, #ffc0cb, #fff);
  text-align: center;
  padding: 40px 20px;
}

.logo {
  width: 180px;
  border-radius: 10px;
  margin-bottom: 10px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  color: #d63384;
  margin-bottom: 5px;
}

.slogan {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

/* Navigation Links */
.nav-links {
  margin-top: 10px;
}

.nav-links a {
  text-decoration: none;
  color: #d63384;
  font-weight: bold;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #b12d6b;
}

/* About Section */
.about {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff5f8;
}

.about h2 {
  color: #d63384;
  margin-bottom: 15px;
}

/* Offers Section */
.offers {
  padding: 40px 20px;
  text-align: center;
}

.offers h2 {
  color: #d63384;
}

.offer-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background-color: #fff;
  border: 2px solid #ffd6e0;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  width: 250px;
  padding: 15px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 10px;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  color: #d63384;
  margin-top: 10px;
}

/* Contact Section */
.contact {
  background-color: #ffe6ef;
  text-align: center;
  padding: 40px 20px;
}

.contact h2 {
  color: #d63384;
  margin-bottom: 15px;
}

.contact a {
  color: #d63384;
  text-decoration: none;
  font-weight: bold;
}

.btn {
  display: inline-block;
  background-color: #d63384;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #b12d6b;
}

.love {
  margin-top: 20px;
  color: #d63384;
  font-weight: bold;
}

/* RESPONSIVENESS */

/* Tablets and small laptops */
@media (max-width: 992px) {
  .offer-cards {
    justify-content: center;
  }
}

/* Mobile phones */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8em;
  }

  .offer-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .logo {
    width: 150px;
  }
}

/* Very small phones (like iPhone SE) */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .btn {
    width: 80%;
  }

  /* ===== Footer Section ===== */
.footer {
  background-color: #ffb6c1; /* soft pink */
  color: white;
  text-align: center;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
}

.footer-info h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: white;
}

.footer-info p {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 25px;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffe6ec;
}

.footer-bottom {
  border-top: 1px solid #ffe6ec;
  padding-top: 15px;
  font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .footer-info h3 {
    font-size: 1.2rem;
  }
  .footer-info p {
    font-size: 0.9rem;
  }
  .footer-links a {
    display: inline-block;
    margin: 5px;
  }
}

}
