body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: #f9f9f9;
}

#contact-form {
  max-width: 500px;
  margin: 30px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
}

#contact-form input,
#contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

#contact-form button {
  background-color: #333;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
}

#contact-form button:hover {
  background-color: #555;
}

#inventory {
  display: flex;            /* lays items side by side */
  flex-wrap: wrap;          /* wraps to new lines */
  justify-content: center;  /* centers items horizontally */
  gap: 20px;                /* spacing between items */
  margin-top: 20px;
}

body {
  background: linear-gradient(to bottom, #fff1eb, #ace0f9);
  min-height: 100vh;
  margin: 0;
}

.about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2em;
  color: black;
}

.callout {
  font-style: italic;
  color: #555;
  margin-top: 1rem;
  border-left: 4px solid #ddd;
  padding-left: 1rem;
}

.container {
  display: flex;
  min-height: 100vh;
}

.cta-button {
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

.filament {
  margin: 20px;
  border: 1px solid #ddd;
  padding: 10px;
  background: white;
  width: 200px;
  min-height: 250px;
  word-wrap: break-word;
  overflow: visible;
}

.filament p {
  white-space: normal;
  overflow: anywhere;
  word-break: break-word;
}

.filament p:first-of-type {
  font-weight: bold;
  font-size: 18px;
  color: #333;
}

.filament p:last-of-type {
  font-size: 14px;
  color: #333;
  font-style: italic;
}

.filament img {
  width: 100%;
  height: auto;
}

.gallery-item p {
  font-family: "Courier New", monospace;
  font-size: 14px;
  text-align: center;
  margin-top: 6px;
}

.gallery-item {
  display: inline-block;
  margin: 10px;
  text-align: center;
}

.gallery-item img {
  width: 150px;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
}

header {
  text-align: center;
  margin: 2rem 0;
  min-height: 1rem 0;
}

header h1 {
  font-size: 2em;
  margin: 0;
  color: hsl(25, 36%, 37%)
}

header p {
  font-size: 1.2em;
  font-style: italic;
  color: hsl(0, 27%, 62%);
  margin: 5px 0 15px;
}

.home-sections {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.inventory-item {
  display: inline-block;
  width: 200px;
  margin: 15px;
  text-align: center;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 8px;
  height: 300px;
  overflow: hidden;
}

.inventory-item img {
  max-width: 150px;   /* Sets a maximum width */
  height: auto;       /* keeps aspect ratio */
  display: block;     /* removes inline spacing */
  margin: 0 auto;     /* centers the image */
  border-radius: 4px; /* optional: rounded corners */
}

.main-content {
  flex: 1;
  padding: 20px;
}

nav {
  background-color: #e0e0e0;
  padding: 0.5em;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav li {
  margin: 0 1em;
}

nav a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

nav a.active {
  color: black;
  border-bottom: 3px solid #ff9800;
  padding-bottom: 2px;
}

nav a:hover {
  text-decoration: underline;
}

section.two-column {
  margin-bottom: 4rem;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
  margin: 40px 0;
  z-index: 5;
  display: block;
}

.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: fadeSlider 15s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }

@keyframes fadeSlider {
  0% { opacity: 0; }
  10% { opacity: 1; }
  33% { opacity: 1; }
  43% { opacity: 0; }
  100% { opacity: 0; }
}

.slider-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
}


.text-box {
  max-width: 85%;
  max-height: 80%;
  overflow-y: auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.slogan {
  font-size: 20px;
  font-style: italic;
}

.swatch {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 8px;
  background-size: cover;
  background-position: center;
  display: block;
  margin-inline: auto;
}

.swatch:hover {
  transform: scale(1.05);
  transition: 0.15s ease;
  border-color: #999;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.team-intro h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.team-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
  justify-items: center;
}

.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.team-card p {
  color: #555;
  line-height: 1.5;
}

.team-card .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  box-shadow: 0 4px 10px rgba(0,0,0, 1.5);
}

.two-column {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
}

.two-column.reverse {
  flex-direction: row-reverse;
}

.two-column .image {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
}

.two-column .image img {
  width: 100%;
  max-width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.two-column .text h2 {
  margin-top: 0;
  font-size: 1.8em;
  color: #101720;
}

.two-column .text p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
}

.two-column.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 1100px) {
  .two-column,
  .two-column.reverse {
    flex-direction: column;
  }

  .two-column .image,
  .two-column .text {
    width: 100%;
  }
}

@media (max-width: 768px) {
  header {
    margin: 1.5rem 0;
    padding: 0.5rem 0;
  }


.two-column,
.two-column.reverse {
  flex-direction: column;
}

.two-column .image,
.two-column .text {
  flex: none;
  width: 100%;
}

.two-column .text h2 {
  text-align: center;
}

  header h1 {
    font-size: 1.5em;
  }

  header p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  header {
    margin: 1rem 0;
    padding: 0.5rem 0;
  }

  header h1 {
    font-size: 1.2em;
  }

  header p {
    font-size: 0.9em;
  }
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}