/* Main CSS for deepnudemaker.works - Unique Teal & Gold Design */
:root {
  --primary-color: #009688;
  --secondary-color: #d4af37;
  --text-color: #333;
  --light-color: #f5f5f5;
  --dark-color: #263238;
  --gradient: linear-gradient(135deg, var(--primary-color), #00796b);
  --font-primary: 'Raleway', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: #fafafa;
}

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

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

/* Header with curved corners */
header {
  background: var(--gradient);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

.logo-text {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 10px;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: white;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
}

/* Hero Section with Overlapping Elements */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--dark-color);
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  color: white;
  width: 50%;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image {
  width: 40%;
  position: relative;
}

.circular-highlight {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

/* Button Styles */
.btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--dark-color);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
}

/* Features Section with Staggered Layout */
.features {
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-color);
  opacity: 0.8;
}

.feature-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.feature-item {
  flex: 0 0 calc(33.333% - 30px);
  margin: 0 15px 30px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
  background: var(--primary-color);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-content {
  padding: 20px;
}

.feature-item h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* How it Works Section */
.how-it-works {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
}

.steps-container {
  position: relative;
  padding-left: 60px;
}

.step-item {
  position: relative;
  padding-bottom: 50px;
}

.step-item:last-child {
  padding-bottom: 0;
}

.step-item:before {
  content: '';
  position: absolute;
  left: -45px;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--primary-color);
}

.step-item .step-number {
  position: absolute;
  left: -60px;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-weight: 700;
  z-index: 1;
}

.step-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: var(--dark-color);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta:before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: white;
  clip-path: ellipse(50% 50% at 50% 100%);
}

.cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.cta-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  opacity: 0.1;
}

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 50px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

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

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

.footer-about p {
  opacity: 0.7;
  margin-bottom: 20px;
}

.footer-links h4 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-links h4:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
}

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

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

.footer-links ul li a {
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

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

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
  }
  
  .hero-content {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .feature-item {
    flex: 0 0 calc(50% - 30px);
  }
  
  .circular-highlight {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--dark-color);
    padding: 20px 0;
    clip-path: circle(0% at 100% 0);
    transition: all 0.4s ease-out;
    z-index: 999;
  }
  
  nav.active {
    clip-path: circle(150% at 100% 0);
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .feature-item {
    flex: 0 0 100%;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
}
