/*!
Theme Name: aieditor
Theme URI: http://underscores.me/
Author: w3specialists.com
Author URI: https://www.w3specialists.com
Description: A theme for aieditor
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: aieditor
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

aieditor is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

:root {
    --border-radius: 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: #0D0D0D;
    color: #fff;
    font-size: 20px;
    font-family: "Play", sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;    
}

i {
    font-size: 17px;
}

h1,
h2 {
        font-family: "Tektur", sans-serif;
    font-optical-sizing: auto;  
    font-style: normal;  
}

p {
    line-height: 1.4;
}

.contact-list {
    margin-top: 30px;
    list-style: none;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.contact-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list li img {
    height: 25px;
}

.contact-list a {
    color: #fff;
    text-decoration: none;
}

header,
section,
footer {
    width: 100%;
    padding: 0 clamp(20px,2.0833333333vw,9999px);
}

.wp-singular article{  
  max-width: 80vw;
  margin-inline: auto;
  width: 100%;
  padding: 100px clamp(20px,2.0833333333vw,9999px) 0;
}

.wp-singular .entry-content a {
    color: #fff;
}

.wp-singular article p:not(:last-child) {
    margin-bottom: 16px;
}

header {
    position: fixed;
    padding-block: 20px;
    background-color: #0d0d0d9b;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    display: flex;
    list-style: none;
    padding-left: 0;
    gap: 20px;
}

header nav ul a {
    text-decoration: none;
    color: #fff;
}
.mobile-btn {
    display: none;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.mobile-btn span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
}

.p-0 {
    padding: 0;
}

/* Hero */

#hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;    
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}


/* background layer */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/wp-content/uploads/2026/01/hero.png);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  opacity: 0;
  animation: heroBgFade 1.5s ease forwards;
  z-index: 0;
}

/* keep content above background */
#hero > * {
  position: relative;
  z-index: 1;
}

/* keyframes */
@keyframes heroBgFade {
  from {
    opacity: 0;
    transform: scale(1.05); /* slight zoom for elegance */
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__content {
    display: flex;
     justify-content: center;
    flex-direction: column;
    gap: 20px;
    max-width: 50vw;
}


.hero__content h1 {
    font-size: clamp(28px, 3.3vw, 900px);
}


.wp-singular article h1 {
    font-size: clamp(24px, 1.8vw, 900px);
    margin-bottom: 16px;
}

#logo {
    width: auto;
    height: 50px;    
}


section#contact,
section#pricing,
section#how-works,
section#specs {
    padding-block: 40px;
    max-width: 80vw;
    margin-inline: auto;
}

#pricing .link {
    display: inline-flex;
    margin-top: 20px;
}
section#video,
section#categories {
     padding-block: 40px;
}

section#pricing h2,
section#categories h2,
section#specs h2 {
    text-align: center;
}

.text-center {
    text-align: center;
}

.big {
    text-align: center;
    font-size: 26px;
    max-width: 50vw;
    margin-inline: auto;
    display: block;
    margin-top: 10px;
}
.specs-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.specs-list__item {
    background-color: #2c2e32;
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: .3s ease-in-out;
}

.specs-list__item:hover {
    transform: translateY(-20px);
}

/* Disable hover effect on touch/mobile devices */
@media (hover: none) and (pointer: coarse) {
  .specs-list__item:hover {
    transform: none;
  }
}


.specs-list__item .icon {
    height: 60px;
}

footer {
    text-align: center;
    padding-block: 20px;
}

#pricing ul {
    margin-top: 30px;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    padding-left: 0;
}
#how-works h2 {
    text-align: center;
}
#how-works p {
    margin-top: 25px;
    text-align: center;
}
#how-works ul {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    padding-left: 0;
    height: auto;
    gap: 30px;
}
#how-works li {
    display: flex;
    align-items: center;
    gap: 20px;
}
#how-works li {
    padding-inline: 25px;
    border-bottom: 1px solid #fff;
    margin-bottom: 15px;
    padding-bottom: 15px;
}


