/* Galvenie stili priekš aiclothesremoverLV.love */
:root {
    /* Krāsu palete - Latvijas iedvesmota */
    --primary: #9C27B0;      /* Purpura */
    --secondary: #673AB7;    /* Dziļi violeta */
    --accent: #8E24AA;       /* Tumši purpura */
    --highlight: #BA68C8;    /* Gaiši purpura */
    --text: #333333;         /* Tumši pelēks */
    --light-text: #666666;   /* Pelēks */
    --background: #F5F5F5;   /* Gandrīz balts */
    --white: #FFFFFF;
    --shadow: rgba(156, 39, 176, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

/* Galvene un navigācija */
header {
    background-color: var(--white);
    box-shadow: 0 4px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    display: block;
}

h1 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

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

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Galvenās sadaļas stils */
.banner {
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.05) 0%, rgba(103, 58, 183, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.banner-text {
    padding-right: 20px;
}

.banner h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 800;
}

.banner .subtitle {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 600;
}

.banner p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.action-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px var(--shadow);
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(156, 39, 176, 0.3);
    color: var(--white);
}

.banner-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

/* Iezīmju sadaļa */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.features h2, .how-to h2, .faq h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.features h2::after, .how-to h2::after, .faq h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

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

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--light-text);
}

/* Kā tas darbojas */
.how-to {
    padding: 80px 0;
    background-color: #f8f5fd;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.step-info h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-info p {
    color: var(--light-text);
}

.action-container {
    text-align: center;
    margin-top: 40px;
}

.action-container p {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 500;
}

/* BUJ */
.faq {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.faq-item p {
    color: var(--light-text);
}

/* Kājene */
footer {
    background-color: #33254a;
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo p {
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-nav h4, .footer-legal h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--highlight);
}

.footer-nav ul, .footer-legal ul {
    list-style: none;
}

.footer-nav li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-nav a, .footer-legal a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.footer-nav a:hover, .footer-legal a:hover {
    color: var(--highlight);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom p:first-child {
    margin-bottom: 5px;
}

/* Responsive dizains */
@media (max-width: 992px) {
    .banner .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .banner-text {
        padding-right: 0;
        order: 1;
    }
    
    .banner-image {
        order: 0;
        margin-bottom: 30px;
    }
    
    .features h2, .how-to h2, .faq h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.3rem;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: -1;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        z-index: 1;
    }
    
    .banner h2 {
        font-size: 2.2rem;
    }
    
    .banner .subtitle {
        font-size: 1.2rem;
    }
    
    .feature-box {
        padding: 25px 15px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 15px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
}
