/* =========================================================
   🍞 CUTE BREAD THEME WEBSITE - NEOCITIES CSS
   #body-style = controls the whole page look
   ========================================================= */

body {
  background-color: #fff8ef; /* soft bakery cream background */
  color: #5c3b1e; /* warm bread brown text */
  font-family: "Verdana", sans-serif;
  margin: 0;
  padding: 0;
  background-image: radial-gradient(#ffe8c7 1px, transparent 1px);
  background-size: 20px 20px;
}

/* =========================================================
   #main-container = centers all website content
   ========================================================= */

.container {
  width: 80%;
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* =========================================================
   #header-style = cute title section
   ========================================================= */

header {
  background-color: #ffcf8b;
  border-bottom: 5px dotted #d98b3a;
  text-align: center;
  padding: 30px;
  border-radius: 0 0 25px 25px;
}

header h1 {
  font-size: 48px;
  margin: 0;
}

header p {
  font-size: 18px;
}

/* =========================================================
   #navigation-bar = menu buttons
   ========================================================= */

nav {
  text-align: center;
  margin-top: 20px;
}

nav a {
  text-decoration: none;
  background-color: #f4b266;
  color: white;
  padding: 10px 18px;
  margin: 5px;
  display: inline-block;
  border-radius: 20px;
  transition: 0.3s;
}

/* #hover-effect = changes button color when mouse touches */

nav a:hover {
  background-color: #d98b3a;
  transform: scale(1.05);
}

/* =========================================================
   #content-box = main bread info cards
   ========================================================= */

.card {
  background-color: white;
  border: 3px dashed #ffcf8b;
  border-radius: 20px;
  padding: 20px;
  margin-top: 25px;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
}

/* =========================================================
   #bread-images = styling for bread pictures
   ========================================================= */

.card img {
  width: 100%;
  border-radius: 15px;
  border: 4px solid #ffe2b8;
}

/* =========================================================
   #headings = section titles
   ========================================================= */

h2 {
  color: #c96a1b;
}

/* =========================================================
   #fun-facts-list = cute bread facts
   ========================================================= */

ul {
  background-color: #fff3df;
  padding: 15px 30px;
  border-radius: 15px;
}

/* =========================================================
   #footer-style = bottom credits area
   ========================================================= */

footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  background-color: #ffcf8b;
  border-top: 5px dotted #d98b3a;
  border-radius: 25px 25px 0 0;
}

/* =========================================================
   #sparkle-animation = tiny floating effect
   ========================================================= */

.card:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}