/* ====== Base Styling ====== */
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
}

h1, h2, h3 {
  color: #ff6a00;
  margin-bottom: 1rem;
}

p {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
}

/* ====== Navbar ====== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  z-index: 999;
  border-bottom: 1px solid #222;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.4rem 1rem;
}

.nav-container ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav-container a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-container a:hover {
  color: #ff6a00;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff6a00;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
}

.logo img {
  height: 56px;
  width: auto;
  vertical-align: middle;
  border-radius: 4px;
}

/* ====== Header / Hero Section ====== */
header {
  text-align: center;
  padding: 5rem 1rem 4rem 1rem;
  background: linear-gradient(180deg, #000, #111);
}

header img {
  max-width: 190px;
  margin-bottom: 0.6rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.25);
}

.cta {
  background: #111;
  border: 1px solid #ff6a00;
  color: #ff6a00;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
  display: inline-block;
  margin-top: 0.8rem;
}

.cta:hover {
  background: #ff6a00;
  color: #000;
}

/* ====== Section Layouts ====== */
section {
  padding: 4.5rem 1.2rem;
  text-align: center;
}

.dark-section {
  background: #000;
}

.light-section {
  background: #0b0b0b;
}

.section-image {
  margin: 1.5rem auto;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.15);
}

/* ====== Product Section ====== */
.product {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 3rem auto;
  max-width: 900px;
  gap: 1.5rem;
}

.product img {
  flex: 1 1 40%;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.product div {
  flex: 1 1 50%;
  text-align: left;
}

.product h3 {
  margin-bottom: 0.8rem;
  color: #ff6a00;
}

.product.reverse {
  flex-direction: row-reverse;
}

/* === Smooth Scroll Padding Fix === */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* keeps sections from hiding under navbar */
}

/* === Contact Form === */
form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  max-width: 450px;
  margin: 2rem auto 0;
  text-align: left;
  gap: 0.5rem;
}

label {
  display: block;
  color: #ff6a00;
  font-weight: bold;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

input, textarea {
  width: 100%;
  padding: 0.65rem;
  border: none;
  border-radius: 5px;
  background: #222;
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input[type="submit"] {
  background: #ff6a00;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.5rem;
}

input[type="submit"]:hover {
  background: #ffa64d;
}

/* === Footer === */
.site-footer {
  margin-top: auto;
  border-top: 1px solid #222;
  background: #000;
  padding: 2rem 1rem;
  position: relative;
  z-index: 10;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; /* prevents line breaks */
  gap: 1rem;
  text-align: center;
}

.site-footer .brand {
  color: #ff6a00;
  font-weight: 700;
  text-decoration: none;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.socials .social {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  border: 1px solid #222;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.socials .social svg {
  width: 20px;
  height: 20px;
  fill: #ff6a00;
  transition: fill 0.2s ease;
}

.socials .social:hover {
  transform: translateY(-2px);
  border-color: #ff6a00;
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.25);
}

.legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #888;
  font-size: 0.95rem;
  white-space: nowrap; /* keeps © and email together */
}

.legal a {
  color: #ff6a00;
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .legal {
    flex-direction: column;
    gap: 0.25rem;
  }
}
