/*
Theme Name: Trend2Bank
Description: Modern influencer marketing agency theme with animated elements
Version: 1.0
Author: Trend2Bank
*/

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap");

/* CSS Variables for consistent theming */
:root {
  --background: #252525;
  --foreground: #ffffff;
  --card: #ffffff;
  --card-foreground: #252525;
  --primary: #3b82f6;
  --primary-foreground: #ffffff;
  --secondary: #f8f9fa;
  --secondary-foreground: #252525;
  --muted: #4d4d4d;
  --muted-foreground: #b3b3b3;
  --accent: #3b82f6;
  --accent-foreground: #ffffff;
  --border: #4d4d4d;
  --radius: 10px;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Utility classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}

.btn-primary .arrow-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
  transform: translateX(4px);
}

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

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

/* Animations */
@keyframes float-clouds {
  0%,
  100% {
    transform: translateX(-10px) translateY(0px);
  }
  50% {
    transform: translateX(10px) translateY(-5px);
  }
}

@keyframes drift {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(100vw);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.animate-float-clouds {
  animation: float-clouds 8s ease-in-out infinite;
}

.animate-drift {
  animation: drift 20s linear infinite;
}

/* Header styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(37, 37, 37, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--primary);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: bold;
  font-size: 18px;
}

.logo-text .highlight {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Mobile menu styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 4px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: var(--foreground);
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-navigation {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

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

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-menu a {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.mobile-nav-menu a:hover {
  color: var(--primary);
}

/* Hero section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background) 0%, #1a1a1a 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--background) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--foreground) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--muted-foreground);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Clouds section */
.clouds-section {
  background-color: #000000;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.clouds-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 24px;
}

.clouds-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.cloud {
  position: absolute;
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.15;
  pointer-events: none;
}

.cloud-1 {
  top: 15%;
  left: -50px;
  animation-duration: 25s;
}

.cloud-2 {
  top: 35%;
  left: -50px;
  animation-duration: 30s;
  animation-delay: 5s;
}

.cloud-3 {
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.cloud-4 {
  top: 60%;
  left: -50px;
  animation-duration: 35s;
  animation-delay: 10s;
}

.cloud-5 {
  top: 70%;
  right: 15%;
  animation-delay: 4s;
}

/* Statistics section */
.statistics-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
}

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

.stat-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 10px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* Services section */
.services-section {
  padding: 80px 0;
  background-color: var(--background);
}

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

.service-card {
  background-color: var(--card);
  color: var(--card-foreground);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  border-radius: 50%;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary);
}

.service-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.service-features li::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
  margin-top: 8px;
  flex-shrink: 0;
}

/* Calendly section */
.calendly-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--background) 0%, #1a1a1a 100%);
  text-align: center;
}

.calendly-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calendly-embed {
  max-width: 800px;
  margin: 0 auto;
  height: 600px;
  border-radius: var(--radius);
  overflow: hidden;
}

/* Benefits section */
.benefits-section {
  padding: 80px 0;
  background-color: var(--card);
  color: var(--card-foreground);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--background);
  color: var(--foreground);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  border-radius: 50%;
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--foreground);
}

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

/* Footer */
.site-footer {
  background-color: #1a1a1a;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

/* About Page Styles */
.about-page {
  min-height: 100vh;
  background-color: #000000;
  color: var(--foreground);
  position: relative;
  overflow: hidden;
}

/* Animated Background Clouds */
.about-background {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  z-index: 1;
}

.cloud-bg {
  position: absolute;
  border-radius: 50px;
  filter: blur(40px);
}

.cloud-bg-1 {
  top: 80px;
  left: 40px;
  width: 128px;
  height: 64px;
  background-color: rgba(59, 130, 246, 0.3);
  animation: pulse 3s ease-in-out infinite;
}

.cloud-bg-2 {
  top: 160px;
  right: 80px;
  width: 96px;
  height: 48px;
  background-color: rgba(96, 165, 250, 0.2);
  animation: bounce 2s ease-in-out infinite;
}

.cloud-bg-3 {
  bottom: 128px;
  left: 25%;
  width: 160px;
  height: 80px;
  background-color: rgba(37, 99, 235, 0.25);
  animation: pulse 4s ease-in-out infinite 1s;
}

.cloud-bg-4 {
  top: 50%;
  right: 33%;
  width: 112px;
  height: 56px;
  background-color: rgba(147, 197, 253, 0.3);
  animation: bounce 2.5s ease-in-out infinite 0.5s;
}

.cloud-bg-5 {
  bottom: 80px;
  right: 40px;
  width: 144px;
  height: 72px;
  background-color: rgba(59, 130, 246, 0.2);
  animation: pulse 3.5s ease-in-out infinite 2s;
}

/* Moving Cloud Animation */
.moving-clouds {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  z-index: 2;
}

.moving-cloud {
  position: absolute;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  animation: pulse 4s ease-in-out infinite;
}

.moving-cloud-1 {
  top: 64px;
  height: 80px;
}

.moving-cloud-2 {
  top: 33%;
  height: 64px;
  animation-delay: 1s;
}

.moving-cloud-3 {
  bottom: 33%;
  height: 96px;
  animation-delay: 2s;
}

/* Content */
.about-content {
  position: relative;
  z-index: 10;
  padding-top: 96px;
  padding-bottom: 64px;
}

.about-header {
  text-align: center;
  margin-bottom: 64px;
}

.about-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--foreground) 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-line {
  width: 96px;
  height: 4px;
  background-color: var(--primary);
  margin: 0 auto;
}

.about-sections {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Introduction */
.intro-section {
  text-align: center;
}

.intro-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #e5e7eb;
  margin-bottom: 32px;
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin: 64px 0;
}

.stat-box {
  text-align: center;
  padding: 32px;
  background-color: rgba(30, 58, 138, 0.2);
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 8px;
}

.stat-label {
  color: #d1d5db;
}

/* Description */
.description-section {
  background-color: rgba(17, 24, 39, 0.5);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #374151;
}

.description-section p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #e5e7eb;
}

/* Mission Section */
.mission-section {
  text-align: center;
}

.mission-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #93c5fd;
}

.mission-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #e5e7eb;
  margin-bottom: 32px;
}

/* Two Column Content */
.two-column-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.column-box {
  background-color: rgba(30, 58, 138, 0.2);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.column-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #93c5fd;
}

.column-box p {
  color: #e5e7eb;
  line-height: 1.6;
}

/* Final Statement */
.final-statement {
  text-align: center;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(17, 24, 39, 0.3) 100%);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.statement-main {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--foreground);
  margin-bottom: 16px;
}

.statement-sub {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #e5e7eb;
}

/* Responsive design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .clouds-content h2 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .stats-grid,
  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive design for about page */
@media (max-width: 768px) {
  .about-header h1 {
    font-size: 2.5rem;
  }

  .intro-text {
    font-size: 1.25rem;
  }

  .mission-section h2 {
    font-size: 2rem;
  }

  .statement-main {
    font-size: 1.5rem;
  }

  .statement-sub {
    font-size: 1.125rem;
  }

  .stats-section,
  .two-column-section {
    grid-template-columns: 1fr;
  }
}
