*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, sans-serif;
  background:#f7f7f7;
  color:#222;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */

.header{
  background:#111;
  padding:18px 0;
  position:sticky;
  top:0;
  z-index:1000;
  width:100%;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.logo{
  font-size:24px;
  font-weight:bold;
  overflow-wrap:anywhere;
  max-width:100%;
}

.logo a{
  color:#fff;
  text-decoration:none;
}

.logo span{
  color:#E86800;
}

.nav-links{
  display:flex;
  align-items:center;
  list-style:none;
  gap:20px;
  flex-wrap:wrap;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  transition:0.3s;
  font-size:15px;
}

.nav-links a:hover{
  color:#E86800;
}

.btn-nav{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#E86800;
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  transition:0.3s ease;
  white-space:nowrap;
}

.btn-nav:hover{
  background:#c85600;
  transform:translateY(-2px);
}

/* HERO */

.hero{
  background:linear-gradient(to right,#111,#333);
  color:#fff;
  padding:100px 0;
  text-align:center;
}

.hero h1{
  font-size:52px;
  line-height:1.2;
  margin-bottom:20px;
}

.hero p{
  max-width:800px;
  margin:auto;
  margin-bottom:30px;
  font-size:18px;
}

.hero-btn{
  display:inline-block;
  padding:14px 32px;
  background:#E86800;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-weight:bold;
  transition:.3s ease;
}

.hero-btn:hover{
  background:#c85600;
  transform:translateY(-2px);
}

/* SECTION TITLE */

.section-title{
  text-align:center;
  margin-bottom:40px;
}

.section-title h2{
  font-size:38px;
  line-height:1.2;
  margin-bottom:10px;
}

/* GENERATOR */

.generator-section{
  padding:80px 0;
}

.generator-box{
  background:#fff;
  padding:40px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-group{
  margin-bottom:25px;
}

.form-group label{
  display:block;
  margin-bottom:8px;
  font-weight:bold;
}

.form-group input,
.form-group select,
textarea{
  width:100%;
  padding:14px;
  border:1px solid #ccc;
  border-radius:6px;
  font-size:16px;
}


textarea{
  min-height:220px;
  resize:vertical;
}


.action-buttons{
  display:flex;
  gap:12px;
  margin-top:15px;
}

.copy-btn,
.chatgpt-btn{
  flex:1;
  padding:14px 20px;
  min-height:52px;
  border:none;
  border-radius:8px;
  cursor:pointer;
  font-size:16px;
  font-weight:600;
}

.copy-btn{
  background:#222;
  color:#fff;
}

.chatgpt-btn{
  background:#10A37F;
  color:#fff;
}

.copy-btn:hover,
.chatgpt-btn:hover{
  transform:translateY(-2px);
}

#output{
  width:100%;
  min-height:220px;
  padding:15px;
  border-radius:8px;
  resize:vertical;
  background:#fafafa;
}

/* CONTENT */

.content-section{
  padding:80px 0;
}

.content-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.content-card{
  background:#fff;
  padding:30px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.content-card h3{
  margin-bottom:15px;
}

.content-card a{
  display:inline-block;
  margin-top:15px;
  color:#E86800;
  text-decoration:none;
  font-weight:bold;
}

/* INTERNAL LINKS */

.internal-links{
  padding:80px 0;
  background:#fff;
}

.links-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  justify-content:center;
}

.links-buttons a{
  padding:14px 24px;
  background:#111;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  transition:.3s ease;
}

/* FAQ */

.faq-section{
  padding:80px 0;
}

.faq-item{
  background:#fff;
  margin-bottom:15px;
  border-radius:8px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  text-align:left;
  padding:20px;
  border:none;
  background:#fff;
  cursor:pointer;
  font-size:18px;
  font-weight:bold;
}

.faq-answer{
  display:none;
  padding:0 20px 20px;
}

/* FOOTER */

.footer{
  background:#111;
  color:#fff;
  padding-top:60px;
}

.footer-content{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
  padding-bottom:40px;
}

.footer h3,
.footer h4{
  margin-bottom:20px;
}

.footer ul{
  list-style:none;
}

.footer ul li{
  margin-bottom:10px;
}

.footer a{
  color:#fff;
  text-decoration:none;
  transition:.3s ease;
}

.footer a:hover{
  color:#E86800;
}

.footer-bottom{
  border-top:1px solid #333;
  text-align:center;
  padding:20px;
  font-size:14px;
}

/* STATS */

.stats{
  display:inline-block;
  margin-top:15px;
  padding:10px 18px;
  background:#fff3e8;
  color:#E86800;
  border:1px solid rgba(232,104,0,.15);
  border-radius:30px;
  font-weight:600;
  font-size:14px;
}

/* GENERATOR INFO */

.generator-info{
  margin-top:30px;
  text-align:center;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  color:#555;
  font-size:16px;
  line-height:1.8;
}

/* BUTTON IMPROVEMENTS */

.generate-btn,
.copy-btn,
.chatgpt-btn{
  transition:background .3s ease, transform .3s ease;
}

.generate-btn:hover{
  background:#c85600;
  transform:translateY(-2px);
}

.copy-btn:hover{
  background:#000;
  transform:translateY(-2px);
}

.chatgpt-btn:hover{
  background:#0d8f70;
  transform:translateY(-2px);
}

.generate-btn:focus,
.copy-btn:focus,
.chatgpt-btn:focus{
  outline:none;
  box-shadow:0 0 0 4px rgba(232,104,0,.2);
}

/* FORM FOCUS */

.form-group input:focus,
.form-group select:focus,
textarea:focus{
  outline:none;
  border-color:#E86800;
  box-shadow:0 0 0 3px rgba(232,104,0,.15);
}

.generate-btn{
  width:100%;
  background:#E86800;
  color:#fff;
  border:none;
  padding:14px 28px;
  cursor:pointer;
  border-radius:8px;
  font-size:16px;
  font-weight:600;
  margin-top:10px;
  transition:.3s ease;
}

/* SECTION SPACING */

.section-title p{
  max-width:850px;
  margin:0 auto;
  color:#555;
  line-height:1.8;
}

/* OUTPUT BOX */

.output-box{
  margin-top:30px;
}

.output-title{
  margin-bottom:10px;
  font-weight:600;
  font-size:15px;
  color:#333;
}

/* INTERNAL LINKS HOVER */

.links-buttons a{
  transition:background .3s ease, transform .3s ease;
}

.links-buttons a:hover{
  background:#E86800;
  color:#fff;
  transform:translateY(-2px);
}

/* CONTENT CARD HOVER */

.content-card{
  transition:transform .3s ease, box-shadow .3s ease;
}

.content-card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 25px rgba(0,0,0,.12);
}


/* FAQ */

.faq-question{
  transition:background .3s ease,color .3s ease;
}

.faq-question:hover{
  background:#fafafa;
  color:#E86800;
}

/* MOBILE */

@media(max-width:768px){

  .container{
    width:95%;
  }

  .nav{
    flex-direction:column;
    justify-content:center;
  }

  .nav-links{
    justify-content:center;
    gap:12px;
  }

  .btn-nav{
    width:100%;
    max-width:250px;
  }

  .hero{
    padding:70px 0;
  }

  .hero h1{
    font-size:34px;
    line-height:1.2;
  }

  .hero p{
    font-size:16px;
  }

  .section-title h2{
    font-size:30px;
  }

  .generator-box{
    padding:25px;
  }

  .action-buttons{
    flex-direction:column;
  }

  .copy-btn,
  .chatgpt-btn{
    width:100%;
  }

  .links-buttons{
    gap:10px;
  }

  .links-buttons a{
    width:100%;
    text-align:center;
  }

}

/* SMALL PHONES */

@media(max-width:400px){

  .logo{
    font-size:19px;
  }

  .hero h1{
    font-size:28px;
  }

  .hero{
    padding:50px 0;
  }

  .generator-box,
  .generator-card{
    padding:18px;
  }

}




/* ===================================
   ALL TOOLS PAGE
=================================== */

.tool-category{
    margin-top:60px;
}

@media (max-width:768px){

    .tool-category{
        margin-top:40px;
    }

}