@import url('https://fonts.cdnfonts.com/css/bitsumishi');

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

html, body {
    height: 100%;
    font-family: Montserrat, sans-serif;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* Yüklenme Konteyneri */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000; /* Arka plan rengi */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 2s ease, visibility 2s ease;
}

/* Yüklenme Ekranı Gizlendiğinde */
.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Görsel Animasyonları */
.loading-image {
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite, colorChange 2s ease-in-out infinite;
}

/* Dönme Animasyonu */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Renk Geçişi Animasyonu */
@keyframes colorChange {
    0% {
        filter: brightness(100%) saturate(0%) hue-rotate(0deg);
    }
    50% {
        filter: brightness(100%) saturate(100%) hue-rotate(270deg); /* Mor renk */
    }
    100% {
        filter: brightness(100%) saturate(0%) hue-rotate(0deg); /* Tekrar beyaz */
    }
}

/* Sayfa İçeriği */
#home {
    display: none; /* Başlangıçta gizlenir */
}


/* header */

#cookie-banner{
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #524de5;
    color: white;
    text-align: center;
    padding: 15px;
    display: none;
    z-index: 999;
}

#accept-cookies{
    margin-left: 15px;
    padding: 10px;
    background: #e4fdd5;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#decline-cookies{
    margin-left: 10px;
    padding: 10px;
    background: #433eb4;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

#home {
    height: 100vh;
}

.mor-arka {
    background-color: #5f5be1 !important;
}
.koyu-mor{
    background-color: #6969ef !important;
}
.yesil-arka {
    background-color: #e4fdd5 !important;
}
.beyaz-arka {
    background-color: #ffffff !important;
}
.duman-arka {
    background-color: rgba(248, 248, 248, 0.94) !important;
}

.text-white {
    color: #ffffff;
    !important;
}

.text-dark {
    color: #000000;
    !important;
}

.nav-item {
    margin-right: 50px;
}
#navbarNav li{
    list-style-type: none;
}

/* Hero Section */
.hero {
    color: white;
    margin-top: 30px;
}

.hero h1 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
    text-align: center;
}

