/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #eee;
  /* background: #111; */
  background-color: #C3A5C7;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between; /* pushes nav links to the right */
  align-items: center;
  padding: 15px 30px;
  background-color: #C3A5C7;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e63946;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #eee;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #e63946;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #eee;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('images/campfire-8081877_1920.jpg') no-repeat center center/cover; 
  background-color: #C3A5C7;
  position: relative;
  height: 100vh;
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #e63946;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ff4757;
}

/* Sections */
.section {
  padding: 4rem 2rem;
  text-align: center;
}

.section.dark {
  background: #222;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #e63946;
}

.section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: #C3A5C7;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #C3A5C7;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

.btn {
  display: inline-block;
  margin-top: 1em;
  padding: 0.6em 1.2em;
  background: #f90;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn:hover {
  background: #ffb733;
}

/* Slideshow container sits behind content */
.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  z-index: 0;
}

/* Individual slides */
.slide {
  min-width: 100%;
  height: 100%;
  background: black; /* fallback */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  color: rgba(255,255,255,0.8);
  transition: transform 1s ease-in-out;
}

/* Ensure hero content overlays slides */
.hero-content {
  position: relative;
  z-index: 1;
}