/* Base styles for DeepnudeNO.love */
:root {
    /* Hovedfarger inspirert av det norske flagget og nordlys */
    --primary: #1E40AF; /* Blå */
    --secondary: #EF4444; /* Rød */
    --accent: #10B981; /* Grønn */
    --dark: #0F172A; /* Mørk blå-svart */
    --light: #F9FAFB; /* Lys */
    --gray: #6B7280; /* Grå */
    --bg-grad-1: #0F172A; /* Mørk bakgrunn - topp */
    --bg-grad-2: #1E293B; /* Mørk bakgrunn - bunn */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Inter', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--light);
    background: linear-gradient(to bottom, var(--bg-grad-1), var(--bg-grad-2));
    min-height: 100vh;
}

.wrapper {
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: rgba(249, 250, 251, 0.8);
}

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

ul {
    list-style: none;
}

/* Northern Lights Animation */
.aurora-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: 0.4;
}

.aurora-1, .aurora-2, .aurora-3 {
    position: absolute;
    width: 300%;
    height: 100%;
    top: -20%;
    left: -100%;
    background: linear-gradient(90deg, 
        rgba(30, 64, 175, 0) 0%, 
        rgba(30, 64, 175, 0.3) 25%, 
        rgba(16, 185, 129, 0.3) 50%, 
        rgba(239, 68, 68, 0.3) 75%, 
        rgba(30, 64, 175, 0) 100%);
    filter: blur(60px);
    transform-origin: center;
    border-radius: 50%;
}

.aurora-1 {
    animation: aurora-movement 15s infinite linear;
}

.aurora-2 {
    top: 0;
    animation: aurora-movement 18s infinite linear reverse;
}

.aurora-3 {
    top: 30%;
    animation: aurora-movement 20s infinite linear;
}

@keyframes aurora-movement {
    0% {
        transform: rotate(0deg) translate(-10%, -10%);
    }
    50% {
        transform: rotate(180deg) translate(10%, 10%);
    }
    100% {
        transform: rotate(360deg) translate(-10%, -10%);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary {
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(30, 64, 175, 0.25);
}

.primary:hover {
    transform: translateY(-2px);
    background: #2563EB;
    box-shadow: 0 8px 15px rgba(30, 64, 175, 0.3);
    color: white;
}

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

.secondary:hover {
    background: rgba(30, 64, 175, 0.1);
    transform: translateY(-2px);
    color: white;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(30, 64, 175, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(30, 64, 175, 0);
    }
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Header and Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--light);
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

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

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

.nav-list a {
    position: relative;
    font-weight: 500;
    padding: 0.5rem 0;
}

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

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

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

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--light);
    margin: 6px 0;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 1.5rem;
    position: relative;
}

.text-highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(239, 68, 68, 0.3);
    z-index: -1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.hexagon {
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 10s infinite ease-in-out alternate;
    opacity: 0.6;
}

.hex-1 {
    top: 30%;
    right: 20%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    animation-delay: 0s;
}

.hex-2 {
    top: 20%;
    right: 30%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    animation-delay: 2s;
}

.hex-3 {
    top: 50%;
    right: 10%;
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(20px) rotate(-5deg);
    }
}

/* Section Styles */
.section-title {
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
    color: var(--light);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 100px 0;
}

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

.feature-item {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--primary);
    padding: 1rem;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

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

/* How It Works */
.how-it-works {
    padding: 100px 0;
    position: relative;
    background: rgba(15, 23, 42, 0.3);
}

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

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% + 3rem);
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.step:last-child::before {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    flex-grow: 1;
}

.step-icon {
    margin-top: 1.5rem;
    color: var(--secondary);
}

.step-icon svg {
    width: 30px;
    height: 30px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.testimonial {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.1);
}

.stars {
    color: #FCD34D;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.author {
    font-weight: 600;
    color: var(--light);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: rgba(15, 23, 42, 0.3);
}

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

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8) 0%, rgba(239, 68, 68, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.cta .btn {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

.keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.keywords span {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: white;
}

/* Footer */
.site-footer {
    padding: 80px 0 20px;
    background: var(--dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column h4 {
    color: var(--light);
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.125rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--gray);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-graphic {
        opacity: 0.4;
    }
    
    .hex-1, .hex-2, .hex-3 {
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.5s ease;
        z-index: 1000;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .step {
        flex-direction: column;
        gap: 1rem;
        padding-left: 30px;
    }
    
    .step::before {
        left: 15px;
        top: 50px;
        height: calc(100% - 50px + 3rem);
    }
    
    .step-number {
        position: absolute;
        top: 0;
        left: 0;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .step-content {
        padding-top: 10px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
