/* Link to Google Fonts for Luckiest Guy */
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Roboto:wght@400;500&family=Bubblegum+Sans&display=swap');


/* Global font family for body */
body {
  font-family: 'Roboto', sans-serif;
}

navbar-brand {
  font-family: 'Bubblegum Sans';
}



/* Style for headings */
h1, h2, h3  {
    font-family: 'Luckiest Guy', sans-serif;
    font-weight: normal; /* Optional: Adjust to your design */
    color: #333; /* Optional: Customize heading color */
    line-height: 1.2; /* Optional: Adjust line height for readability */
}

/* Additional styles for the rest of the site */
p {
    font-family: 'Arial', sans-serif;
    font-size: 16px; /* Adjust to your preference */
    color: #555; /* Optional: Customize paragraph text color */
}

/* Example of a class for headings within a container */
.headline {
    font-family: 'Luckiest Guy', sans-serif;
    font-size: 2em; /* Adjust size as needed */
    color: #000;
}





.hero {
    background: url('https://via.placeholder.com/1920x600') no-repeat center center/cover;
    height: 60vh;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }
  .hero .btn {
    background-color: #ff6f61;
    border: none;
  }
  .product-card img {
    height: 200px;
    object-fit: cover;
  }
  footer {
    background: #343a40;
    color: white;
  }
  footer a {
    color: #ff6f61;
    text-decoration: none;
  }
  footer a:hover {
    text-decoration: underline;
  }
  .sidebar {
    position: sticky;
    top: 1rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
  }
  .sidebar h5 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  .sidebar a {
    text-decoration: none;
    color: #ff6f61;
    display: block;
    margin: 5px 0;
  }
  .sidebar a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .sidebar {
      position: static;
      margin-bottom: 20px;
    }
  }