body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 0.5rem;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem; 
}

.logo {
  width: 300px;
  height: auto;
  margin-bottom: 0.5rem; 
}

.copyright-notice {
  font-size: 0.8rem;
  color: #888;
  margin: 0; 
  text-align: center;
  opacity: 0.7;
  letter-spacing: 0.5px;

}

nav {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #fff;
}

.intro {
  text-align: center;
  padding: 2rem 1rem;
}

.tagline {
  font-style: italic;
  color: #fff;
}

.tagline strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-top: 0.5rem;
}

section {
  padding: 1.5rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  border-bottom: 1px solid #333;
}

section:first-of-type {
  margin-top: 0;
  padding-top: 0.5rem;
}

section h2 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

section ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.contact {
  text-align: center;
  margin: 2rem 0;
  font-size: 1rem;
}

.contact a {
  color: #fff;
  text-decoration: underline;
}

#instagram-feed {
  padding: 2rem 1rem;
  background-color: #222;
  color: #fff;
  text-align: center;
}

.instagram-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.insta-caption {
  font-style: italic;
  color: #ccc;
  margin-top: 1rem;
  text-align: center;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ffffff;
  color: black;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

#backToTop:hover {
  background-color: #b00610;
}

html {
  scroll-behavior: smooth;
}
