/* Global resets and typography */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 20px 10px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 1500px;
  padding: 10px 10px 10px 10px;
}

header.scrolled {
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: box-shadow 0.3s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 32px;
  height: 32px;
}

header h1 {
  margin: 0;
  font-size: 1.5em;
  font-family: 'Poppins', sans-serif;
}

header nav {
  background: none;
  position: static;
  padding: 0;
}

header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Push content down below fixed header */
main {
  margin-top: 70px; /* Adjust to match header height */
}

/* Hero section */
.hero {
  background: #444;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

.hero h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.hero .btn {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 15px;
  border-radius: 4px;
}

.hero .btn:hover {
  background: #e65c00;
}

.logo {
  height: 300px;
  vertical-align: middle;
  margin-right: 10px;
}

.hero-logo {
  display: block;
  max-width: 300px;
  margin: 0 auto 20px;
}

/* About section */
.about {
	text-align: center;
  padding: 60px 60px;
  background: #fff;
  border-top: 1px solid #ddd;
}

.about h3 {
	text-align: center;
  margin-top: 0;
  font-size: 1.8em;
  color: #222;
}

.about p {
	text-align: center;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #555;
}

/* Contact section */
.contact {
	text-align: center;
  padding: 60px 60px;
  background: #444;
  border-top: 1px solid #ddd;
}

.contact h3 {
	text-align: center;
  margin-top: 0;
  font-size: 1.8em;
  color: #fff;
}

.contact p {
	text-align: center;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #fff;
}

.contact .btn {
	text-align: center;
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.contact .btn:hover {
  background: #e65c00;
}

/* Buttons */
button, .btn {
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover, .btn:hover {
  background-color: #e65c00;
  transform: translateY(-2px);
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 0px;
}
