/* Base Styles */
:root {
  --primary-color: #FF6B6B;
  --secondary-color: #8BE9FD;
  --accent-color: #BD93F9;
  --success-color: #50FA7B;
  --warning-color: #FFB86C;
  --danger-color: #FF79C6;
  --background-color: #282A36;
  --text-color: #F8F8F2;
  --dark-background: #1E1E2E;
  --light-background: #44475A;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
}

section {
  padding: 5rem 0;
}

/* Header & Navigation */
header {
  background-color: var(--dark-background);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

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

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

.logo-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

nav ul {
  display: flex;
  align-items: center;
}

nav li {
  margin-left: 1.5rem;
}

nav a {
  padding: 0.5rem;
  border-radius: 5px;
}

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

.cta-button a {
  background-color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-weight: bold;
  box-shadow: var(--shadow);
}

.cta-button a:hover {
  background-color: #FF8A8A;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--dark-background) 0%, var(--background-color) 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 107, 107, 0.1) 0%, rgba(0, 0, 0, 0) 70%),
             radial-gradient(circle at 70% 60%, rgba(139, 233, 253, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-svg {
  width: 100%;
  height: auto;
  max-width: 500px;
}

.cta-button-large {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.cta-button-large:hover {
  background-color: #FF8A8A;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button-medium {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.cta-button-medium:hover {
  background-color: #FF8A8A;
  transform: translateY(-2px);
}

/* Features Section */
.features {
  background-color: var(--light-background);
  position: relative;
  overflow: hidden;
}

.features::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 20%, rgba(139, 233, 253, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
}

.features .container {
  position: relative;
  z-index: 2;
}

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

.feature-card {
  background-color: var(--dark-background);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

/* Experience Section */
.experience {
  background-color: var(--background-color);
  position: relative;
}

.experience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(255, 107, 107, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
}

.experience-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.experience-text {
  flex: 1;
}

.experience-list {
  margin: 2rem 0;
}

.experience-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.experience-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.experience-svg {
  width: 100%;
  max-width: 400px;
}

/* About Section */
.about {
  background-color: var(--dark-background);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(189, 147, 249, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
}

.about .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cta-container {
  margin-top: 3rem;
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo svg {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-column h4 {
  color: var(--secondary-color);
  margin-bottom: 1.2rem;
}

.footer-column ul li {
  margin-bottom: 0.7rem;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

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

/* Media Queries */
@media (max-width: 900px) {
  .hero .container,
  .experience-content {
    flex-direction: column;
  }
  
  .hero-content,
  .experience-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .hero-graphic,
  .experience-graphic {
    width: 100%;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav li {
    margin: 0.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }
}
