/* 
==============================================
MAIN STYLES - aijerkoff.site
==============================================
*/

/* Base Styles and Reset */
:root {
  --primary: #7b68ee;
  --primary-light: #9c8df7;
  --secondary: #ff6b6b;
  --dark: #222831;
  --light: #f8f9fa;
  --text: #4a4a4a;
  --text-light: #868e96;
  --background: #ffffff;
  --card-bg: #f8f9fa;
  --card-hover: #e9ecef;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --radius: 8px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

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

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

ul {
  list-style: none;
}

section {
  padding: 80px 0;
}

/* Header Styles */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

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

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

.logo-svg {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text);
  font-weight: 600;
  position: relative;
}

nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary);
  transition: var(--transition);
}

nav ul li a:hover {
  color: var(--secondary);
}

nav ul li a:hover:after {
  width: 100%;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu span {
  width: 30px;
  height: 3px;
  background-color: var(--text);
  margin: 3px 0;
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: var(--header-height);
}

#hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary);
  color: white;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: var(--primary-light);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
#features {
  background-color: var(--light);
  text-align: center;
}

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

.feature-card {
  background-color: var(--background);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.feature-icon {
  margin-bottom: 20px;
}

/* Access Section */
#access {
  text-align: center;
}

.access-options {
  max-width: 600px;
  margin: 50px auto 0;
}

.access-card {
  background-color: var(--light);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.access-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.access-card ul {
  margin: 30px 0;
  text-align: left;
  padding-left: 20px;
}

.access-card ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.access-card ul li:before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Testimonials Section */
#testimonials {
  background-color: var(--light);
  text-align: center;
}

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

.testimonial-card {
  background-color: var(--background);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
}

.testimonial-rating {
  margin-bottom: 15px;
  display: flex;
}

.testimonial-author {
  margin-top: 20px;
  font-weight: 600;
  color: var(--primary);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-logo, .footer-links, .footer-legal {
  margin-bottom: 30px;
}

.footer-svg {
  height: 40px;
  width: auto;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: var(--light);
}

.footer-links ul li a:hover {
  color: var(--secondary);
}

.footer-legal {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-legal a {
  color: var(--light);
  border-bottom: 1px dotted var(--light);
}

.footer-legal a:hover {
  color: var(--secondary);
  border-color: var(--secondary);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }
  
  nav.active {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 10px 0;
    text-align: center;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo, .footer-links {
    margin: 0 auto 30px;
  }
  
  .footer-links ul {
    align-items: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .feature-card, .testimonial-card {
    padding: 25px 20px;
  }
  
  .access-card {
    padding: 30px 20px;
  }
}
