/* Stili DeepnudeLV.pw vietnei */

:root {
    /* Pamatkrāsas - zaļa palete */
    --primary: #2E7D32; /* Tumši zaļš */
    --secondary: #81C784; /* Gaiši zaļš */
    --accent: #1B5E20; /* Tumši zaļš */
    --dark: #263238; /* Tumši pelēks */
    --light: #F1F8E9; /* Gaiši zaļi pelēks */
    --white: #FFFFFF;
    --text: #212121;
    --text-light: #757575;
    --border: #E0E0E0;
    
    /* Fontu izmēri */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    
    /* Atstarpes */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Tipogrāfija */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    line-height: 1.3;
    margin-bottom: var(--space-md);
    font-weight: 700;
    color: var(--dark);
}

h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-xl);
    color: var(--primary);
}

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

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

.highlight::after {
    content: "";
    position: absolute;
    height: 30%;
    width: 100%;
    bottom: 5px;
    left: 0;
    background-color: rgba(46, 125, 50, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-md);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin: -0.5rem auto var(--space-xl);
    max-width: 600px;
}

/* Pogas */
.cta-button, .secondary-button {
    display: inline-block;
    padding: var(--space-sm) var(--space-xl);
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.25);
}

.cta-button:hover {
    background-color: var(--accent);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.35);
    transform: translateY(-3px);
    color: var(--white);
}

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

.secondary-button:hover {
    background-color: rgba(46, 125, 50, 0.05);
    color: var(--primary);
    transform: translateY(-3px);
}

.large {
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--text-lg);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: block;
}

.logo-svg {
    display: block;
}

/* Navigācija */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: var(--space-xl);
    margin-right: var(--space-xl);
}

.nav-list a {
    color: var(--text);
    font-weight: 500;
    position: relative;
}

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

.nav-list a:hover {
    color: var(--primary);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

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

/* Hero sekcija */
.hero-section {
    padding-top: 120px;
    padding-bottom: var(--space-3xl);
    background-color: var(--light);
    overflow: hidden;
    position: relative;
}

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

.hero-description {
    font-size: var(--text-lg);
    color: var(--text-light);
    margin-bottom: var(--space-xl);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
}

.hero-image {
    position: absolute;
    right: -100px;
    top: 100px;
    z-index: 1;
    opacity: 0.8;
}

/* Funkciju sekcija */
.features-section {
    padding: var(--space-3xl) 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    padding: var(--space-xl);
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--primary);
}

.feature-icon {
    margin: 0 auto var(--space-md);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Kā tas darbojas sekcija */
.how-it-works-section {
    padding: var(--space-3xl) 0;
    background-color: var(--light);
    position: relative;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: var(--space-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
    background-color: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: bold;
    flex-shrink: 0;
}

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

.step-content h3 {
    margin-bottom: var(--space-xs);
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.action-center {
    text-align: center;
    margin-top: var(--space-xl);
}

/* Demo sekcija */
.demo-section {
    padding: var(--space-3xl) 0;
    background-color: var(--white);
}

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

.demo-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.demo-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.demo-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: var(--text-sm);
    font-weight: 500;
    z-index: 2;
}

/* FAQ sekcija */
.faq-section {
    padding: var(--space-3xl) 0;
    background-color: var(--light);
}

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

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: var(--space-md);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.faq-question h3 {
    margin-bottom: 0;
    font-size: var(--text-lg);
    padding-right: var(--space-lg);
}

.faq-question::after {
    content: '+';
    font-size: var(--text-2xl);
    color: var(--primary);
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    max-height: 300px;
}

.faq-answer p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* CTA sekcija */
.cta-section {
    padding: var(--space-3xl) 0;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

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

.cta-section p {
    margin-bottom: var(--space-xl);
    opacity: 0.9;
    font-size: var(--text-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-button {
    background-color: var(--white);
    color: var(--primary);
    font-weight: 700;
}

.cta-section .cta-button:hover {
    background-color: var(--light);
    color: var(--primary);
}

/* Footer */
.footer {
    padding: var(--space-3xl) 0 var(--space-lg);
    background-color: var(--dark);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    width: 150px;
    height: 150px;
}

.footer-logo svg {
    width: 100%;
    height: 100%;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.footer h3 {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-nav ul, .footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

.footer a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    text-align: center;
}

.copyright {
    margin-bottom: var(--space-sm);
    opacity: 0.8;
    font-size: var(--text-sm);
}

.keywords {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-xs);
    margin-bottom: 0;
}

/* Adaptīvais dizains */
@media (max-width: 992px) {
    h1 {
        font-size: calc(var(--text-3xl) + 0.5rem);
    }
    
    h2 {
        font-size: var(--text-2xl);
    }
    
    .hero-image {
        opacity: 0.4;
        right: -150px;
    }
    
    .demo-comparison {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1010;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: var(--space-xl);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        margin-right: 0;
        margin-bottom: var(--space-xl);
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .cta-button, .hero-buttons .secondary-button {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto var(--space-xl);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* Animācijas */
@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

/* Overlay klase mobilajai izvēlnei */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.menu-overlay.active {
    display: block;
}
