* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
    background: #0f172a;
    color: white;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
    font-weight: bold;
    font-size:18px;
    margin-bottom: 30px;
    color: #38bdf8;
}

/* MENU */
.menu {
  display: none;
  flex-direction: column;
  background: #0f172a;
  position: absolute;
  top: 60px;
  right: 0;
  width: 100%;
  text-align: center;
}

.menu a {
  padding: 12px;
  text-decoration: none;
  color: white;
}

.menu.active {
  display: flex;
}

/* HAMBURGER */
.hamburger {
  font-size: 24px;
  cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg,#6366f1,#22c55e);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    color:white;
    cursor: pointer;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.hero h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.hero p {
    opacity: 0.8;
}

#features {
    padding: 60px;
    text-align: center;
}

.features {
    padding: 80px 10%;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
    margin-top:40px;
}

.card {
    background:rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* Fade Animation */
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop */
@media(min-width:768px) {
  .hero h1 {
    font-size: 42px;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta{
    text-align: center;
    padding: 100px 20px;
}

footer {
    text-align: center;
    padding: 30px;
    background: #222;
    color: #fff;
    opacity: 0.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
}

h2 {
    text-align: center;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

input, select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

#output p {
    margin-bottom: 10px
}

#output {
    margin-top: 20px;
}

.app {
  display: flex;
}

.sidebar {
  width: 250px;
  height: 100vh;
  background: #020617;
  padding:20px;
}

.sidebar a {
  display: block;
  color: #94a3b8;
  padding: 10px;
  text-decoration: none;
  border-radius: 8px;
}

.sidebar a:hover {
  background: #1e293b;
  color: white;
}

.main {
  flex: 1;
  padding: 30px;
}

.page {
  display: none;
}

.page.activate {
  display: block;
}


.ai-generator {
    text-align: center;
    padding: 30px;
    margin-top: 40px;
}

.ai-generator input {
    width: 300px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    margin: 10px;
}

.ai-generator button {
    width: 50%;
    margin-top:10px;
    padding:10px 25px;
    border:none;
    border-radius:20px;
    background:linear-gradient(45deg,#6366f1,#22c55e);
    color:white;
    cursor: pointer;
}

.ai-generator textarea {   
    border-radius: 10px;
    width: 80%;
    height: 120px;
    margin-top: 20px;
    padding: 15px;
    border-none;
}

input {
  padding: 10px;
  width: 300px;
  margin-right: 10px;
}

#results {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}

.result-card {
    background:#1e293b;
    color:white;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.copy-btn {
    margin-top: 15px;
    background:#3b82f6;
    border: none;
    color:white;
    padding: 8px 12px;
    border-radius:5px;
    cursor:pointer;
}

.beta-banner {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: white;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 15px;
  font-weight: bold;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 999px;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* Section */
.section {
  padding: 70px 0;
  text-align: center;
}

/* Grid */
.grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.textarea{
    width:80%;
    height:120px;
    margin-top:20px;
    padding:15px;
    border-radius:10px;
    border:none;
}
