/* General Reset */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #5c8cb4; /* Light background */
  }
  
  
  @media (max-width: 768px) {
    body {
      font-size: 16px;
    }
  }

  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Header */
  .header {
    
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
  }
  
  .navbar li {
    margin: 0 1rem;
  }
  
  .navbar a {
    color: white;
    text-decoration: none;
  }
  
  /* Cakes Section */
  .cakes-section {
    text-align: center;
    padding: 4rem 1rem;
  }
  
  .cakes-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .cake-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
    width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .cake-card img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover; /* Ensure image fits nicely */
    border-radius: 8px;
  }
  
  .cake-card h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    color: #333;
  }
  
  .cake-card p {
    font-size: 1rem;
    color: #666;
  }
  
  .cake-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: white;
    margin-top: 2rem;
  }
  