/* Main Styles for aigeneratedpornvideos.pw 
   Design is completely different from previous websites */

:root {
  --primary: #ff3d00;
  --primary-light: #ff7539;
  --primary-dark: #c30000;
  --secondary: #2196f3;
  --secondary-light: #6ec6ff;
  --secondary-dark: #0069c0;
  --dark: #212121;
  --light: #f5f5f5;
  --text-light: #ffffff;
  --text-dark: #333333;
  --accent: #1de9b6;
  --gradient: linear-gradient(45deg, var(--primary-dark), var(--primary));
  --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  --shadow: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-large: 0 10px 20px rgba(0,0,0,0.15);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #f9f9f9;
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  margin-bottom: 0.5em;
  font-weight: 700;
}

h1 {
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Header */
header {
  background-color: var(--dark);
  color: var(--text-light);
  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;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
}

.logo-mark {
  color: var(--primary);
  margin-right: 0.2rem;
  font-weight: 900;
}

.logo-text {
  color: var(--text-light);
  font-size: 0.9rem;
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

#menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--text-light);
  transition: all 0.3s ease;
}

#main-nav ul {
  display: flex;
  gap: 2rem;
}

#main-nav a {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

#main-nav a:hover {
  color: var(--accent);
}

#main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

#main-nav a:hover::after {
  width: 100%;
}

.cta-link {
  background-color: var(--primary);
  color: var(--text-light) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-link:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.cta-link::after {
  display: none !important;
}

/* Hero Section */
.hero {
  position: relative;
  background: var(--gradient);
  color: var(--text-light);
  text-align: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm10 10h10v10H10V10zm0-10h10v10H0V0h10z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 1rem;
  max-width: 800px;
  margin: 0 auto 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.tagline {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.button.primary {
  background-color: var(--secondary);
  color: var(--text-light);
  box-shadow: var(--shadow);
}

.button.primary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-large);
}

.button.secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.button.secondary:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

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

.pulse-animation {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
  100% {
    transform: translateX(-50%) scale(0.8);
    opacity: 0.5;
  }
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background-color: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-dark);
  opacity: 0.8;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background-color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

.card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.card-icon {
  margin-bottom: 1.5rem;
}

.icon-shape {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--gradient);
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.2rem;
}

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

/* Tech Section */
.tech-section {
  padding: 6rem 0;
  background-color: var(--dark);
  color: var(--text-light);
}

.tech-section .section-header p {
  color: var(--text-light);
  opacity: 0.8;
}

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

.tech-item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-item:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(29, 233, 182, 0.1);
}

.tech-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  position: absolute;
  top: 0;
  right: 1rem;
  line-height: 1;
}

.tech-item h3 {
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.tech-item p {
  position: relative;
  z-index: 1;
  opacity: 0.8;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  text-align: center;
  background: var(--gradient-secondary);
  color: var(--text-light);
}

.cta-section h2 {
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-section .button {
  margin-top: 1rem;
  background-color: var(--primary);
}

.cta-section .button:hover {
  background-color: var(--primary-dark);
}

/* Footer */
footer {
  background-color: #151515;
  color: #999;
  padding-top: 4rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-logo span {
  color: var(--text-light);
  font-weight: 600;
}

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

.link-group h4 {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.link-group h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.link-group ul li {
  margin-bottom: 0.7rem;
}

.link-group ul li a {
  color: #999;
  transition: all 0.3s ease;
}

.link-group ul li a:hover {
  color: var(--text-light);
  padding-left: 5px;
}

.footer-bottom {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom p:last-child {
  margin-top: 0.5rem;
  opacity: 0.6;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  #menu-toggle {
    display: block;
  }
  
  #main-nav {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }
  
  #main-nav.active {
    height: auto;
    opacity: 1;
    padding: 1rem 0;
  }
  
  #main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  
  #main-nav ul li {
    width: 100%;
    text-align: center;
  }
  
  #main-nav ul li a {
    display: block;
    padding: 1rem;
  }
  
  #menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  #menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  #menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .cards-container, .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  .container {
    width: 95%;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .tagline {
    font-size: 1.1rem;
  }
}
