/*
Theme Name: Kyra AI Business Theme
Description: A professional business theme for Kyra AI featuring custom branding, responsive design, and Kyra character imagery.
Version: 1.0
Author: Kyra AI
*/

/* CSS Variables for Brand Colors */
:root {
  --navy: #0A2E64;
  --pink: #FF4081;
  --charcoal: #2D3748;
  --light-gray: #F7FAFC;
  --white: #FFFFFF;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--white);
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.header.header-scrolled {
  background: var(--navy);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  min-height: 70px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

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

.desktop-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--pink);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  background: var(--navy);
  padding: 1rem 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Hero Section */
.hero-fullscreen {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 600px;
  padding-left: 2rem;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

/* Capabilities Section */
.capabilities {
  padding: 4rem 0;
  background: var(--white);
}

.capabilities h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Solutions Section */
.solutions {
  padding: 4rem 0;
  background: var(--light-gray);
}

.solution-section {
  margin-bottom: 4rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.solution-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.solution-tagline {
  font-size: 20px;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 1rem;
}

.solution-description {
  font-size: 16px;
  color: var(--charcoal);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.feature-icon {
  color: var(--pink);
  flex-shrink: 0;
}

.solution-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
  padding: 4rem 0;
  background: var(--white);
}

.about h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 2rem;
}

.about-description {
  font-size: 20px;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.value-item {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.value-description {
  color: var(--charcoal);
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background: var(--navy);
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-description {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
  color: #D1D5DB;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  color: #D1D5DB;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

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

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

  .hero-title {
    font-size: 48px;
  }

  .hero-content {
    padding-left: 1rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .solution-section .grid-2 > div:nth-child(2) {
    order: -1;
  }

  .container {
    padding: 0 15px;
  }

  .capabilities h2 {
    font-size: 28px;
  }

  .about h2,
  .contact h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .solution-title {
    font-size: 24px;
  }

  .solution-tagline {
    font-size: 18px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.rounded-lg {
  border-radius: 8px;
}

.shadow-lg {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

