/* Main CSS for ai3dporn.pw - Using a different color scheme and layout than previous site */
:root {
  --primary-color: #1e88e5; /* Blue instead of purple */
  --secondary-color: #4caf50; /* Green instead of orange */
  --accent-color: #ff4081; /* Pink accent */
  --text-color: #212121;
  --light-text: #f8f8f8;
  --background-color: #121212; /* Dark background instead of light */
  --card-background: #1e1e1e;
  --footer-background: #0a0a0a;
  --footer-text: #e0e0e0;
  --gradient-start: #1565c0;
  --gradient-end: #0d47a1;
}

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

body {
  font-family: 'Roboto', sans-serif; /* Different font than previous */
  line-height: 1.6;
  background-color: var(--background-color);
  color: var(--light-text);
}

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

/* Header - Different style than previous site */
.header {
  background-color: rgba(18, 18, 18, 0.95);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.site-title {
  color: var(--light-text);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

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

/* Hero section - Different layout */
.hero {
  padding-top: 100px; /* Space for fixed header */
  height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom right, var(--gradient-start), var(--gradient-end));
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/grid-pattern.svg');
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--light-text);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #43a047;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: var(--accent-color);
}

.btn-primary:hover {
  background-color: #f50057;
}

/* Features section */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--light-text);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
}

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

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

.feature-box {
  background-color: var(--card-background);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.feature-box:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid var(--secondary-color);
}

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

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--light-text);
}

.feature-description {
  color: var(--light-text);
  opacity: 0.8;
}

/* Process section */
.process {
  background-color: #131313;
  padding: 80px 0;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step-box {
  background-color: var(--card-background);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  position: relative;
}

.step-number {
  background-color: var(--accent-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.step-title {
  margin-top: 10px;
  margin-bottom: 15px;
  color: var(--light-text);
}

.step-description {
  color: var(--light-text);
  opacity: 0.8;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  text-align: center;
  background-image: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/dots-pattern.svg');
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-text {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
  opacity: 0.9;
}

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

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

.footer-info {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-description {
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

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

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

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  transition: all 0.2s ease;
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--accent-color);
  opacity: 1;
}

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

/* Media Queries for Responsive Design */
@media screen and (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .menu-toggle.active .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-toggle.active .line2 {
    opacity: 0;
  }

  .menu-toggle.active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .nav-active {
    position: absolute;
    right: 0;
    top: 70px;
    background-color: var(--card-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .nav-active li {
    margin: 15px 0;
  }
  
  .hero {
    height: auto;
    padding: 120px 0 60px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .feature-box, .step-box {
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .footer-grid {
    gap: 30px;
  }
}
