body {
  margin: 0;
  font-family: 'DomCasual BT', sans-serif;
  background-color: #fdfcf9;
  color: #333;
}

header {
  background-color: #008080;
  color: white;
  padding: 1rem;
  text-align: center;
  font-family: 'Buenard', serif;
}

header h1 {
  font-size: 2rem;
  margin: 0;
}

header p {
  font-size: 1.2rem;
  margin: 0;
  font-family: 'DomCasual BT', sans-serif;
}

nav {
  background: #006666;
  display: flex;
  justify-content: center;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 0.8rem 1rem;
  display: block;
}

nav a:hover {
  background: #004c4c;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block; /* removes extra space below images */
}


main {
  padding: 1rem;
}

.carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel img {
  width: 100%;
  display: block;
}

.about,
.creations,
.contact {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
}

form input,
form textarea {
  margin-bottom: 0.8rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background: #008080;
  color: white;
  padding: 0.7rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background: #006666;
}

footer {
  background: #004c4c;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
