/** THEME **/
:root {
    --primary: #7355FF;
    --primary-hover: #5B44E0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.nav-link:hover {
    color: var(--primary) !important;
}

/** COMPONENTS **/

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pricing-card {
    border: 1px solid #eee;
    border-radius: 12px;
    transition: transform 0.2s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.navbar-brand {
    font-weight: 500;
}

.nav-link {
    color: black;
}


footer {
    border-top: 1px solid #eee;
}

footer a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--primary-hover);
}

footer .text-muted {
    color: #6c757d !important;
}

footer ul {
    line-height: 32px;
}

.footer-menu {
    text-align: right;
}

.footer-menu h5 {
    border-bottom: 1px solid rgb(235, 235, 235);
    padding-bottom: 10px;
}


.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.step-card {
    border: 1px solid #eee;
    border-radius: 12px;
    transition: transform 0.2s;
    height: 100%;
}

.step-card > div {
    grid-template-columns: min-content auto;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/** COOKIE CONSENT BANNER **/
#js-cookie-banner {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 1000;
    display: none;
    width: 400px;
}

/** MAIL SENT ALERT **/
#js-mail-sent-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fade-out {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.coming-soon {
    position: relative;
    top: -50px;
    left: -50px;
    z-index: 10;
    height: 0;
    transform: rotate(335deg);
    font-size: 32px;
    font-weight: bold;
    text-align: left;
    color: maroon;
}