/* 
* DeepnudeNO.site Main Stylesheet
* Theme: Modern Teal
* Optimized for Norwegian language and responsive design
*/

:root {
  --primary: #00838F;
  --primary-light: #B2EBF2;
  --primary-dark: #006064;
  --secondary: #26A69A;
  --secondary-light: #B2DFDB;
  --accent: #FF6E40;
  --text-dark: #263238;
  --text-light: #607D8B;
  --text-white: #FFFFFF;
  --bg-white: #FFFFFF;
  --bg-light: #E0F7FA;
  --bg-gradient: linear-gradient(135deg, var(--primary), #1565C0);
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  background-color: #FAFAFA;
}

.site-container {
  overflow: hidden;
  position: relative;
}

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

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

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

ul {
  list-style-type: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  position: relative;
  text-align: center;
  padding-bottom: var(--space-sm);
}

h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--bg-gradient);
  border-radius: 2px;
}

h3 {
  font-size: 1.4rem;
  color: var(--primary);
}

p {
  margin-bottom: var(--space-md);
}

/* Button Styles */
.cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1rem;
  border: none;
  box-shadow: var(--shadow-md);
}

.primary {
  background: var(--bg-gradient);
  color: var(--text-white);
}

.primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--text-white);
}

.secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.secondary:hover {
  background-color: var(--text-white);
  color: var(--primary);
  transform: translateY(-3px);
}

.large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.cta-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin: var(--space-lg) 0;
}

.cta-center {
  text-align: center;
  margin: var(--space-lg) 0;
}

/* Header & Navigation */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  height: 70px;
}

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

.logo-svg {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--bg-gradient);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 20%);
  opacity: 0.6;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
  padding: var(--space-lg) 0;
}

.hero h1 {
  margin-bottom: var(--space-md);
  font-size: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-icon {
  width: 24px;
  height: 24px;
}

/* Benefits Section */
.benefits {
  padding: var(--space-xl) 5%;
  background-color: var(--bg-white);
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.hexagon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background-color: var(--primary-light);
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.benefit-card:hover .hexagon {
  transform: rotate(15deg);
  background-color: var(--secondary-light);
}

.benefit-icon {
  width: 40px;
  height: 40px;
}

/* How It Works Section */
.how-it-works {
  padding: var(--space-xl) 5%;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
  gap: var(--space-md);
}

.step-marker {
  background: var(--bg-gradient);
  color: var(--text-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.step-content {
  background-color: var(--bg-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  flex: 1;
  box-shadow: var(--shadow-sm);
}

/* Testimonials Section */
.testimonials {
  padding: var(--space-xl) 5%;
  background-color: var(--primary-dark);
  color: var(--text-white);
  text-align: center;
}

.testimonials h2:after {
  background: var(--text-white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  max-width: 1000px;
  margin: var(--space-lg) auto 0;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  text-align: left;
}

.stars {
  display: flex;
  margin-bottom: var(--space-sm);
}

.star {
  width: 20px;
  height: 20px;
  margin-right: 3px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.testimonial-author {
  text-align: right;
  font-weight: 500;
}

/* FAQ Section */
.faq {
  padding: var(--space-xl) 5%;
  background-color: var(--bg-white);
}

.faq-container {
  max-width: 800px;
  margin: var(--space-lg) auto 0;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.faq-question {
  padding: var(--space-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: bold;
  transition: var(--transition);
}

.faq-answer {
  padding: 0 var(--space-md) var(--space-md);
  display: none;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Final CTA Section */
.final-cta {
  background-color: var(--bg-light);
  padding: var(--space-xl) 5%;
  text-align: center;
}

.final-cta h2 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: var(--text-white);
  padding: var(--space-lg) 5% var(--space-md);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto var(--space-lg);
}

.footer-brand {
  flex-basis: 300px;
  margin-bottom: var(--space-md);
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-column {
  flex-basis: 180px;
  margin-bottom: var(--space-md);
}

.footer-column h4 {
  color: var(--text-white);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.footer-column ul li {
  margin-bottom: var(--space-xs);
}

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

.footer-column a:hover {
  color: var(--text-white);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content {
    padding: var(--space-md) 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    gap: var(--space-sm);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .step {
    flex-direction: column;
  }
  
  .step-marker {
    margin-bottom: var(--space-xs);
  }
  
  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 0 var(--space-sm);
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  section {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
}
