/* Reset some default margins */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  color: #333;
  background-color: #fff8f0; /* very light wood tone */
  scroll-behavior: smooth;
}

/* Header */
header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #f5e6d0; /* soft beige */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Sections with subtle background differences */
#gifts {
  background-color: #fff8f0;
  border-bottom: 1px solid #e2d4c0;
}

#classes {
  background-color: #fdf5ec;
  border-bottom: 1px solid #e2d4c0;
}

#gallery {
  background-color: #fff8f0;
  border-bottom: 1px solid #e2d4c0;
}

#make {
  background-color: #fdf5ec;
  border-bottom: 1px solid #e2d4c0;
}

#markets {
  background-color: #fff8f0;
  border-bottom: 1px solid #e2d4c0;
}

#schedule {
  background-color: #fdf5ec;
  border-bottom: 1px solid #e2d4c0;
}

#testimonials {
  background-color: #fff8f0;
  border-bottom: 1px solid #e2d4c0;
}

#about {
  background-color: #fdf5ec;
  border-bottom: 1px solid #e2d4c0;
}

#contact {
  background-color: #fff8f0;
}

 a {
  margin-left: 15px;
  text-decoration: none;
  color: #5a3e2b;
  color: Teal;
  font-weight: 500;
  transition: color 0.3s;
}

.logo a {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  margin-left:0;
  color: #5a3e2b;
}


 a:hover {
  color: #8b5e3c; /* slightly lighter wood accent */
}

/* Hero Section */
.intro {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #fff8f0 0%, #f2e3d5 100%);
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.2em;
  color: #5a3e2b;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.1em;
  color: #6b4d38;
}

.hero-buttons {
  margin-top: 25px;
}

.button {
  display: inline-block;
  padding: 12px 20px;
  background: #8b5e3c; /* darker wood tone */
  color: #fff;
  text-decoration: none;
  margin: 5px;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s;
}

.button:hover {
  background: #a67650; /* lighter accent on hover */
}

/* Hero image */
.hero-image img {
  width: 100%;
  max-width: 600px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  background-color: #fff8f0; /* consistent soft wood tone */
  border-bottom: 1px solid #e2d4c0;
}

section h2 {
  font-size: 1.8em;
  color: #5a3e2b;
  margin-bottom: 15px;
}

/* Paragraphs */
section p {
  color: #6b4d38;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.03);
}


#markets img {
  width: 100%;
  max-width: 600px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Testimonials */
blockquote {
  border-left: 4px solid #8b5e3c;
  padding-left: 15px;
  margin: 20px 0;
  font-style: italic;
  color: #5a3e2b;
  background: #fdf5ec;
  padding: 15px 20px;
  border-radius: 5px;
}

/* Lists */
ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 10px;
  font-weight: 500;
}

#dates li{
	border-bottom:0.5px solid silver;
	padding-bottom:10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px;
  background: #f5e6d0;
  color: #5a3e2b;
}

/* Desktop layout for hero */
@media(min-width: 900px) {
  .intro {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
  }
  .hero-image {
    margin-left: 40px;
  }
}