a.link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s ease-in-out;
}

a.link:hover  {  
    gap: 12px;  
}

.arrow-icon {
    display: inline-block;
    height: 18px;
    transition: .3s ease-in-out;
}

#pricing ul  li {
    padding: 40px;    
    text-align: center;
    border-radius: var(--border-radius);
    background-color: #2c2e32;
}

#pricing ul  li h3 {
    margin-bottom: 10px;
}

#pricing ul  li  i {
    margin-top: 10px;
    display: block;
}

  .slider-swiper {
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
  }

  .slider-swiper .swiper-wrapper {
    align-items: center;
  }

  .slider-swiper .swiper-slide {
    width: auto;               /* επιτρέπει slidesPerView: 'auto' */
    display: flex;
    align-items: center;
  }

  .slider-swiper .swiper-slide span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 10px 14px;        
    font-size: 18px;    
    line-height: 1;
    z-index: 5;
    font-weight: bold;
  }
   .slider-swiper {
    position: relative;
   }

    .slider-swiper .swiper-slide:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background: #000000;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 1) 100%);
    }

      .slider-swiper span {
        position: absolute;
        bottom: 15px;
        left: 15px;
      }
    .slider-swiper img {        
        width: 100%;
        border-radius: var(--border-radius);
        object-fit: cover;
    }

    .grid  {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

.how-works-icon,
.how-works-icon svg,
.how-works-icon animated-icons {
    
}

footer {
    border-top: 1px solid #fff;
    margin-top: 40px;
}

#footer-logo {
    width: auto;
    height: 50px;
    margin-bottom: 20px;
}

.specs-icon {
  display: flex;
  justify-content: center;
}



.footer-menu {
    display: flex;
    gap: 10px;
    list-style: none;
    padding-left: 0;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-menu a,
.copyrights a {
    color: #fff;
    text-decoration: none;
}

.btn {
    background-color: #fff;
    padding: 10px 16px;
    color: #000;
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
    font-size: 17px;
}


video {    
    width: 100%;
    border-radius: var(--border-radius);
}

/* #video video {
  transform: scale(0.5);
  will-change: transform;
} */


.svg-clipped-text {
    -webkit-clip-path: url(#svgTextPath);
    clip-path: url(#svgTextPath);
}


.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


body.show-menu nav {
    transform: translateX(0);
}

.close-icon {
    display: none;
    height: 30px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 15px;
}

#cn-accept-cookie{
    background-color: #2c2e32 !important;    
    border: 0 !important;
    color: #fff !important;
    padding: 6px !important;
    border-radius: 5px !important;
    cursor: pointer !important;
}

@media (max-width: 1400px) {
    section#pricing, section#how-works, section#specs {
        max-width: 90vw;
    }
    .specs-list {
    grid-template-columns: 1fr 1fr ;
    }
}


@media (max-width: 1024px) {

    #logo,
    #footer-logo {
        height: 35px;
    }

    body {
        font-size: 18px;
    }
    .close-icon {
        display: block;
    }
    #hero {
        min-height: 75vh;
    }
    #hero:after {
     content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
    top: 0;
    }
    #hero::before {
        background-position: center 80%;
    }
    .hero__content {
        max-width: 100vw;
    }
    section {
        padding-block: 20px !important;
    }
    #how-works ul {
        grid-template-columns: 1fr;
    }
    h2 {
        font-size: 24px;
    }
    .specs-list,
    #pricing ul,
    .grid {
        grid-template-columns: 1fr;
    }
    .big {
        max-width: 80vw;
        font-size: 20px;
        margin-top: 15px !important;
    }

    .mobile-btn {
        display: flex;
        
    }
    nav {        
        transform: translateX(110%);
        position: fixed;
        height: 100dvh;
        width: 50vw;
        top: 0;
        right: 0;
        background-color: #000;
        transition: .3s ease-in-out;
    }

     nav ul {
        padding-top: 30%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
     }
}

@media (max-width: 767px) {
    .slider-swiper img {
        aspect-ratio: 2/3;
    }
}