/* 
* DeepNude Online CSS
* Website: deepnudeonline.makeup
* Modern, responsive design with purple-blue gradient accents
*/

/* Base styles and variables */
:root {
  --primary: #e056fd;
  --secondary: #00b0ff;
  --dark: #121212;
  --dark-accent: #1e1e1e;
  --light: #f7f7f7;
  --text: #e4e4e4;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Roboto', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--dark);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3 {
  margin-bottom: 20px;
  font-weight: 600;
}

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

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

section {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header Styles */
header {
  padding: 20px 0;
  background-color: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 10px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-text span {
  font-weight: 300;
}

nav {
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px 0;
  background-color: var(--text);
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.7)), 
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23121212"/><path d="M0 10L100 0L90 100L0 90Z" fill="%23e056fd" opacity="0.1"/></svg>');
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(224, 86, 253, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(224, 86, 253, 0.4);
  color: white;
}

/* How It Works Section */
.how-it-works {
  background-color: var(--dark-accent);
}

.steps {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  width: 100%;
  gap: 40px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 30px;
  border-radius: var(--border-radius);
  background-color: var(--dark);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  font-weight: 700;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  width: 100%;
}

.feature-card {
  background-color: var(--dark-accent);
  padding: 40px 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: #a0a0a0;
}

/* Reviews Section */
.reviews {
  background-color: var(--dark-accent);
}

.review-slider {
  display: flex;
  gap: 30px;
  max-width: 1000px;
  width: 100%;
}

.review {
  background-color: var(--dark);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.stars {
  color: #ffc107;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.reviewer {
  margin-top: 20px;
  font-weight: 600;
  color: var(--secondary);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(45deg, rgba(224, 86, 253, 0.8), rgba(0, 176, 255, 0.8)), 
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23121212"/><path d="M0 0L100 20L80 100L0 80Z" fill="%23ffffff" opacity="0.05"/></svg>');
  text-align: center;
  padding: 100px 20px;
}

.cta-section h2 {
  color: white;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
}

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

.cta-section .cta-button:hover {
  background: rgba(255, 255, 255, 0.9);
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

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

.copyright {
  text-align: center;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .review-slider {
    flex-direction: column;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    opacity: 0;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  section {
    padding: 60px 15px;
  }
}
