/* 
   DeepnudeAU.love - Australian AI Deepfake Generator
   Main Stylesheet - Unique Design with Australian-inspired color scheme
*/

/* Custom Variables */
:root {
  --primary: #00843D;     /* Australian green */
  --secondary: #003F7E;   /* Australian dark blue */
  --accent: #FFCD00;      /* Australian gold */
  --dark: #222222;
  --light: #F5F5F5;
  --text-light: #FFFFFF;
  --text-dark: #333333;
  --border-radius: 8px;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light);
}

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

ul {
  list-style: none;
}

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

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

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

.page-wrapper {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 25%;
  right: 25%;
  bottom: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 3px;
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
}

.primary-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(0, 132, 61, 0.3);
}

.primary-cta:hover {
  box-shadow: 0 6px 16px rgba(0, 132, 61, 0.5);
  transform: translateY(-3px);
  color: var(--text-light);
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

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

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

.logo {
  display: block;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition);
}

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

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-list a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

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

/* Hero Section */
.hero-section {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, rgba(0,63,126,0.1), rgba(0,132,61,0.1));
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 10%, rgba(0,132,61,0.1) 10%, transparent 40%),
                   radial-gradient(circle at 90% 90%, rgba(0,63,126,0.1) 10%, transparent 40%);
  z-index: -1;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(0, 132, 61, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--accent);
}

.feature-icon {
  margin: 0 auto 1.5rem;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
}

/* How It Works Section */
.how-section {
  padding: 5rem 0;
  background-color: #FFFFFF;
  text-align: center;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  background-color: var(--light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  position: relative;
  transition: var(--transition);
}

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

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background-color: var(--light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  border-top: 4px solid var(--accent);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--primary);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: #FFFFFF;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: var(--light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.faq-answer {
  margin-bottom: 0;
}

/* Testimonial Section */
.testimonial-section {
  padding: 5rem 0;
  background-color: var(--light);
  text-align: center;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.testimonial {
  padding: 2rem;
  background-color: #FFFFFF;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-rating {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.testimonial-author {
  font-weight: 600;
}

/* Footer */
.site-footer {
  background-color: var(--dark);
  color: var(--text-light);
  padding: 4rem 0 1rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.copyright {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-links h4,
.footer-terms h4,
.footer-tags h4 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-terms h4::after,
.footer-tags h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links ul,
.footer-terms ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

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

.footer-links a:hover,
.footer-terms a:hover {
  color: var(--accent);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tag-cloud span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.85rem;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-features {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 8px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -8px);
  }
  
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    max-width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links h4::after,
  .footer-terms h4::after,
  .footer-tags h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links ul,
  .footer-terms ul {
    align-items: center;
  }
  
  .tag-cloud {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  .features-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    padding: 1rem;
  }
}
