/*
Theme Name: Seo Jungle
Theme URI: https://app.seo-jungle.com/fr/dashboard
Author: Seo Jungle
Author URI: https://app.seo-jungle.com/fr/dashboard
Description: Theme site vitrine SEO Jungle
Requires at least: WordPress 5.0
Version: 1.0
*/

@font-face {
    font-family: "comix loud";
    src: url("fonts/Comix Loud.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "sofia-pro";
    src: url("fonts/Sofia Pro UltraLight Az.woff2") format("truetype");
    font-weight: 100;
}

@font-face {
    font-family: "sofia-pro";
    src: url("fonts/Sofia Pro ExtraLight Az.woff2") format("truetype");
    font-weight: 200;
}

@font-face {
    font-family: "sofia-pro";
    src: url("fonts/Sofia Pro Light Az.woff2") format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: "sofia-pro";
    src: url("fonts/Sofia Pro Regular Az.woff2") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "sofia-pro";
    src: url("fonts/Sofia Pro Medium Az.woff2") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "sofia-pro";
    src: url("fonts/Sofia Pro Semi Bold Az.woff2") format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: "sofia-pro";
    src: url("fonts/Sofia Pro Bold Az.woff2") format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: "sofia-pro";
    src: url("fonts/Sofia Pro Black Az.woff2") format("truetype");
    font-weight: 800;
}

@font-face {
    font-family: "sofia-pro";
    src: url("fonts/Sofia Pro Black Az.woff2") format("truetype");
    font-weight: 900;
}

:root {
    --main-bg-color: #151525;
    --second-bg-color: #26273B;
    --main-border-color: #FF6600;
    --second-border-color: #21E273;
    --accent-border-color: #57597E;
    --main-gradient-color: linear-gradient(0deg, #FF4E00, #FF6600, #FF9500);
    --second-gradient-color: linear-gradient(0deg, #C2FD70, #21E273);
}

* {
    margin: 0;
    padding: 0;
    font-family: "sofia-pro", sans-serif;
    font-weight: 400;
    color: white;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #1C1C31;
}

button {
    cursor: pointer !important;
    transition: 150ms;
    display: flex;
    align-items: center;
    gap: 12px;
}

button:active {
    transition: 150ms;
    transform: scale(0.95);
}

.iconContainer {
    position: relative;
    width: 12px;
}

.iconContainer i {
    position: absolute;
    top: -8px;
    right: 0;
    transition: all 0.2s ease-in;
}

button:hover .iconContainer i {
    position: absolute;
    top: -8px;
    right: -3px;
    transition: all 0.2s ease-in;
}

.icon-default {
    transition: opacity 0.3s, transform 0.3s;
}

.icon-hover:before {
    content: "";
    width: 0;
    height: 2px;
    display: block;
    background: #ffffff;
    position: absolute;
    left: -2px;
    top: 0;
    opacity: 0;
    transition: all 0.2s ease-in 0.1s;
}

button:hover .icon-hover:before {
    content: "";
    width: 14px;
    height: 2px;
    display: block;
    background: #ffffff;
    position: absolute;
    left: -2px;
    top: 0;
    opacity: 1;
}

.dropdown-container {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dropbtn {
    font-size: 15px;
    font-weight: 600;
}

a {
    text-decoration: none;
}

.dropdown-content-language {
    font-size: 14px;
}