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

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}
@font-face {
    font-family: 'Kiona';
    src: url('/fonts/Kiona-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
/* HEADER */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.hero-subtitle {
    margin: 25px 0 30px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}
.logo b img {
    height: 300px; /* naujas dydis */
    width: auto;
    transition: 0.3s;
}
.logo img:hover {
    filter: brightness(1.2);
    transform: scale(1.1); /* truputį padidėja */
}

.menu a {
    color: white;
    text-decoration: none;
    margin-left: 40px;
    font-size: 22px;
    font-family: 'Kiona', sans-serif;
    font-weight: 500;
    opacity: 0.9;
    display: inline-block; /* <- svarbu, kad scale veiktų */
    transition: 0.3s transform, 0.3s opacity; /* sklandus efektas */
}

.menu a:hover {
    opacity: 1;
    transform: scale(1.2); /* padidėja hover metu */
}



.menu a:hover {
    opacity: 1;
}

/* HERO */
.hero {
    background-color: #0f0f0f; /* jei video failas dar nepakrautas */
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
}

.hero-content {
    position: absolute;
    bottom:150px;
    left: 60px;
    z-index: 5;
    color: white;
    max-width: 600px;
}

.hero-content h1 {
    font-family: 'Kiona', sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px; /* tarpo padidinimas */
}

h2, h3 {
    font-family: 'Kiona', sans-serif;
    font-weight: 400;
}
.hero-content h1 {
    display: flex;
    flex-direction: column; /* kiekvienas span eina į naują eilutę */
}

.hero-content h1 span {
    display: block;
    font-size: 40px;
    font-weight: 300;
    font-family: 'Kiona', sans-serif;
    
}

/* Pakopinis poslinkis */
.hero-content h1 span:nth-child(1) { margin-left: 0px; }
.hero-content h1 span:nth-child(2) { margin-left: 40px; }
.hero-content h1 span:nth-child(3) { margin-left: 80px; }


.btn {
    display: inline-block;
    padding: 20px 40px;        /* didesnis mygtukas */
    background: #777;           /* pilkas mygtukas */
    color: #fff;                /* baltas tekstas */
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-family: 'Kiona', sans-serif;
    transition: 0.3s;           /* sklandus perėjimas */
    margin-left: 55px;
}

.btn:hover {
    background: #999;           /* šiek tiek šviesesnis pilkas */
}
.about {
    min-height: 100vh;
    background: #0f0f0f;
    color: white;
    padding: 120px 60px;
    display: flex;
    align-items: center;
}


.about-content {
    max-width: 800px;
}

.about h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
	font-family: 'Kiona', sans-serif;
}


.about p {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.85;
}

.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: clamp(350px, 34vw, 800px);
    height: auto;
}

@media (min-width: 2000px) {
    .about-image img {
        width: clamp(500px, 40vw, 1200px);
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .about-image img {
        width: 45vw;
        max-width: 650px;
    }
}


.about-content {
    flex: 1.2;
}

@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
    }

    .about-image {
        display: none;
    }
}
.paketai {
    min-height: 100vh;
    background: #0f0f0f;
    color: white;
    padding: 120px 60px;
    display: flex;
    align-items: center;
}


.paketai-content {
    max-width: 800px;
}

.paketai h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
	font-family: 'Kiona', sans-serif;
}


.paketai p {
    font-family: 'Roboto Mono', monospace;
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.85;
}
.pricing {
    background: #0f0f0f;
    color: white;
    padding: 120px 60px;
}

.pricing-title {
    text-align: center;
    font-family: 'Kiona', sans-serif;
    font-size: 42px;
    margin-bottom: 80px;
}

.pricing-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px;
    margin: 0 auto 100px;
    max-width: 1200px;
}

.pricing-col {
  display: flex;
  flex-direction: column;
}

.pricing-head {
  min-height: 80px;          /* <- čia magija */
  display: flex;
  align-items: flex-end;    /* kad tekstas „nusileistų“ iki apačios */
  margin-bottom: 20px;
}

.pricing h3, .pricing h4 {
     text-align: left;
     font-size: 30px;
    font-family: 'Kiona', sans-serif;
    margin-bottom: 20px;
     margin-left: 100px;
}

.pricing ul {
    list-style: disc;
    padding-left: 20px;;
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.85;
}

.pricing-block {
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}


/* MOBILE */
.pricing-mobile {
    display: none;
}

