/* 
   Main Stylesheet for thepornator.pro
   Teal/Dark Theme - Modern and Clean Design
*/

:root {
  --primary: #00ADB5;
  --secondary: #393E46;
  --dark: #222831;
  --light: #EEEEEE;
  --gray: #808080;
  --success: #4CAF50;
  --shadow: rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--light);
  background-color: var(--dark);
  overflow-x: hidden;
}

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

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

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

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

ul {
  list-style: none;
}

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

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

h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

h1 span {
  color: var(--primary);
  position: relative;
}

h1 span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--primary);
  opacity: 0.3;
  z-index: -1;
}

h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

.section-title {
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}

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

.section-description {
  text-align: center;
  color: var(--gray);
  max-width: 800px;
  margin: -1.5rem auto 3rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--dark);
  border: 2px solid var(--primary);
}

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

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

.btn-secondary:hover {
  background-color: var(--light);
  color: var(--dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--dark);
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(34, 40, 49, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.logo {
  z-index: 2;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav ul li a {
  position: relative;
  font-weight: 500;
  padding: 5px 0;
}

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  z-index: 2;
  cursor: pointer;
}

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

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  background-color: var(--dark);
}

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

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--secondary);
  position: relative;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex: 1;
  min-width: 300px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  background-color: var(--dark);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-label {
  color: var(--light);
  font-size: 0.9rem;
}

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

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

.feature-card {
  background-color: var(--secondary);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px var(--shadow);
}

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

.feature-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(0, 173, 181, 0.1);
}

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

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background-color: var(--secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow);
}

.gallery-item svg {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.gallery-item p {
  background-color: var(--dark);
  padding: 15px;
  margin-bottom: 0;
  text-align: center;
  border-radius: 0 0 10px 10px;
}

.gallery-cta {
  text-align: center;
  margin-top: 50px;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background-color: var(--dark);
  position: relative;
}

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

.pricing-card {
  background-color: var(--secondary);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 10px 30px var(--shadow);
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary);
  z-index: 2;
}

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

.pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--dark);
  padding: 5px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 0 0 0 10px;
}

.card-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid rgba(238, 238, 238, 0.1);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--light);
}

.price span {
  font-size: 1rem;
  opacity: 0.7;
  font-weight: 400;
}

.pricing-features {
  padding: 30px;
}

.pricing-features li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.pricing-features li:before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.pricing-card .btn {
  display: block;
  margin: 0 30px 30px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #00ADB5, #007A8A);
  text-align: center;
}

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

.cta-content h2 {
  margin-bottom: 20px;
}

.cta-content p {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.cta-section .btn-primary {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--light);
}

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

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-column {
  margin-bottom: 20px;
  min-width: 150px;
}

.footer-column h4 {
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-column ul li a {
  color: var(--light);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 5px;
}

.footer-icon {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(238, 238, 238, 0.1);
}

.footer-bottom p {
  color: var(--light);
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Media Queries */
@media screen and (max-width: 992px) {
  h1 {
    font-size: 2.6rem;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 30px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .footer-icon {
    justify-content: center;
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--dark);
    padding: 100px 30px;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    margin: 30px 0;
  }
}

@media screen and (max-width: 576px) {
  body {
    font-size: 0.95rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    flex-direction: column;
  }
}
