/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Dark Theme (Default) */
:root {
  /* Brand Colors */
  --brand-red: hsl(351, 100%, 61%);
  --brand-blue: hsl(221, 100%, 60%);
  --brand-purple: hsl(262, 100%, 70%);
  --brand-orange: hsl(18, 100%, 60%);
  
  /* Dark Theme Colors */
  --background: hsl(0, 0%, 7%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(0, 0%, 10%);
  --card-foreground: hsl(0, 0%, 98%);
  --border: hsl(0, 0%, 18%);
  --muted: hsl(0, 0%, 16%);
  --muted-foreground: hsl(0, 0%, 72%);
  --primary: hsl(351, 100%, 61%);
  --primary-foreground: hsl(0, 0%, 98%);
  --secondary: hsl(0, 0%, 17%);
  
  /* Fonts */
  --font-sans: 'Poppins', sans-serif;
  --font-script: 'Great Vibes', cursive;
}

/* Light Theme */
[data-theme="light"] {
  --background: hsl(0, 0%, 98%);
  --foreground: hsl(0, 0%, 10%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 10%);
  --border: hsl(0, 0%, 85%);
  --muted: hsl(0, 0%, 92%);
  --muted-foreground: hsl(0, 0%, 40%);
  --primary: hsl(351, 100%, 50%);
  --primary-foreground: hsl(0, 0%, 98%);
  --secondary: hsl(0, 0%, 90%);
}

[data-theme="light"] nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .hero::before {
  background-color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .whatsapp-float {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Theme Toggle Button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin-right: 1rem;
}

.theme-toggle:hover {
  background: var(--muted);
  transform: scale(1.1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  cursor: none;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-purple));
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  mix-blend-mode: screen;
}

.custom-cursor.hover {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-orange));
}

.cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.6;
  animation: trailFade 0.8s ease-out forwards;
}

@keyframes trailFade {
  to {
    opacity: 0;
    transform: scale(0.5);
  }
}

/* Diagonal Stripes Background */
.diagonal-stripes {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--brand-red) 0%,
    var(--brand-red) 10%,
    var(--brand-blue) 10%,
    var(--brand-blue) 20%,
    var(--brand-purple) 20%,
    var(--brand-purple) 30%,
    var(--brand-orange) 30%,
    var(--brand-orange) 40%,
    var(--brand-red) 40%,
    var(--brand-red) 50%,
    var(--brand-blue) 50%,
    var(--brand-blue) 60%,
    var(--brand-purple) 60%,
    var(--brand-purple) 70%,
    var(--brand-orange) 70%,
    var(--brand-orange) 80%,
    var(--brand-red) 80%,
    var(--brand-red) 90%,
    var(--brand-blue) 90%,
    var(--brand-blue) 100%
  );
  background-size: 200% 200%;
  animation: stripeMove 15s linear infinite;
  opacity: 0.15;
}

@keyframes stripeMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

nav.scrolled {
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-elite {
  font-family: var(--font-script);
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-purple), var(--brand-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tech {
  font-size: 1.25rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.nav-buttons {
  display: flex;
  gap: 0.75rem;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1.5rem;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .nav-links {
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mobile-menu .nav-buttons {
  flex-direction: column;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  border: none;
  transition: all 0.3s;
  cursor: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 51, 102, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--secondary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Icons */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

/* Pulse Glow Animation */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 51, 102, 0.8);
  }
}

.pulse-glow {
  animation: pulse-glow 1.5s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float {
  animation: float 3s ease-in-out infinite;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-purple), var(--brand-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scroll Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(18, 18, 18, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  font-size: 0.875rem;
  background-color: var(--secondary);
  border-radius: 0.375rem;
  color: var(--foreground);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem;
  line-height: 1.2;
}

.hero .logo-elite {
  font-size: 5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 700px;
  margin: 0 auto;
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

/* Card */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.text-brand-red { color: var(--brand-red); }
.text-brand-blue { color: var(--brand-blue); }
.text-brand-purple { color: var(--brand-purple); }
.text-brand-orange { color: var(--brand-orange); }

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.card .btn {
  margin-top: 1rem;
  padding: 0;
  background: none;
  color: var(--primary);
}

/* Stars */
.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.star {
  color: var(--brand-orange);
  font-size: 1.25rem;
}

/* Footer */
footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  font-size: 2rem;
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.4) 0%, transparent 70%);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--input, var(--muted));
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Founders Section */
.founders-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(255,51,102,0.05) 0%, transparent 100%);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.founder-card {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px) scale(0.9);
}

.founder-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.founder-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.founder-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}

.founder-card:hover .founder-photo {
  border-color: var(--brand-purple);
  transform: scale(1.05);
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founder-title {
  font-size: 1rem;
  color: var(--muted-foreground);
}

/* Floating Gallery Animation */
.floating-gallery {
  overflow: hidden;
  padding: 4rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.05) 50%, transparent 100%);
}

.gallery-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gallery-row.scroll-left {
  animation: scrollLeft 40s linear infinite;
}

.gallery-row.scroll-right {
  animation: scrollRight 40s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.gallery-item {
  flex-shrink: 0;
  width: 280px;
  height: 180px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links,
  .nav-buttons {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .gallery-item {
    width: 200px;
    height: 130px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .logo-elite {
    font-size: 3.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .grid-cols-2,
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero .logo-elite {
    font-size: 2.5rem;
  }
  
  .logo-elite {
    font-size: 2rem;
  }
  
  .logo-tech {
    font-size: 1rem;
  }
}
