/* 
* Main Stylesheet for deepnudes.makeup
* Mobile-first responsive design
*/

:root {
  --primary-color: #6a11cb;
  --secondary-color: #2575fc;
  --dark-color: #1a1a2e;
  --light-color: #f7f7f7;
  --text-color: #333;
  --light-text: #fff;
  --accent-color: #ff6b6b;
  --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fdfdfd;
}

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

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

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

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

h1 {
  font-size: 2.5rem;
}

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

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

section {
  padding: 4rem 0;
}

img {
  display: block;
  max-width: 100%;
}

/* Header & Navigation */
header {
  background-color: var(--light-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--box-shadow);
}

nav {
  padding: 1rem 0;
}

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

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

.logo a {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.3rem;
}

.logo-svg {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--light-color);
  padding: 1rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.nav-links.active {
  display: flex;
  flex-direction: column;
}

.nav-links a {
  padding: 0.8rem 1rem;
  color: var(--dark-color);
}

.nav-links a:hover {
  background-color: rgba(106, 17, 203, 0.1);
  border-radius: var(--border-radius);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 10px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: var(--gradient);
  color: var(--light-text);
  text-align: center;
  padding: 5rem 0;
}

.hero h1 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--light-text);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: #ff4f4f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
  color: var(--light-text);
}

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

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  margin: 0 auto 1rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(106, 17, 203, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

/* How It Works Section */
.how-it-works {
  background-color: #fff;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.step-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: var(--light-text);
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.cta-center {
  text-align: center;
  margin-top: 2rem;
}

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

.about h2 {
  color: var(--light-text);
}

/* Footer */
footer {
  background-color: #151515;
  color: var(--light-text);
  padding: 3rem 0 1.5rem;
}

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

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

.footer-svg {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.footer-links h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

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

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Media Queries for Responsive Design */
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .step {
    flex: 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
  
  .nav-links {
    display: flex;
    position: static;
    width: auto;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    background-color: transparent;
  }
  
  .nav-links a {
    margin-left: 1.5rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