@media (max-width: 768px) {
    .pricing-desktop {
        display: none;
    }

    .pricing-mobile {
        display: block;
    }

    details {
        border-bottom: 1px solid #333;
        padding: 20px 0;
    }

    h5 {
        font-family: 'Kiona', sans-serif;
        font-size: 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

  summary {
        font-family: 'Kiona', sans-serif;
        font-size: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    summary::after {
        content: "+";
        font-size: 26px;
        font-weight: 300;
        transition: 0.2s;
    }

    details[open] summary::after {
        content: "−"; /* tikras minus */
    }


    details li {
        font-size: 15px;
        margin-top: 15px;
        padding-left: 20px;
    }
    .pricing h1 {
        font-size: 15px;
    }   

}

@media (max-width: 1200px) and (min-width: 900px) {
    .pricing-row {
        gap: 40px;            /* mažesnis tarpas tarp stulpelių */
        max-width: 1000px;   /* suspaudžiam konteinerį */
    }

    .pricing h3, 
    .pricing h4 {
        font-size: 24px;
        margin-left: 0;
    }

    .pricing ul {
        font-size: 17px;
        line-height: 1.6;
    }
}

@media (max-width: 899px) and (min-width: 769px) {
    .pricing-row {
        grid-template-columns: 1fr 1fr; /* vis dar 2 stulpeliai */
        gap: 24px;
    }

    .pricing ul {
        font-size: 16px;
    }
}





html {
    scroll-behavior: smooth;
}
html, body {
    background-color: #0f0f0f; /* juodas fonas visam puslapiui */
    overscroll-behavior-y: contain; /* iOS overscroll neparodo backgroundo */
}
.projects {
    min-height: 100vh;
    background: #111;
    color: white;
    padding: 120px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.projects-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
	
}

.projects h2 {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 400;
	font-family: 'Kiona', sans-serif;
}

.video-wrapper {
    position: relative;
    height: 0;
    overflow: hidden;
    width: 100%;
}

.video-16x9 {
    padding-bottom: 56.25%;
}

.video-9x16 {
    padding-bottom: 100%;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}


.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.contact {
    min-height: 100vh;
    background: #0f0f0f;
    color: white;
    padding: 120px 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.contact h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
}

.contact p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.85;
}

.contact ul {
    list-style: none;
    margin-bottom: 40px;
}

.contact ul li {
    margin-bottom: 10px;
    font-size: 17px;
}

.contact ul a {
    color: #eaeaea;
    text-decoration: none;
}

.contact ul a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 20px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    resize: none;
}

.contact-form textarea {
    min-height: 150px;
}

.contact-form button.btn {
    width: fit-content;
    margin: 0 auto;
}


.footer {
    background: #0f0f0f;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.footer-logo {
    font-family: 'Kiona', sans-serif;
    font-size: 36px; /* mažesnis tekstas */
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block; /* <- svarbu, kad margin veiktų */
    margin-bottom: 25px; /* tarpas tarp KULIAR ir ikonų */
}

.footer-logo:hover {
    color: #fff; /* baltas užvedus */
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-socials a svg {
    fill: #aaa; /* pilki ikonėlės */
    transition: 0.3s;
}

.footer-socials a:hover svg {
    fill: #fff; /* baltėja hover metu */
    transform: scale(1.2);
}
.logo img {
    height: 300px;
    transition: 0.3s; /* sklandus efektas */
}

.logo img:hover {
    filter: brightness(1.2); /* pašviesina logo užvedus */
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 4px;
    background: white;
    border-radius: 2px;
}

/* Mobile */
@media (max-width: 768px) {
    
     .hero-content h1 span {
        font-size: 30px; /* sumažinam tekstą mobiliesiems */
        font-family: 'Kiona', sans-serif;
    }

    .btn {
        padding: 12px 24px; /* mažesnis mygtukas */
        font-size: 16px;    /* mažesnis tekstas mygtuke */
        font-family: 'Kiona', sans-serif;
    }

    .hero-content {
        left: 20px; /* truputį mažesnis kairysis tarpas */
        bottom: 100px; /* jei reikia, sumažinam tarpelį nuo apačios */
    }

     .header {
        padding: 20px 20px; /* mažesnis padding */
        justify-content: flex-start; /* logo prie kairės */
    }

    .logo {
       margin-left: -20px; /* logo kairėje, hamburger dešinėje */
    }
    


    .menu {
        position: fixed;
        inset: 0;
        background: #0f0f0f;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
        z-index: 999;
    }

    .menu.active {
        opacity: 1;
        pointer-events: auto;
    }
    .logo  img {
        height: 200px; /* mažesnis logo telefonui */
    }
    
}
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;

    display: none; /* JS jį įjungs */
    justify-content: center;
    align-items: center;

    background: rgba(255,255,255,0.15);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;

    font-size: 18px;
    z-index: 2000;
}
.hamburger {
    display: none; /* desktop */
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute;

        right: 40px;  /* ⬅️ nuo krašto (buvo 20) */
        top: 103px;    /* ⬆️ truputį aukščiau */

        width: 30px;
        height: 22px;

        flex-direction: column;
        justify-content: space-between;

        cursor: pointer;
        z-index: 2001;
    }

    .hamburger span {
        height: 4px;
        background: white;
        border-radius: 2px;
        display: block;
    }

 .menu {
    position: fixed;
    inset: 0;
    background: #0f0f0f;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    opacity: 0;            /* pradžioje nematomas */
    pointer-events: none;  /* negalima spausti */
    transition: opacity 0.4s ease; /* švelnus perėjimas */
    z-index: 999;
}

.menu.active {
    opacity: 1;            /* matomas */
    pointer-events: auto;  /* galima spausti */
}
}
@media (max-width: 768px) {
    #scrollToTopBtn {
        display: none !important;
    }
}



