/* --- TAVO LANDING PUSLAPIO STILIUS (public/style.css) --- */

:root {
    /* --- SPALVŲ PALETĖ --- */
    --deep-blue: #1D1A39;
    --deep-purple: #451952;
    --muted-purple: #662549;
    --rose-mauve: #AE445A;
    --sunset-orange: #F39F5A;
    --pale-pink: #E8BCB9;
    
    /* Teksto spalvos */
    --text-main: #ffffff;
    --border-radius: 24px;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, var(--deep-blue) 0%, var(--deep-purple) 50%, var(--muted-purple) 100%);
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    color: var(--text-main);
    min-height: 100vh;
    line-height: 1.6;
}

/* --- KONTEINERIS (Svarbiausia dalis pločio ribojimui) --- */
.container {
    max-width: 800px; /* Šitas skaičius neleidžia išsiplėsti per visą ekraną */
    margin: 0 auto;   /* Centruoja patį konteinerį */
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
}

/* --- HEADERIS --- */
header {
    text-align: center;
    padding: 40px 20px 20px 20px;
}

header h1 {
    font-size: 2.1em;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

header p {
    font-size: 1.2em;
    color: var(--pale-pink);
    margin: 0;
}

/* --- BENDROS KORTELĖS --- */
.content-box, .price-box {
    background: rgba(69, 25, 82, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: var(--border-radius);
    border: var(--glass-border);
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
    text-align: center;
}

/* --- HERO SEKCIJA (Sutvarkyta) --- */
.hero-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* PAKEITIMAS: Keičiame iš 'center' į 'flex-start' */
    align-items: flex-start; 
    min-height: 30vh;
    /* PAKEITIMAS: Tekstą lygiuojame į kairę */
    text-align: left; 
    width: 100%; /* Užtikriname, kad užimtų visą plotį */
}

.hero-box h2 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--text-main);
    /* Užtikriname, kad antraštė nebūtų centruota */
    width: 100%;
    text-align: center;
}

.hero-box h3 {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--text-main);
    /* Užtikriname, kad antraštė nebūtų centruota */
    width: 100%;
    text-align: left;
}

.hero-box p {
    font-size: 0.9em;
    width: 100%; /* Naudok 100%, kad pasiektų kraštus */
    text-align: left;
    line-height: 1.8;
    margin: 0 0 15px 0;
}

.hero-box ul {
    /* Nuimame visus standartinius tarpus */
    margin: 0;
    padding-left: 1.2rem; /* Pridedame šiek tiek vietos rutuliukams, kad jie neišlįstų iš ekrano */
    width: 100%;
}

.hero-box li {
    /* PAKEITIMAS: 'outside' dažniausiai atrodo geriau lygiuojant prie krašto */
    list-style-position: outside; 
    text-align: left;
    margin-bottom: 8px; /* Tarpas tarp punktų */
}

/* --- KAINOS KORTELĖ --- */
.price-box {
    border: 2px solid var(--sunset-orange);
    background: linear-gradient(135deg, rgba(69, 25, 82, 0.6), rgba(174, 68, 90, 0.2));
}

.price-box h2 {
    font-size: 2.6em;
    color: var(--sunset-orange);
    margin: 10px 0;
    font-weight: 800;
}

/* --- MYGTUKAS --- */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--sunset-orange), #e67e22);
    color: #fff;
    text-decoration: none;
    align-self: center;  /* Ši eilutė pastums tik mygtuką į centrą */
    padding: 18px 40px;
    border-radius: 16px;
    font-size: 1.1em;
    font-weight: 600;
    transition: transform 0.2s;
    margin-top: 20px;
}

.btn:hover {
    transform: translateY(-2px);
}

/* --- LEGAL INFO (Diskretiškas) --- */
.legal {
    text-align: center;
    font-size: 0.75em; /* Mažesnis šriftas */
    color: rgba(232, 188, 185, 0.5); /* Labiau permatoma/neryški spalva */
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Vos matoma linija */
}

.legal p {
    margin: 3px 0; /* Mažesni tarpai tarp eilučių */
}

