/* 
   deepnudenow.party - Main Styles
   A modern, gradient-rich design with a red-blue color scheme
*/

/* Base Styles & Variables */
:root {
  --primary: #1a2a6c;
  --secondary: #ff6b6b;
  --primary-light: #4e69b2;
  --secondary-light: #ff9e9e;
  --dark: #0c1633;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray: #e9ecef;
  --dark-gray: #343a40;
  --text: #212529;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.2);
  --grad-primary: linear-gradient(135deg, var(--primary), #4e54c8);
  --grad-secondary: linear-gradient(135deg, var(--secondary), #fc5c7d);
  --transition: all 0.3s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

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

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

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--grad-secondary);
  border-radius: 2px;
}

section {
  padding: 5rem 0;
}

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

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.logo h1 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo h1 span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

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

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

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

.nav-cta {
  background: var(--grad-primary);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  position: absolute;
  transition: var(--transition);
}

.menu-btn span:nth-child(1) {
  top: 0;
}

.menu-btn span:nth-child(2) {
  top: 9px;
}

.menu-btn span:nth-child(3) {
  bottom: 0;
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem;
  background: radial-gradient(circle at top right, rgba(255, 107, 107, 0.1), rgba(26, 42, 108, 0.1)), var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 107, 107, 0.1), transparent 70%);
  z-index: 0;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

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

.hero-text h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-align: left;
}

.hero-text h2:after {
  display: none;
}

.hero-text h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
  max-width: 90%;
}

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

.cta-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

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

.cta-button.primary {
  background: var(--grad-secondary);
  color: var(--white);
  box-shadow: 0 8px 15px rgba(255, 107, 107, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(255, 107, 107, 0.4);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat .number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.stat .label {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-top: 0.2rem;
}

/* About Section */
.about {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray);
}

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

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

.about-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.point {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
}

.point span {
  font-weight: 500;
}

/* Benefits Section */
.benefits {
  background: linear-gradient(135deg, #f8f9fe, #f1f3f9);
}

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

.benefit-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.benefit-card p {
  color: var(--dark-gray);
  font-size: 0.95rem;
}

/* How-To Section */
.howto {
  background-color: var(--white);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.5rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--grad-primary);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.step-content p {
  color: var(--dark-gray);
}

/* CTA Section */
.cta-section {
  background: var(--grad-primary);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section h2:after {
  background: var(--secondary);
}

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

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--gray-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0;
}

.footer-content p {
  max-width: 600px;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--gray-light);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--secondary-light);
}

.copyright {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
  }
  
  .hero-text {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-text p {
    max-width: 100%;
  }
  
  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .header-container {
    height: 60px;
  }
  
  .logo h1 {
    font-size: 1.2rem;
  }

  .menu-btn {
    display: block;
  }

  nav {
    position: relative;
  }
  
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    gap: 1rem;
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }
  
  .steps {
    gap: 2rem;
  }
  
  .step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-number {
    margin: 0 auto;
  }
  
  .step-content {
    text-align: center;
  }
}

@media (max-width: 576px) {
  section {
    padding: 3rem 0;
  }

  .hero {
    padding: 8rem 0 4rem;
  }
  
  .hero-text h3 {
    font-size: 2.2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .benefit-card {
    padding: 2rem 1rem;
  }
}

/* Animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero-image {
  animation: float 6s ease-in-out infinite;
}
