/* 
 * Pornderful.pw - Main Stylesheet
 * Modern, responsive design with SEO optimizations
 */

:root {
  --primary-color: #e91e63;
  --secondary-color: #03a9f4;
  --accent-color: #4caf50;
  --dark-bg: #121212;
  --medium-bg: #1e1e1e;
  --light-bg: #2a2a2a;
  --text-light: #ffffff;
  --text-gray: #b0b0b0;
  --text-dark: #333333;
  --font-main: 'Montserrat', sans-serif;
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

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

section {
  padding: 5rem 0;
}

/* Header Styles */
.header {
  position: fixed;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  width: 180px;
}

.logo-svg {
  width: 100%;
  height: auto;
}

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

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  font-weight: 500;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-speed);
}

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

.cta-button {
  background-color: var(--primary-color);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  transition: all var(--transition-speed);
}

.cta-button:hover {
  background-color: #d11a5a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--medium-bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 600px;
  margin-bottom: 3rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 3.2rem;
  background: linear-gradient(to right, #fff, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.primary-button, .secondary-button {
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  transition: all var(--transition-speed);
  display: inline-block;
}

.primary-button {
  background-color: var(--primary-color);
  color: white;
}

.primary-button:hover {
  background-color: #d11a5a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

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

.secondary-button:hover {
  background-color: rgba(233, 30, 99, 0.1);
  transform: translateY(-2px);
}

.hero-visual {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-svg {
  width: 100%;
  max-width: 600px;
  height: auto;
}

/* Features Section */
.features {
  background-color: var(--medium-bg);
}

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

.feature-card {
  background: var(--light-bg);
  border-radius: 1rem;
  padding: 2rem;
  transition: transform var(--transition-speed);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

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

/* About Section */
.about {
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(3, 169, 244, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

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

.about p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

/* Technology Section */
.technology {
  background-color: var(--medium-bg);
}

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

.tech-card {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--medium-bg) 100%);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-speed);
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.tech-card p {
  color: var(--text-gray);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1e1e1e 0%, #0c0c0c 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.cta-button-large {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all var(--transition-speed);
  display: inline-block;
}

.cta-button-large:hover {
  background-color: #d11a5a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  max-width: 180px;
}

.footer-logo-svg {
  width: 100%;
  height: auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer-links-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--text-light);
}

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

.footer-links-column li {
  margin-bottom: 0.8rem;
}

.footer-links-column a {
  color: var(--text-gray);
  transition: color var(--transition-speed);
}

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

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto 3rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-logo {
    margin: 0 auto 2rem;
  }
}

@media screen and (max-width: 576px) {
  section {
    padding: 3rem 0;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .technology-cards {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .primary-button, .secondary-button, .cta-button-large {
    display: block;
    width: 100%;
    text-align: center;
  }
}
