/* ------------------------------
   GLOBAL
------------------------------ */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ------------------------------
   NAVIGATION
------------------------------ */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav a {
  margin-left: 20px;
  font-weight: 500;
}

/* ------------------------------
   HERO SECTION (FULL IMAGE FIT)
------------------------------ */

.hero {
  height: 100vh; /* full screen height */
  background-size: contain; /* show entire image */
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000; /* fills empty space around image */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* Text overlay for readability */
.hero-content {
  text-align: center;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  background: rgba(0, 0, 0, 0.35);
  padding: 25px 35px;
  border-radius: 6px;
  max-width: 700px;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #111;
  color: white;
  font-weight: bold;
}

/* ------------------------------
   INTRO SECTION
------------------------------ */

.intro {
  text-align: center;
  padding: 60px 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* ------------------------------
   ABOUT PAGE IMAGE
------------------------------ */

.about-image {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: 300px;
  height: auto;
}

/* ------------------------------
   CONTACT FORM
------------------------------ */

.contact-form {
  margin-top: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact-form button {
  padding: 12px;
  background: #111;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* ------------------------------
   FOOTER
------------------------------ */

footer {
  text-align: center;
  padding: 30px 0;
  background: #fff;
  color: #111;
  font-size: 14px;
  border-top: 1px solid #eee;
}

footer p {
  margin: 0;
}

/* Kickstarter Section */
.kickstarter-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.kickstarter-image {
  position: relative;
  display: inline-block;
}

.kickstarter-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* Centered button overlay */
.kickstarter-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.65);
  color: white;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
}

