/* Fonts: Pacifico for whimsy, Quicksand for clean text */
body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background-color: #fefcfb;
  color: #2f2f2f;
}

/* Header & Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  background-color: #219ebc;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .logo {
  font-family: 'Pacifico', cursive;
  font-size: 1.6rem;
  flex: 1;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffb703;
}

/* Hero section */
.hero {
  background: linear-gradient(120deg, #ffb703, #fb8500);
  color: white;
  text-align: center;
  padding: 6rem 2rem;
}

.hero h1 {
  font-family: 'Pacifico', cursive;
  font-size: 3rem;
}

.hero p {
  font-size: 1.3rem;
  margin-top: 1rem;
}

.hero button {
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #023047;
  border: none;
  color: white;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero button:hover {
  background-color: #03506f;
}

/* Content sections */
.content {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.content h2 {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;
  color: #fb8500;
  margin-bottom: 1rem;
}

.alt-bg {
  background-color: #f0f9ff;
}

/* Catalog grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.catalog-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease;
}

.catalog-item:hover {
  transform: translateY(-5px);
}

.catalog-item img {
  max-width: 100%;
  border-radius: 8px;
}

.catalog-item h3 {
  margin: 1rem 0 0.5rem;
  font-family: 'Pacifico', cursive;
  color: #219ebc;
}

/* Buttons */
button {
  padding: 0.7rem 1.4rem;
  background-color: #219ebc;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

button:hover:enabled {
  background-color: #fb8500;
}

button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Footer */
footer {
  background-color: #023047;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.8rem;
    margin-top: 0.5rem;
  }
}
