/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.logo {
  width: 720px;
  height: auto;
  margin-bottom: 20px;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
  width: 90%;
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

/* Hero Section */
.hero {
  background-color: #0073e6;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.5em;
}

.hero p {
  font-size: 1.2em;
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 3rem;
}

/* Tool Description Section */
.tool-description {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

label {
  font-size: 1em;
}

input[type="text"] {
  width: 100%;
  padding: 30px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 20px;
}

#generate-btn {
	font-size: 2rem;
	}

button {
  background-color: #0073e6;
  color: #fff;
  padding: 20px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

button:hover {
  background-color: #005bb5;
}

#qr-code-result {
  margin-top: 20px;
  text-align: center;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: #333;
  color: #fff;
}

/* QR Code Generator Section - Lun Dev Style */

/* Long Description Section */
.long-description {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tool-heading {
  font-size: 32px;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.tools-description {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.sub-heading {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.tool-list {
  list-style-type: disc;
  margin-left: 30px;
  padding-left: 20px;
}

.tool-list-item {
  font-size: 16px;
  color: #555;
  margin-bottom: 12px;
}

.tool-list-item:last-child {
  margin-bottom: 0;
}

.tool-list ol {
  margin-left: 20px;
}

.tool-list ol li {
  margin-bottom: 10px;
}

.tool-list ul {
  margin-bottom: 25px;
}

/* Mobile View */
@media screen and (max-width: 768px) {
.logo {
  width: 320px;
}

nav ul li a {
  font-size: 1.6rem;
}

  .long-description {
    padding: 20px;
  }

  .tool-heading {
    font-size: 28px;
  }

  .sub-heading {
    font-size: 22px;
  }

  .tools-description {
    font-size: 16px;
  }
  
  input[type="text"] {
  padding: 15px;
}

button {
  padding: 10px 20px;
}

#generate-btn {
	font-size: 1rem;
	}
}