/*
* aigeneratedpornreddit.love - Main Stylesheet
* Modern, responsive design with orange/red color scheme
*/

:root {
  --primary-color: #ff6d00;
  --secondary-color: #ff1744;
  --accent-color: #ffab00;
  --dark-color: #263238;
  --light-color: #fff;
  --gray-light: #f5f5f5;
  --gray: #9e9e9e;
  --gray-dark: #424242;
  --gradient: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--gray-light);
}

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

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

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

img, svg {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.3;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Header Styles */
header {
  background-color: var(--light-color);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

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

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

.logo {
  display: block;
}

h1 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  color: var(--dark-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background: var(--gradient);
  transition: var(--transition);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background: var(--gradient);
  color: var(--light-color);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  margin-bottom: 60px;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background-color: var(--light-color);
  color: var(--primary-color);
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--light-color);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--gradient);
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  border-radius: 2px;
}

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

.feature-card {
  background: var(--gray-light);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.feature-icon {
  margin: 0 auto 20px;
  width: 80px;
  height: 80px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-card p {
  color: var(--gray-dark);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background-color: var(--dark-color);
  color: var(--light-color);
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
  margin-top: -60px;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.8;
}

.cta-section .cta-button {
  background: var(--gradient);
  color: var(--light-color);
}

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

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

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

.footer-logo p {
  margin-top: 20px;
  color: var(--gray);
  font-size: 18px;
}

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

.footer-links h3, .footer-legal h3 {
  color: var(--light-color);
  font-size: 18px;
  margin-bottom: 25px;
}

.footer-links ul, .footer-legal ul {
  list-style: none;
}

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

.footer-links a, .footer-legal a {
  color: var(--gray);
  transition: var(--transition);
}

.footer-links a:hover, .footer-legal a:hover {
  color: var(--primary-color);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.copyright p {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 36px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-logo {
    grid-column: span 2;
    align-items: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--light-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  nav a {
    font-size: 16px;
  }
  
  .hero {
    padding: 150px 0 80px;
  }
  
  .hero h2 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-logo {
    grid-column: span 1;
  }
}

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

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}
