/* 
   Modern, Sleek Style Sheet for aiporngenerator.digital
   - Completely different from previous sites
   - Blue/Pink color scheme instead of Purple
   - Horizontal layout design with card-based components
*/

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

:root {
  /* Color Palette - Blue and Pink Theme */
  --primary-color: #00BFFF; /* Deep Sky Blue */
  --secondary-color: #FF1493; /* Deep Pink */
  --dark-color: #121212;
  --light-color: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #e0e0e0;
  --gray-dark: #333333;
  --text-color: #333333;
  --text-light: #666666;
  
  /* Typography */
  --font-primary: 'Roboto', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  /* Other */
  --border-radius-sm: 5px;
  --border-radius-md: 10px;
  --border-radius-lg: 20px;
  --header-height: 80px;
  --max-width: 1200px;
  --transition: all 0.3s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
}

h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
}

p {
  margin-bottom: var(--space-md);
}

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

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

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Header Styles */
header {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-md);
  background-color: var(--light-color);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

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

.logo-icon {
  margin-right: var(--space-xs);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: var(--space-md);
}

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

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

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + var(--space-lg));
  padding-bottom: var(--space-xl);
  background: linear-gradient(135deg, rgba(0,191,255,0.05) 0%, rgba(255,20,147,0.05) 100%);
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
}

.hero-content {
  flex: 1;
  padding-right: var(--space-lg);
}

.hero h1 {
  margin-bottom: var(--space-sm);
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 2.8rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--light-color);
  padding: 0.9rem 2rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--light-color);
}

.cta-button.large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* About Section */
.about {
  padding: var(--space-xl) 0;
  text-align: center;
}

.about p {
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  font-size: 1.1rem;
}

.highlights {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.highlight-card {
  background-color: var(--gray-light);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  margin-bottom: var(--space-md);
}

/* Features Section */
.features {
  padding: var(--space-xl) 0;
  background-color: var(--gray-light);
}

.feature-row {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-xl);
  gap: var(--space-lg);
}

.feature-row.reversed {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.feature-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.feature-list {
  margin-top: var(--space-md);
}

.feature-list li {
  margin-bottom: var(--space-xs);
  position: relative;
  padding-left: var(--space-md);
}

.feature-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Testimonials Section */
.testimonials {
  padding: var(--space-xl) 0;
  text-align: center;
}

.testimonial-cards {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial {
  background-color: var(--gray-light);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.rating {
  display: flex;
  margin-bottom: var(--space-sm);
}

.star {
  margin-right: 3px;
}

.user {
  margin-top: var(--space-sm);
  font-weight: 700;
  text-align: right;
  color: var(--secondary-color);
}

/* CTA Section */
.cta {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-color);
  text-align: center;
}

.cta h2 {
  color: var(--light-color);
}

.cta h2:after {
  background: var(--light-color);
}

.cta p {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--gray-medium);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

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

.footer-icon {
  margin-bottom: var(--space-sm);
}

.footer-brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--light-color);
}

.footer-links {
  display: flex;
  gap: var(--space-xl);
}

.link-group h4 {
  color: var(--light-color);
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.link-group ul li {
  margin-bottom: var(--space-xs);
}

.link-group ul li a {
  color: var(--gray-medium);
  transition: var(--transition);
}

.link-group ul li a:hover {
  color: var(--light-color);
}

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

.footer-bottom p {
  margin-bottom: var(--space-xs);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: var(--space-lg);
  }
  
  .feature-row, .feature-row.reversed {
    flex-direction: column;
  }
  
  .feature-text {
    order: 2;
  }
  
  .feature-visual {
    order: 1;
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 768px) {
  header {
    padding: 0 var(--space-sm);
  }
  
  nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--light-color);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }
  
  nav.active {
    height: auto;
  }
  
  nav ul {
    flex-direction: column;
    padding: var(--space-md);
  }
  
  nav ul li {
    margin: 0 0 var(--space-sm) 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .highlights {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-md);
  }
}

/* Animations and Effects */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content, .highlights, .feature-row, .testimonial-cards {
  animation: fadeIn 1s ease-out;
}
