/* 1. Colors */
/* 2. Typography */
/* 3. Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background: #0a0a0a;
  overflow-x: hidden;
  opacity: 0;
  animation: fadeInBody 0.8s ease-out forwards;
}

@keyframes fadeInBody {
  to {
    opacity: 1;
  }
}
/* --- Navbar --- */
.navbar {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  animation: slideDown 0.8s ease-out;
}
.navbar .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.navbar .logo i {
  margin-right: 0.5rem;
  font-size: 1.8rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}
.navbar .nav-links {
  display: flex;
  gap: 0.5rem;
}
.navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.navbar .nav-links a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .navbar .nav-links a {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 576px) {
  .navbar .nav-links a {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}
@media (max-width: 576px) {
  .navbar .nav-links {
    gap: 0.3rem;
  }
}
@media (max-width: 576px) {
  .navbar {
    padding: 1rem 1rem;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #4cc9f0 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 20s infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 3rem 5%;
}
.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}
.hero-content .typing-wrapper {
  animation: fadeInUp 1s ease-out 0.5s both;
}
.hero-content .typing-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 2.5rem;
  font-weight: 600;
  margin: 1rem 0;
  min-height: 60px;
}
.hero-content .typing-animation #typed-text {
  color: #4cc9f0;
  text-shadow: 0 0 20px rgba(76, 201, 240, 0.6);
}
.hero-content .typing-animation .cursor {
  display: inline-block;
  width: 3px;
  height: 42px;
  background: #4cc9f0;
  margin-left: 4px;
  animation: blink 0.7s infinite;
  box-shadow: 0 0 10px #4cc9f0;
}
@media (max-width: 768px) {
  .hero-content .typing-animation {
    font-size: 1.8rem;
  }
}
@media (max-width: 576px) {
  .hero-content .typing-animation {
    font-size: 1.4rem;
  }
}
.hero-content .hero-description {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 1.5rem auto;
  opacity: 0.95;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.7s both;
}
@media (max-width: 576px) {
  .hero-content .hero-description {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .hero-content {
    padding: 2rem 1rem;
  }
}

/* --- Buttons --- */
.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeInUp 1s ease-out 0.9s both;
}
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
}

.btn, .primary-btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.1rem;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::before, .primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}
.btn:hover::before, .primary-btn:hover::before {
  left: 100%;
}
@media (max-width: 576px) {
  .btn, .primary-btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

.primary-btn {
  background: #fff;
  color: #4285f4;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* --- Shared Section Styles --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

section, .contact-section, .tools-section, .about-section {
  padding: 6rem 5%;
  position: relative;
}
section h2, .contact-section h2, .tools-section h2, .about-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4285f4, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  section h2, .contact-section h2, .tools-section h2, .about-section h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 576px) {
  section h2, .contact-section h2, .tools-section h2, .about-section h2 {
    font-size: 1.8rem;
  }
}
section .section-subtitle, .contact-section .section-subtitle, .tools-section .section-subtitle, .about-section .section-subtitle {
  text-align: center;
  color: #888;
  font-size: 1.1rem;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  section, .contact-section, .tools-section, .about-section {
    padding: 4rem 1rem;
  }
}

/* --- About Section --- */
.about-section {
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.15) 0%, rgba(15, 15, 15, 0.8) 20%, #0f0f0f 100%);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(52, 168, 83, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(30px);
}
.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(66, 133, 244, 0.5);
  box-shadow: 0 20px 60px rgba(66, 133, 244, 0.3);
}
.feature-card i {
  font-size: 3rem;
  background: linear-gradient(135deg, #4285f4, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(66, 133, 244, 0.5));
}
.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}
.feature-card p {
  color: #aaa;
  line-height: 1.6;
}

/* --- Tools Section --- */
.tools-section {
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, rgba(26, 26, 26, 0.95) 100%);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

.tool-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}
.tool-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.tool-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(52, 168, 83, 0.5);
  box-shadow: 0 20px 60px rgba(52, 168, 83, 0.2);
}
.tool-card i {
  font-size: 3rem;
  background: linear-gradient(135deg, #34a853, #4cc9f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}
.tool-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.tool-card p {
  color: #aaa;
}

/* --- Contact Section --- */
.contact-section {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.5) 0%, rgba(66, 133, 244, 0.8) 15%, #4285f4 30%, #34a853 100%);
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveGrid 20s linear infinite;
}
.contact-section h2 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  margin-bottom: 2rem;
}
.contact-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}
.contact-section .contact-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .social-links {
    flex-direction: column;
    align-items: center;
  }
}

.social-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.social-btn i {
  font-size: 1.3rem;
}
.social-btn .kofi-img {
  height: 1.3rem;
  width: auto;
}
.social-btn.kofi-btn {
  background: #fbbc05;
  border-color: transparent;
  color: #0a0a0a;
  font-weight: 700;
}
.social-btn.kofi-btn:hover {
  background: rgb(251.4015748031, 194.7263779528, 30.0984251969);
  border-color: transparent;
  color: #0a0a0a;
  box-shadow: 0 15px 40px rgba(251, 188, 5, 0.4);
}
@media (max-width: 768px) {
  .social-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* --- Footer --- */
footer {
  background: #0a0a0a;
  padding: 3rem 5% 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
footer .footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 1.3rem;
  font-weight: 600;
}
footer .footer-logo i {
  margin-right: 0.5rem;
}
footer .footer-links a {
  color: #aaa;
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.3s;
}
footer .footer-links a:hover {
  color: #fff;
}
@media (max-width: 768px) {
  footer .footer-links a {
    margin: 0 1rem;
  }
}
footer .copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #666;
  font-size: 0.9rem;
}

/* --- Animations --- */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes moveGrid {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
.animate-ready {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}/*# sourceMappingURL=landing.css.map */