/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  background-image: url('baking/back.jpg'); /* ✅ Ensure correct path */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-color: #fdf0f5; /* Fallback color */
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: linear-gradient(to right, #f8dce5, #fcd6de);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #e5a3ad;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.navbar .logo img {
  height: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #8b4c5c;
  font-weight: 500;
  font-size: 1rem;
  font-family: 'Josefin Sans', sans-serif;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #5a2d3a;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px 10px;
  background-color: rgba(255, 250, 252, 0.85); /* Semi-transparent for background image */
}

.hero-logo {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.hero h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  color: #c67f8d;
  margin-top: 0;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 8px;
  color: #555;
  font-family: 'Cormorant Garamond', serif;
}

/* About Section */
.about {
  background-color: rgba(255, 250, 252, 0.85);
  padding: 40px 20px;
  text-align: center;
}

.about-container {
  max-width: 700px;
  margin: 0 auto;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #c67f8d;
  margin-bottom: 20px;
}

.about p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
}

/* Featured Images Section */
.featured-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 20px 60px;
  gap: 30px;
  background-color: rgba(253, 240, 245, 0.85);
}

.image-card {
  background-color: #fffafc;
  padding: 10px;
  border-radius: 10px;
  border: 0.5px solid #e9b6c1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: scale(1.03);
}

.image-card img {
  width: 240px;
  height: 240px;
  border-radius: 8px;
  object-fit: cover;
}

/* Contact Page Styling */
.contact {
  background-color: rgba(255, 250, 252, 0.92);
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  max-width: 900px;
  margin: 60px auto;
  box-shadow: 0 8px 30px rgba(204, 154, 172, 0.15);
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #c67f8d;
  margin-bottom: 20px;
}

.contact p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff0f5;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #f4c2d7;
}

.contact-form input,
.contact-form textarea {
  padding: 15px 18px;
  font-size: 1rem;
  border: 1px solid #e5a3ad;
  border-radius: 8px;
  font-family: 'Josefin Sans', sans-serif;
  background-color: #fffdfd;
  color: #333;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d98fa0;
  box-shadow: 0 0 5px rgba(210, 135, 158, 0.3);
}

.contact-form button {
  padding: 14px 20px;
  background-color: #d98fa0;
  border: none;
  color: white;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Josefin Sans', sans-serif;
}

.contact-form button:hover {
  background-color: #b56b84;
}

.contact-details {
  margin-top: 40px;
  font-size: 1rem;
  color: #555;
  font-family: 'Cormorant Garamond', serif;
}

.contact-details p {
  margin-bottom: 12px;
}

.contact-details a {
  color: #a8566a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #8b4c5c;
}

.contact-details i {
  margin-right: 8px;
  color: #c67f8d;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  font-size: 28px;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
}
