/* 
   ainudeNO.love - Norwegian AI Nude Generator
   Main Stylesheet - Completely new design different from previous sites
*/

/* Base Variables and Reset */
:root {
  --primary: #003466; /* Norwegian flag blue */
  --accent: #ef2b2d; /* Norwegian flag red */
  --dark: #111111;
  --light: #f9f9f9;
  --mid: #666666;
  --light-blue: #e6f0fa;
  --light-red: #ffebeb;
  --gradient: linear-gradient(135deg, #003466, #001a33);
  --accent-gradient: linear-gradient(to right, #ef2b2d, #d41c1c);
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  --radius: 10px;
  --transition: all 0.3s ease;
}

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

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

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

.main-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

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

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

h2 {
  font-size: 2rem;
  position: relative;
  display: inline-block;
  margin-bottom: 2.5rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

section {
  padding: 5rem 0;
}

/* Navigation */
.main-nav {
  background-color: var(--light);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

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

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

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: var(--dark);
  font-weight: 600;
  position: relative;
  padding: 5px 0;
}

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

.nav-menu a:hover::before {
  width: 100%;
}

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

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

/* Hero Section */
.hero-section {
  background: var(--gradient);
  color: var(--light);
  padding: 8rem 0 5rem;
  position: relative;
}

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

.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-benefits {
  list-style: none;
  margin-bottom: 2rem;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.check {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
}

.check::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.cta-button {
  display: inline-block;
  background: var(--accent-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(239, 43, 45, 0.3);
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 43, 45, 0.5);
  color: white;
}

.hero-image {
  text-align: right;
}

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

.features-section h2 {
  margin-left: auto;
  margin-right: auto;
}

.features-section h2::after {
  left: 50%;
  transform: translateX(-50%);
}

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

.feature-box {
  background-color: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.feature-box:nth-child(odd) {
  border-top-color: var(--primary);
}

.feature-box:nth-child(even) {
  border-top-color: var(--accent);
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

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

/* Stats Section */
.stats-section {
  background: linear-gradient(rgba(0, 52, 102, 0.9), rgba(0, 52, 102, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23001a33"/><path d="M0,50 H100 M50,0 V100" stroke="%23003466" stroke-width="1"/></svg>');
  color: white;
  padding: 4rem 0;
}

.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);
}

/* How It Works */
.how-section {
  background-color: var(--light-blue);
  text-align: center;
}

.how-section h2 {
  margin-left: auto;
  margin-right: auto;
}

.how-section h2::after {
  left: 50%;
  transform: translateX(-50%);
}

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

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

.step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

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

/* Benefits Section */
.benefits-section {
  background-color: white;
}

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

.benefit-item {
  background-color: var(--light);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-5px);
  border-left-color: var(--accent);
}

/* FAQ Section */
.faq-section {
  background-color: var(--light);
}

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

.faq-item {
  background-color: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* Testimonials */
.testimonial-section {
  background-color: var(--light-red);
  text-align: center;
}

.testimonial-section h2 {
  margin-left: auto;
  margin-right: auto;
}

.testimonial-section h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-slider {
  margin: 3rem auto;
  max-width: 700px;
}

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

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1rem;
}

.stars {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

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

/* Footer */
.site-footer {
  background-color: var(--dark);
  color: white;
  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;
}

.footer-logo {
  margin-bottom: 1rem;
}

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

.footer-links h4,
.footer-tags h4 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.footer-links h4::after,
.footer-tags h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
}

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

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

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

.footer-links 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);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    order: 2;
  }
  
  .hero-image {
    order: 1;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .hero-benefits {
    display: inline-block;
    text-align: left;
  }
  
  .how-section h2::after,
  .features-section h2::after,
  .testimonial-section h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.4s;
    pointer-events: none;
  }
  
  .nav-menu.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: all;
  }
  
  .nav-menu li {
    margin: 1rem 0;
    text-align: center;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links h4::after,
  .footer-tags h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .tag-cloud {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .feature-box,
  .step,
  .benefit-item,
  .faq-item {
    padding: 1.5rem;
  }
}
