/* 
   deepnudenow.beauty - Main Stylesheet
   Modern design with purple/violet color scheme
   Optimized for mobile responsiveness and SEO
*/

:root {
  --primary: #6B46C1;
  --primary-light: #9F7AEA;
  --primary-dark: #553C9A;
  --secondary: #44337A;
  --text: #1A202C;
  --text-light: #4A5568;
  --text-lighter: #718096;
  --background: #FFFFFF;
  --background-alt: #F8F9FA;
  --accent: #FAF5FF;
  --border: #E9D8FD;
  --shadow: 0 10px 15px -3px rgba(107, 70, 193, 0.1), 0 4px 6px -2px rgba(107, 70, 193, 0.05);
  --radius: 10px;
  --transition: all 0.3s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

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

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

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

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

.highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: var(--shadow);
}

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

.primary-button:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -5px rgba(107, 70, 193, 0.2);
}

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

.secondary-button:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

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

.logo-container span {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--text);
  font-weight: 500;
  position: relative;
}

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

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

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

#menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

#menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--primary);
  transition: var(--transition);
}

/* Main Section Styles */
main {
  margin-top: 70px;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--accent), var(--background));
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-graphic {
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* About Section */
.about {
  background-color: var(--background);
  text-align: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.about-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  color: var(--text-light);
  font-weight: 500;
}

/* Features Section */
.features {
  background-color: var(--background-alt);
  text-align: center;
}

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

.feature-card {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: left;
}

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

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

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

.feature-cta {
  margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--background);
  text-align: center;
}

.testimonials-slider {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-item {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: var(--background-alt);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.testimonial-content {
  position: relative;
  padding: 1rem 0;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: -10px;
  font-size: 6rem;
  line-height: 1;
  color: var(--primary-light);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-author {
  margin-top: 1.5rem;
}

.author-name {
  display: block;
  font-weight: 600;
  color: var(--text);
}

.author-info {
  color: var(--text-lighter);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2, 
.cta-section p {
  color: white;
}

.cta-section h2:after {
  background: white;
}

.cta-section .highlight {
  color: var(--accent);
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

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

/* Footer */
footer {
  background-color: var(--secondary);
  color: white;
  padding: 4rem 0 2rem;
}

footer .container {
  padding-top: 0;
  padding-bottom: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-title h3 {
  margin-bottom: 0.2rem;
}

.footer-title p {
  color: var(--primary-light);
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-links-col h4 {
  color: white;
  margin-bottom: 1.2rem;
}

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

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

.footer-links-col a {
  color: var(--primary-light);
}

.footer-links-col a:hover {
  color: white;
}

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

.footer-bottom p {
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}

/* Media Queries */
@media screen and (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    flex-direction: column;
    padding-top: 100px;
    justify-content: flex-start;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-content p {
    margin: 0 auto 2rem;
  }
}

@media screen and (max-width: 768px) {
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    transition: var(--transition);
    padding: 2rem 0;
    z-index: 900;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  nav li {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }
  
  #menu-toggle {
    display: block;
    z-index: 1000;
  }
  
  .about-stats {
    gap: 2rem;
  }
  
  .feature-card {
    text-align: center;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    gap: 2rem;
    width: 100%;
    justify-content: space-around;
  }
}

@media screen and (max-width: 480px) {
  .container {
    width: 95%;
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .button {
    padding: 0.8rem 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }
}