.legal strong {
    color: rgba(232, 188, 185, 0.7); /* Šiek tiek ryškesni pavadinimai */
}

.legal a {
    color: var(--sunset-orange);
    text-decoration: none;
    margin: 0 10px;
    opacity: 0.8;
}
/* --- KAINOS IŠVAIZDA (SU PERBRAUKIMU) --- */

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.old-price {
    text-decoration: line-through; /* Svarbiausia dalis: perbraukia tekstą */
    text-decoration-thickness: 2px; /* Pastorina perbraukimo liniją */
    text-decoration-color: rgba(255, 255, 255, 0.8); /* Linijos spalva (ryškesnė nei tekstas) */
    
    color: rgba(255, 255, 255, 0.5); /* Pats skaičius blankesnis */
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: -5px; /* Pritraukia arčiau naujos kainos */
}

.new-price {
    font-size: 2.2em;
    color: var(--sunset-orange); /* Jūsų ryški oranžinė */
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(243, 159, 90, 0.3); /* Lengvas švytėjimas */
}

/*apie skiltis*/
.btn-outline {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: transparent !important;
    border: 2px solid var(--sunset-orange);
    color: var(--sunset-orange) !important;
    margin-top: 15px;
    padding: 12px 24px;
    text-decoration: none;
    line-height: 1.3;
}


.btn-subtext {
    font-size: 0.7em;
    opacity: 0.85;
}

/* Hover tik įrenginiams su pele */
@media (hover: hover) {
    .btn-outline:hover {
        background: var(--sunset-orange) !important;
        color: #fff !important;
        transform: translateY(-2px);
    }
}
.faq-item {
    text-align: left;
    margin-bottom: 20px;
}

/* Pridedame !important, kad užtikrintume veikimą */
.legal-footer {
    display: block !important;
    width: 100% !important;
    /* Dar skaidresnis fonas, kad būtų visai blankus */
    background-color: rgba(0, 0, 0, 0.1) !important; 
    padding: 35px 0 !important;
    margin-top: 60px !important;
    text-align: center !important;
    clear: both !important;
}

.legal-content {
    max-width: 1000px !important;
    margin: 0 auto !important;
}

/* Pagrindinės nuorodos - naudojame jūsų Sunset Orange */
.footer-links a {
    color: #F39F5A !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    /* PADAROME BLANKESNES (60% matomumo) */
    opacity: 0.6 !important;
    transition: opacity 0.3s ease !important;
}

.footer-links a:hover {
    /* Užvedus pelę tampa ryškios */
    opacity: 1 !important;
    text-decoration: none !important;
}

/* Teisinės nuorodos - dar blankesnės */
.footer-terms a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.8rem !important;
    opacity: 0.4 !important;
}

.footer-terms a:hover {
    opacity: 0.8 !important;
}

/* Brūkšneliai tarp nuorodų */
.legal-footer p {
    color: rgba(255, 255, 255, 0.15) !important;
    margin: 8px 0 !important;
}

/* Smulkus tekstas apačioje */
.footer-info {
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 0.75rem !important;
    line-height: 1.5 !important;
    padding: 0 20px !important;
}






/* Profesionalus paveikslėlių stilius */
.page-img {
    width: 100%;        /* Užims 100% tėvinio elemento (konteinerio) pločio */
    max-width: 100%;    /* NELEIS išlipti už tėvinio elemento ribų */
    height: auto;
    border-radius: var(--border-radius); /* Naudojame tavo jau sukurtą kintamąjį */
    margin: 20px 0;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Gilus šešėlis */
    border: var(--glass-border); /* Ta pati balta rėmelio linija kaip ir blokų */
    object-fit: cover;
}

/* Hero paveikslėlis (šiek tiek didesnis) */
.hero-img {
    max-height: 400px;
    object-position: center;
}

/* Nuotrauka šalia teksto (jei norėsi ateityje) */
.img-caption {
    font-size: 0.85rem;
    color: var(--pale-pink);
    text-align: center;
    margin-top: -10px;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.7;
}