/* 
  Main stylesheet for deepnudenow.rocks
  Created: 2025-06-27
*/

/* Base Styles and CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Scheme - Different from previous site */
  --primary: #FF4757;
  --primary-light: #FF6B78;
  --primary-dark: #D63546;
  --dark-bg: #1A1A2E;
  --light-bg: #FFFFFF;
  --light-gray: #F1F2F3;
  --dark-text: #16213E;
  --light-text: #F1F2F3;
  --gray-text: #8D8D9D;
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Raleway', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 2.75rem;
  margin-bottom: var(--spacing-lg);
}

h2 {
  font-size: 2.25rem;
  margin-bottom: var(--spacing-lg);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

p {
  margin-bottom: var(--spacing-lg);
}

ul {
  list-style-type: none;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

section {
  padding: var(--spacing-xl) 0;
}

.highlight {
  color: var(--primary);
}

/* Button Styles */
.button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.button.primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.button.outline:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo-icon {
  margin-right: var(--spacing-sm);
}

nav ul {
  display: flex;
  gap: var(--spacing-lg);
}

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

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

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

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

.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark-text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: var(--spacing-xl);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero .container {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.hero-content {
  flex: 1;
}

.hero h1 {
  margin-bottom: var(--spacing-md);
}

.hero p {
  font-size: 1.2rem;
  color: var(--gray-text);
  margin-bottom: var(--spacing-lg);
}

.cta-group {
  display: flex;
  gap: var(--spacing-md);
}

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

.tech-pattern {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

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

/* How It Works Section */
.how-it-works {
  text-align: center;
  background-color: var(--light-gray);
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--spacing-xl);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  max-width: 250px;
}

.step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-md);
}

.step-content h3 {
  margin-bottom: var(--spacing-sm);
}

.step-content p {
  font-size: 0.95rem;
  color: var(--gray-text);
}

.step-connector {
  flex-grow: 1;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  max-width: 100px;
}

/* Features Section */
.features {
  text-align: center;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.feature-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

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

.feature-icon {
  margin-bottom: var(--spacing-md);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.feature-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Tech Overview Section */
.tech-overview {
  background-color: var(--light-gray);
  overflow: hidden;
}

.tech-overview .container {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.tech-content {
  flex: 1;
}

.tech-list {
  margin-top: var(--spacing-lg);
}

.tech-list li {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.tech-list li svg {
  margin-right: var(--spacing-sm);
  flex-shrink: 0;
}

.tech-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.cta-section h2 {
  color: white;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .highlight {
  color: white;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

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

/* Footer Styles */
footer {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding-top: var(--spacing-xl);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}

.footer-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: white;
  margin-bottom: var(--spacing-lg);
}

.footer-logo .logo-icon {
  margin-right: var(--spacing-sm);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
}

.footer-column h4 {
  color: white;
  margin-bottom: var(--spacing-md);
  font-size: 1.1rem;
}

.footer-column ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

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

/* Media Queries */
@media screen and (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero .container,
  .tech-overview .container {
    flex-direction: column;
  }
  
  .hero-visual {
    order: -1;
    margin-bottom: var(--spacing-lg);
  }
  
  .tech-visual {
    margin-top: var(--spacing-lg);
  }
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  
  .hamburger {
    display: flex;
    z-index: 101;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .menu-toggle:checked ~ nav {
    transform: translateX(0);
  }
  
  nav ul {
    flex-direction: column;
    gap: var(--spacing-xl);
    align-items: center;
  }
  
  .menu-toggle:checked ~ .hamburger span:first-child {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle:checked ~ .hamburger span:last-child {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .steps {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .step {
    width: 100%;
    max-width: 100%;
  }
  
  .step-connector {
    width: 3px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-around;
  }
}

@media screen and (max-width: 576px) {
  section {
    padding: var(--spacing-lg) 0;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .button {
    width: 100%;
  }
}
