/* 
* DeepNude CC - Main Stylesheet 
* Website: deepnudecc.rocks
* Design: Hexagonal Theme with Green Gradient
*/

/* Base Styles & Reset */
:root {
  --primary: #11998e;
  --primary-light: #38ef7d;
  --accent: #00d084; 
  --dark: #1A1A1A;
  --darker: #121212;
  --light: #f8f9fa;
  --gray: #6c757d;
  --text: #333333;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

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

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

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

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

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

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

.text-center {
  text-align: center;
}

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

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section {
  padding: 80px 0;
}

.dark-section {
  background-color: var(--darker);
  color: var(--light);
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4 {
  color: white;
}

.section-title {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gradient);
  color: white;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(17, 153, 142, 0.4);
  color: white;
}

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

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

/* Header & Navigation */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 12px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.logo-text {
  margin-left: 10px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

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

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  color: var(--dark);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.nav-links a.btn {
  padding: 8px 16px;
  color: white;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30,10 L47.5,20 L47.5,40 L30,50 L12.5,40 L12.5,20 Z' fill='%2311998e' fill-opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.8;
  z-index: -1;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--gray);
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dark-section .feature-card {
  background: #222;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  height: 70px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  margin-bottom: 15px;
}

/* How It Works */
.steps-container {
  position: relative;
  margin: 60px 0;
  counter-reset: step-counter;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: bold;
  color: white;
  border-radius: 16px;
  position: relative;
  counter-increment: step-counter;
}

.step-number::before {
  content: counter(step-counter);
}

.step-content h3 {
  margin-bottom: 10px;
}

/* FAQ Accordion */
.accordion {
  max-width: 800px;
  margin: 50px auto 0;
}

.accordion-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.dark-section .accordion-item {
  background: #222;
}

.accordion-header {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: var(--primary);
  transition: all 0.3s ease-out;
}

.accordion-icon::before {
  top: 11px;
  left: 0;
  width: 24px;
  height: 2px;
}

.accordion-icon::after {
  top: 0;
  left: 11px;
  width: 2px;
  height: 24px;
}

.accordion-item.active .accordion-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.accordion-content {
  padding: 0 20px 18px;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50,15 L85,35 L85,65 L50,85 L15,65 L15,35 Z' stroke='%2338ef7d' stroke-width='0.5' fill='none' opacity='0.2'/%3E%3C/svg%3E");
  opacity: 0.15;
  z-index: -1;
}

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

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

.cta-content p {
  margin-bottom: 35px;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: var(--darker);
  color: var(--light);
  padding: 70px 0 30px;
}

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

.footer-branding {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo svg {
  margin-right: 10px;
}

.footer-logo span {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-nav h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

.footer-links li {
  margin-bottom: 12px;
}

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

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-split {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    grid-row: 1;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-branding {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 270px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    transition: right 0.3s ease-out;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .step {
    grid-template-columns: 1fr;
  }
  
  .step-number {
    margin: 0 auto 20px;
  }
  
  .step-content {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}