.phone-img {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

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

.stats p {
    font-size: 16px;
    margin: 0;
}

.stats-number {
    font-family: 'Bitsumishi', sans-serif;
    font-size: 30px;
}

.divider {
    font-size: 20px;
    color: #fff;
}

/* Text Section */
.statsText p {
    font-size: 16px;
    margin-top: 10px;
}

/* Button Section */
.btnStore {
    background-color: white;
    padding: 12px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.spanBtn {
    font-size: 16px;
}

.btn-store {
    margin-top: 20px;
    text-align: center;
}

.btn-store p {
    font-weight: bolder;
    font-size: 17px;
    margin-bottom: 10px;
}

.btn-store button {
    background-color: white;
    font-size: 16px;
    padding: 10px 20px;
    margin: 10px;
    display: inline-flex;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .phone-img {
        max-width: 70%;
    }

    .btn-store button {
        font-size: 14px;
        padding: 10px 15px;
    }

    .stats {
        gap: 10px;
    }

    .stats-number {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.2rem;
    }

    .phone-img {
        max-width: 60%;
    }

    .stats {
        gap: 8px;
    }

    .stats-number {
        font-size: 20px;
    }

    .btn-store button {
        font-size: 12px;
        padding: 8px 10px;
    }
}

.header_flex {
    margin: 30px 0;
}

.features {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.feature {
    font-size: 14px;
    flex: 1;
    text-align: center;
    padding: 40px !important;
    box-sizing: border-box;
}

.feature h3,p {
    text-align: left;
}
.feature h3 {
    font-size: 20px;
    margin: 0 0 0 10px;
    padding-left: 0;
}
.feature p{
    padding: 0 ;
    margin: 30px 0 0 0;
    font-size: 15px;
}

.feature img {
    width: 60px;
    margin: 0;
}

@media (max-width: 992px) {

    #home {
        height: auto;
    }
    .features {
        margin-top: 30px;
    }

    .feature {
        flex: 0 0 100%; /* Genişliği %50 yap (yan yana 2 öğe) */
    }
    .feature h3,p {

    }
    .feature h3{
        font-size: 17px;
        padding-left: 0;
    }
    .feature p{
        padding: 0 ;
        margin: 10px 0 0 0;
        font-size: 13px;
    }

    .feature img {
        width: 30px;
        margin: 0;
    }
}

/* PAGE 2 */

.section-title {
    color: #7a7a7a;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 30px 0 10px 0;
}

.heading {
    font-size: 50px;
    font-weight: bold;
    color: #5f5be1;
    text-align: left;
}

.description {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 30px 0 10px 0;
}

.hrYesil {
    border: 0;
    height: 2px;
    background: #524de5;
    margin: 20px 0;
}

.circle-stats {
    position: relative;
    height: 100%;
}

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

.circle {
    position: relative;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin: -30px 0;
}

.circle span {
    display: block;
    font-size: 12px;
    font-weight: lighter;
}

.circle-big {
    width: 160px;
    height: 160px;
    left: 20%;
}

.circle-medium {
    width: 120px;
    height: 120px;
    left: 50%;
}

.circle-small {
    width: 110px;
    height: 110px;
    left: 20%;
}

.circle-tiny {
    width: 100px;
    height: 100px;
    left: 40%;
}

.circle-blue {
    background-color: #524de5;
}

.circle-green {
    background-color: #84e37b;
}

.circle-white {
    background-color: #fff;
    color: #333;
}

.circle-green2 {
    background-color: #afeaad;
    color: #ffffff;
}


img.img-fluid {
    height: 550px;
}

.phone-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-bg-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    background-color: #84e37b;
    border-radius: 50%;
    z-index: 0;
    opacity: 70%;
}

.phone-shadow {
    position: relative;
    z-index: 1;
}

.circle-b1 {
    font-size: 40px;
}
.circle-b2 {
    font-size: 35px;
}
.circle-b3 {
    font-size: 30px;
}
.circle-b4 {
    font-size: 30px;
}

@media (max-width: 992px) {

    .section-title {
        color: #7a7a7a;
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        margin: 30px 0 10px 0;
        padding: 0 15px;
    }

    .heading {
        font-size: 50px;
        font-weight: bold;
        color: #5f5be1;
        text-align: left;
        padding: 0 15px;
    }

    .description {
        font-size: 15px;
        color: #555;
        line-height: 1.8;
        margin: 30px 0 10px 0;
        padding: 0 15px;
    }

    .hrYesil {
        border: 0;
        height: 2px;
        background: #524de5;
        margin: 20px 0;
        padding: 0 15px;
    }

    .circle-b1 {
        font-size: 20px;
    }
    .circle-b2 {
        font-size: 18px;
    }
    .circle-b3 {
        font-size: 15px;
    }
    .circle-b4 {
        font-size: 15px;
    }

    .circle-stats {
        position: relative;
        height: 100%;
    }

    .CircleRow {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 30px;
    }

    .circle span {
        display: block;
        font-size: 9px;
        font-weight: lighter;
    }

    .circle{
        margin: -15px 0;
    }

    .circle-big {
        width: 100px;
        height: 100px;
        left: 0;
    }

    .circle-medium {
        width: 80px;
        height: 80px;
        left: 30%;
    }

    .circle-small {
        width: 70px;
        height: 70px;
        left: 10%;
    }

    .circle-tiny {
        width: 60px;
        height: 60px;
        left: 40%;
    }

    .circle-blue {
        background-color: #524de5;
    }

    .circle-green {
        background-color: #84e37b;
    }

    .circle-white {
        background-color: #fff;
        color: #333;
    }

    .circle-green2 {
        background-color: #afeaad;
        color: #ffffff;
    }

    img.img-fluid {
        height: 250px;
    }

    .phone-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .phone-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .phone-bg-circle {
        position: absolute;
        width: 250px;
        height: 250px;
        background-color: #84e37b;
        border-radius: 50%;
        z-index: 0;
        opacity: 70%;
    }

}


/* ÜRÜNLERİMİZ */

#products {
    color: #333;
    height: 100vh;
}

.section-title2 {
    font-size: 2.5rem;
    color: #524de5;
    font-weight: bold;
}

.section-description {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    padding-left: 0;
}

