/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

   /* Basic styling */
   label { display: block; margin-top: 10px; }
   .total { margin-top: 10px; font-weight: bold; }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f7f2f2;
    color: #333;
    line-height: 1.6;
  }
  
  /* Header styling */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #cc6699;
    color: #fff;
  }
  
  .logo {
    font-size: 1.5em;
    font-weight: bold;
  }
  
  nav .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  nav .nav-links a:hover {
    color: #f7f2f2;
  }
  
  /* Section Base Styles */
  .section {
    padding: 40px 20px;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5em;
    color: #cc6699;
    margin-bottom: 20px;
  }
  
  /* Home Section */
  .home {
    background-image: url('hero\ cake.jpg');
    background-size: auto;
    color: #fff;
    padding: 80px 20px;
  }
  
  .home-content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .home h1 {
    font-size: 3em;
    margin-bottom: 20px;
  }
  
  .home p {
    font-size: 1.2em;
    margin-bottom: 30px;
  }
  
  .cta-button {
    padding: 10px 20px;
    background-color: #ffb3c6;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  
  .cta-button:hover {
    background-color: #fff;
    transform: scale(1.05);
  }
  
  /* Menu Section */
  .menu-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    padding: 40px 20px;
    max-width: 1200px;
  }
  
  /* Categories grid */
  .categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .cake-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background-color: #fff;
    transition: transform 0.3s ease;
  }
  
  .cake-item:hover {
    transform: scale(1.05);
  }
  
  .cake-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .cake-title {
    font-size: 1.2em;
    color: #cc6699;
    margin-bottom: 10px;
  }
  
  .cake-description {
    font-size: 0.9em;
  }

 
  .container {
    max-width: 800px; /* Adjust based on your layout */
    margin: 0 auto; /* Center the container */
    padding: 20px; /* Add some padding */
    border: 1px solid #ccc; /* Add a border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    background-color: #f9f9f9; /* Background color */
}

h2 {
    text-align: center; /* Center the heading */
}

form {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack items vertically */
}

label {
    margin-bottom: 10px; /* Space between labels and inputs */
}

select, input[type="checkbox"] {
    margin-bottom: 20px; /* Space between inputs */
    padding: 10px; /* Padding inside inputs */
    border: 1px solid #ccc; /* Border for inputs */
    border-radius: 5px; /* Rounded corners for inputs */
}

button {
    padding: 10px; /* Padding for button */
    background-color: #007BFF; /* Button background color */
    color: white; /* Button text color */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners for button */
    cursor: pointer; /* Pointer cursor on hover */
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}



  /* Gallery Section */
.gallery {
  background-color: #f7f7f7;
  padding: 60px 20px;
}

.gallery-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  padding: 40px 20px;
  max-width: 1200px;
}

.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 180px;
 object-fit: contain;
}

.submit-button {
  padding: 10px;
  background-color: #cc6699;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

.submit-button:hover {
  background-color: #b35789;
  transform: scale(1.05);
}

.cake-title {
 font-size: 1.2em;
 color: #cc6699;
 margin: 10px 0;
}
  
  /* About Section */
  .about {
    background-color: #f7f7f7;
    padding: 60px 20px;
  }
  
  .about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
  }
  
  /* Contact Section */
  .contact {
    background-color: #fff;
    padding: 60px 20px;
  }
  
  .contact p {
    max-width: 800px;
    margin: 0 auto 20px;
  }
  
  .contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
  }
  
  .contact-form label {
    font-weight: bold;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .submit-button {
    padding: 10px;
    background-color: #cc6699;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .submit-button:hover {
    background-color: #b35789;
    transform: scale(1.05);
  }
  
/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  width: 100%; /* Full width */
}

footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  display: inline;
  margin: 0 10px;
}

footer ul li a {
  color: white;
  text-decoration: none;
}

footer ul li a i {
  margin-right: 5px;
}

.social-icons a {
  text-decoration: none;
  color: #fff;
  margin-right: 10px;
}

.social-icons i {
  margin-right: 5px;
}

.selected {
  border: 2px solid #cc6699;
  box-shadow: 0 0 10px rgba(204, 102, 153, 0.5);
}

  /* Responsive design */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2em;
    }
  
    .home h1 {
      font-size: 2.5em;
    }

    .nav-links {
      flex-direction: column;
    }
  }