/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 1.2em;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  background: #444;
  padding: 15px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  font-weight: 600;
  transition: 0.3s ease;
}

nav a:hover {
  background: #ff6f61;
  border-radius: 5px;
}

/* Hero Section */
.hero {
  background: url("https://aifiddler.com/images/AIFiddler.png") no-repeat center
    center/cover;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero h1 {
  font-size: 3.5em;
  font-weight: 600;
}

.hero p {
  font-size: 1.5em;
  margin: 20px 0;
}

.btn {
  display: inline-block;
  background: #ff6f61;
  color: white;
  padding: 12px 24px;
  font-size: 1.2em;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #e6554d;
}

/* About Section */
.about {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.about h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #222;
}

/* Footer */
.footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
}

.footer a {
  color: #ff6f61;
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5em;
  }

  .hero p {
    font-size: 1.2em;
  }

  nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    padding: 10px;
  }
}