.roma-image {
    width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Ürün Kartları */

.product-title {
    font-weight: bold;
    font-size: 17px;
}

.product-description {
    font-size: 15px;
}

.product-card {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.product-screenshot {
    width: 350px;
    height: 196px; /* 16:9 oranı */
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 8px;
}

.detayButon {
    background-color: #5f5be1;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.detayButon:hover {
    background-color: #7d78ff;
    color: white;
}

.btn-secondary {
    background-color: #84e37b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none !important;
}

.btn-secondary:hover {
    background-color: #6cc668;
}

.hrPage2 {
    margin: 30px 0;
}

.cardContent {
    margin-top: 50px;
}

@media (max-width: 992px) {

    .section-title2 {
        padding: 0 15px;
    }

    .section-description {
       padding: 0 15px;
    }

    .roma-image {
        width: 400px;
        height: 250px;
        object-fit: cover;
        border-radius: 8px;
    }

    .products-img1 {
        padding: 0 25px;
    }

    .cards1 {
        padding: 0 25px;
        margin: 0;
    }

    .products-cont {
        margin: 0 0 10px 0;
    }
    #products {
        height: auto;
    }
}

/* İLETİŞİM */

#contact{
    height: 100vh;
}

.contact-form {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #524de5;
    outline: none;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background-color: #524de5;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #4038c3;
}

.contact-info {
    color: #fff;
}

.contact-info h3 {
    color: #84e37b;
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info p {

}

.contact-p {
    font-size: 16px;
    margin: 0 0 25px 5px;
    padding: 0;
}

.contact-div {
    display: flex;
}
.contact-div:hover{
    cursor: pointer;
    color: #84e37b;
    transition: 0.3s;
}
.contact-div:hover i{
    cursor: pointer;
    color: #84e37b;
    transition: 0.3s;
}

.contact-div i{
    color: white;
    font-size: 20px;
    margin-top: 3px;
}


#contact {
    position: relative;
    background-image: url('/img/contact-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 1;
    height: 100vh;
}



#contact .container {
    position: relative;
    z-index: 2;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.captcha-div {
    margin: 15px 0;
}

@media (max-width: 992px){
    #contact {
        height: auto;
        padding: 30px 15px;
    }

    .contact-info {
        color: #fff;
    }

    .contact-h3 {

    }

    .contact-info h3{
        margin: 5px 0;
        font-size: 25px;
        color: #84e37b;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-hr {
        margin: 10px 0;
    }
}

/* FOOTER */

.footer {
    background-color: #4440ad;
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
}

.footer h5 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 10px 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e4fdd5;
}

.footer-apps button {
    background-color: white;
    padding: 10px 15px;
    display: inline-flex;
    font-size: 15px;
}

.app-button {
    transition: transform 0.3s;
}

.app-button:hover {
    transform: scale(1.05);
}

