/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #eed6d6;
  color: black;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 28px;
  font-weight: bold;
  color: #eed6d6;
  display: flex;
  align-items: center;
}

header .logo i {
  margin-right: 10px;
}

header nav ul {
  display: flex;
  list-style-type: none;
}

header nav ul li {
  margin: 0 10px;
}

header nav ul li a {
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #f79c42;
}

img{
  height: 200px;
}

/* Hero Section */
.hero {
  background-image: url('img1.png'); /* Replace with your actual image */
  background-size: cover;
  background-position: center;
  height: 95vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero h2 {
  font-size: 60px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 24px;
  margin-bottom: 30px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero .btn {
  background-color: #f79c42;
  color: white;
  padding: 12px 24px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hero .btn:hover {
  background-color: #e67e22;
}

/* Dessert Menu Section */
.dessert-menu {
  padding: 50px 20px;
  text-align: center;
  background-color: #fff;
}

.dessert-menu h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #133b5c;
  text-transform: uppercase;
  font-weight: 600;
}

.dessert-item {
  display: inline-block;
  width: 30%;
  padding: 20px;
  margin: 10px;
  background-color: #2e3d49;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dessert-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.dessert-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.dessert-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.dessert-item p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.order-btn {
  background-color: #f79c42;
  color: #2e3d49;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.order-btn:hover {
  background-color: #e67e22;
}

/* About Us Section */
.about-us {
  background-color: #eed6d6;
  padding: 50px 20px;
  text-align: center;
}

.about-us h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: normal;
  color: black;
}

.about-us p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  color: #070707;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-style: italic;
}

.contact-us .btn {
  background-color: #f79c42;
  color: white;
  padding: 12px 24px;
  font-size: 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-us .btn:hover {
  background-color: #e67e22;
}

/* Footer */
footer {
  background-color: #133b5c;
  color: white;
  padding: 20px;
  text-align: center;
}

footer .social-links {
  margin: 20px 0;
}

footer .social-links a {
  color: white;
  margin: 0 10px;
  font-size: 24px;
  transition: color 0.3s ease;
}

footer .social-links a:hover {
  color: #f79c42;
}

footer .locations {
  margin-top: 20px;
  font-size: 18px;
}

footer .locations p {
  margin: 5px 0;
}

/* Slider */
.slider-container {
  width: 100%;
  margin: 50px 0;
  text-align: center;
}

.slider .slide {
  display: none;
  width: 100%;
  height: 400px;
}

.slider .active {
  display: block;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Media Queries for Responsiveness */
@media (max-width: 480px) {
  .dessert-item {
      width: 100%;
  }

  .dessert-item h3 {
      font-size: 20px;
  }

  .dessert-item p {
      font-size: 14px;
  }
}

@media (max-width: 768px) {
  header nav ul {
      flex-direction: column;
  }

  header nav ul li {
      margin-bottom: 10px;
  }

  .dessert-item {
      width: 100%;
  }

  .hero h2 {
      font-size: 36px;
  }

  .hero p {
      font-size: 18px;
  }

  .dessert-menu h2 {
      font-size: 30px;
  }

  .dessert-item h3 {
      font-size: 20px;
  }

  .dessert-item p {
      font-size: 14px;
  }
  .contact-us .btn {
      font-size: 16px;
  }
}

/* Product Slider Styling */
.product-slider {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.product-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.product-card:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
}

.product-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 16px;
  margin-bottom: 15px;
}

.product-card .btn {
  background-color: #f79c42;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.product-card .btn:hover {
  background-color: #e67e22;
}

/* Font for the heading */
.about-heading {
  font-family: 'Arial', sans-serif; 
  font-weight: normal;
  font-size: 2.5rem;  /* Adjust the size as needed */
  color: black;  /* Dark color for contrast */
}

/* Font for the paragraph */
.about-paragraph {
  font-family: 'Georgia', serif;  
  font-size: 1.2rem;
  line-height: 1.6;  /* To give better spacing between lines */
  color: black;  /* A slightly lighter color */
}

/* Font Style for Contact Section */
.contact-heading {
  font-family: Arial, Helvetica, sans-serif;  /* Modern sans-serif font */
  font-weight: 100;
  font-size: 2.5rem;
  color: black;  /* Dark color for visibility */
  margin-bottom: 20px;
}

/* Subheading Font Style */
.contact-subheading {
  font-family: Georgia, 'Times New Roman', Times, serif;  /* Elegant serif font */
  font-weight: 300;
  font-size: 1.2rem;
  color: black;
  margin-bottom: 40px;
  font-style: italic;
}

/* Styling the form inputs */
#contactForm .form-control {
  font-family: Arial, Helvetica, sans-serif;  /* Serif font for input fields */
  font-size: 1rem;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: border-color 0.3s ease-in-out;
}

#contactForm .form-control:focus {
  border-color: #f39c12;  /* Highlight border when focused */
  box-shadow: 0 0 5px rgba(243, 156, 18, 0.7);
}

/* Styling the Submit Button */
.btn-custom {
  font-family: 'Arial', sans-serif;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 15px 30px;
  background-color: #e74c3c;  /* Red color */
  color: #fff;
  border-radius: 25px;
  border: none;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease;
}

/* Button hover effect */
.btn-custom:hover {
  background-color: brown;
  transform: scale(1.1);  /* Slightly increase the size on hover */
  cursor: pointer;
}

/* Add a subtle focus effect */
.btn-custom:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(231, 76, 60, 0.7);
}

/* Feedback Section Styling */
.feedback {
  font-family: 'Arial', serif;
  font-size: 1.1rem;
  color: #2c3e50;
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
  margin-top: 40px;
}

.feedback h3 {
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  color: #D64161;
}

.feedback p {
  font-size: 1.1rem;
  color: black;
}

/* Footer Section */
footer {
  background-color: dark;
  color: white;
  padding: 20px 0;
  margin-top: auto; /* Pushes the footer to the bottom of the page */
}

footer .store-info h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

footer .store-info p {
  font-size: 1rem;
  color: #ccc;
}

footer .social-icons {
  margin-top: 15px;
}

footer .social-icon {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
}

footer .social-icon:hover {
  color: #e74c3c;
}

footer p {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 15px;
}

/* Ensure social icons are centered */
footer .social-icons a {
  margin: 0 15px;
}

/* Additional Styles for Footer Links */
footer a {
  text-decoration: none;
  color: inherit;
}

footer a:hover {
  color: #e74c3c;
}
