body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #1c1c1c;
  color: #fff;
  scroll-behavior: smooth;
}
nav.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fdc646;
  padding: 10px 20px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  max-height: 80px;
  margin-right: 20px;
}

.nav-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.nav-links a:hover {
  color: #6b4c35;
}

/* Responsive nav */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

/* Optional: button styling */
.btn {
  display: inline-block;
  margin-right: 10px;
  padding: 8px 16px;
  background-color: #6b4c35;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background-color: #553726;
}

/* Basic layout (optional enhancements) */
.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
}

.content.reverse {
  flex-direction: row-reverse;
}

.content img {
  max-width: 50%;
  height: auto;
}

.content .text {
  max-width: 45%;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #f4f4f4;
  color: #555;
}

.hero {
  text-align: center;
  background: #fdc646;
}

.hero img {
  max-width: 250px;
  margin-bottom: 1px;
}

.hero h1 {
  font-size: 48px;
  margin: 0;
  color: #ffd700;
}

.hero p {
  font-size: 18px;
  color: #ccc;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffd700;
  color: #000;
  text-decoration: none;
  margin-top: 20px;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn:hover {
  background: #ffcf00;
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  flex-wrap: wrap;
  gap: 30px;
}

.content img {
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

.content .text {
  max-width: 500px;
}

.content.reverse {
  flex-direction: row-reverse;
}

footer {
  text-align: center;
  padding: 40px 10px;
  background: #111;
  font-size: 14px;
  color: #aaa;
}