.footer p {
    font-size: 14px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-logo {
        width: 120px;
    }

    .footer h5 {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-apps {
        flex-direction: column;
        align-items: center;
    }

    .app-button {
        width: 120px;
        margin-bottom: 10px;
    }
}

/* ÇEREZ PAGE */

.sliderCerez {
    width: 100%;
    height: 200px; /* Görsel yüksekliği */
    background-image: url('/img/cerez-slider.jpg'); /* Buraya slider görselinin yolu gelecek */
    background-size: cover;
    border-radius: 10px;
    box-shadow: 1px 10px 10px 5px rgba(0, 0, 0, 0.20);
}

.cerezbaslik {
    color: white;
}
.cerezbaslik h3 {
    font-family: Montserrat;
    font-size: 22px;
    margin: 30px 0;
}
.cerezbaslik p{
    font-size: 15px;
    margin: 15px 0;
}
.cerezbaslik h4 {
    text-align: left;
    font-weight: bolder;
    font-size: 18px;
    margin: 15px 0;
}

.cerezbaslik h5 {
    text-align: left;
    font-weight: bold;
    font-size: 15px;
    margin: 15px 0;
}

.cerezbaslik table {
    margin: 15px 0;
    width: 100%;
    max-width: 100%;
}

.cerezbaslik table td {
    text-align: left;
    width: auto;
}

.cerezbaslik ul>li{
    text-align: left;
    list-style-type: circle;
    margin: 15px 0;
}
.cereztable {
    border: 1px solid #ffffff;
    background-color: #4744b6;
}
.cereztable td,th {
    padding: 5px 10px;
    border: 1px solid #ffffff;
}
.cereztable a{
    width: auto;
}

.sliderCerez2 {
    width: 100%;
    height: 200px; /* Görsel yüksekliği */
    background-image: url('/img/kullanim-slider.jpg'); /* Buraya slider görselinin yolu gelecek */
    background-size: cover;
    border-radius: 10px;
    box-shadow: 1px 10px 10px 5px rgba(0, 0, 0, 0.20);
}

.sliderCerez3 {
    width: 100%;
    height: 200px; /* Görsel yüksekliği */
    background-image: url('/img/gizlilik-slider.jpg'); /* Buraya slider görselinin yolu gelecek */
    background-size: cover;
    border-radius: 10px;
    box-shadow: 1px 10px 10px 5px rgba(0, 0, 0, 0.20);
}

.errorpage {
    margin-top: 200px;
    height: 100vh;
}

.errorpage p{
    text-align: center;
    color: white;
    margin: 30px 0;
}

.errorpage h1{
    color: #58d099;
    font-weight: bolder;
    font-size: 100px;
    margin: 30px 0;
}

.errorImg {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.errorImg img{
    width: 400px;
    height: auto;
}

.errorBtn{
    margin: 50px 0;
}

.errorBtn a {
    padding: 20px 20px;
    background-color: #58d099;
    color: white;
    border: none;
    border-radius: 10px;
}

.errorBtn a:hover {
    background-color: #0f9e5e;
    transition: 0.3s;
    cursor: pointer;
}

@media (max-width: 768px) {
    .sliderCerez3 {
        width: 100%;
        height: 200px; /* Görsel yüksekliği */
        background-image: url('/img/gizlilik-slider-mobil.jpg'); /* Buraya slider görselinin yolu gelecek */
        background-size: cover;
        border-radius: 10px;
        box-shadow: 1px 10px 10px 5px rgba(0, 0, 0, 0.20);
    }
    .sliderCerez2 {
        width: 100%;
        height: 200px; /* Görsel yüksekliği */
        background-image: url('/img/kullanim-slider-mobil.jpg'); /* Buraya slider görselinin yolu gelecek */
        background-size: cover;
        border-radius: 10px;
        box-shadow: 1px 10px 10px 5px rgba(0, 0, 0, 0.20);
    }
    .sliderCerez {
        width: 100%;
        height: 200px; /* Görsel yüksekliği */
        background-image: url('/img/cerez-slider-mobil.jpg'); /* Buraya slider görselinin yolu gelecek */
        background-size: cover;
        border-radius: 10px;
        box-shadow: 1px 10px 10px 5px rgba(0, 0, 0, 0.20);
    }
    .cereztable {
        width: 100%;
    }
    .cerezbaslik table{
        max-width: 100%;
    }
    .cereztable a{
        width: 100%;
        font-size: 15px;
    }
}

.fullErrorPage{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.SolError h2{
    padding: 0;
    margin: 0;
    color: white;
    font-weight: bold;
}

.SolError h1{
    padding: 0;
    margin: 0;
    color: white;
    font-size: 70px;
}

.SolError h3{
    padding: 0;
    margin: 0;
    color: white;
    font-size: 40px;
    text-align: right;
    font-weight: lighter;
    font-style: italic;
}
.SolError p{
    color: white;
    margin: 30px 0;
    padding: 0;
    text-align: center;
}
/* SVG FIRE */

.fireText{
    z-index: 5;
    position: relative;
    font-size: 150px;
}

.mo-fire {
    height: auto;
    position: relative;
    z-index: 4;
    left: 140px;
    top: 160px;
}

#svg-view {
}

.mo-fire svg {
    width: 350px;
    height: auto;
    position:relative;
}
.flame {
    animation-name: flameDisappear;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    opacity: 0.5;
    transform-origin: 45% 45% 0;
}
.flame.one {
    animation-delay: 1s;
    animation-duration: 3s;
}
.flame.two{
    animation-duration: 5s;
    animation-delay: 1s;
}


.flame-main {
    animation-name: flameMovement;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.flame-main.one {
    animation-duration: 0.5s;
    animation-delay: 0.5s;
}
.flame-main.two {
    animation-duration: 0.6s;
    animation-delay: 0.5s;
}
.flame-main.three {
    animation-duration: 0.7s;
    animation-delay: 0.5s;
}
.flame-main.four {
    animation-duration: 0.8s;
    animation-delay: 0.5s;
}
.flame-main.five {
    animation-duration: 0.9s;
    animation-delay: 0.5s;
}
@keyframes flameMovement {
    50% {
        transform: scale(0.98,1.0) translate(5px, 5px) rotate(-1deg);
    }
}
@keyframes flameDisappear {
    0%{
        transform: translate(0) rotate(180deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-10px, -40px) rotate(180deg);
        opacity: 0;
    }
}