
/*
Theme Name: EmployeeVibes Theme
Theme URI: https://www.employeevibes.com
Author: OpenAI
Description: Lightweight custom WordPress theme for EmployeeVibes
Version: 1.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: employeevibes
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 999;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-menu a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

.hero {
    padding: 100px 0;
    background: linear-gradient(135deg,#0f172a,#1e3a8a);
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: auto auto 30px;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: #1e3a8a;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.section {
    padding: 80px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.card {
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    background: #fff;
}

.site-footer {
    background: #0f172a;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

@media(max-width:768px){
    .hero h1 {
        font-size: 34px;
    }

    .main-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/*Header*/
/* =========================
HEADER
========================= */

.ev-header {

    position: sticky;
    top: 0;
    z-index: 9999;

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(0,0,0,0.06);

}

.ev-header-wrapper {

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 82px;
}

.ev-logo img {

    max-height: 52px;
    width: auto;
}

.ev-nav {

    flex: 1;
    display: flex;
    justify-content: center;
}

.ev-menu {

    display: flex;
    align-items: center;
    gap: 34px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.ev-menu li {

    position: relative;
}

.ev-menu li a {

    text-decoration: none;
    color: #0f172a;

    font-size: 15px;
    font-weight: 600;

    transition: 0.3s ease;
}

.ev-menu li a:hover {

    color: #2563eb;
}

.ev-header-right {

    display: flex;
    align-items: center;
    gap: 16px;
}

.ev-login-btn {

    color: #0f172a;
    text-decoration: none;

    font-weight: 600;
}

.ev-demo-btn {

    background: linear-gradient(135deg,#2563eb,#1d4ed8);

    color: #fff;
    text-decoration: none;

    padding: 14px 22px;

    border-radius: 12px;

    font-weight: 700;

    transition: 0.3s ease;
}

.ev-demo-btn:hover {

    transform: translateY(-2px);
}

.ev-mobile-toggle {

    display: none;

    flex-direction: column;

    gap: 5px;

    background: none;
    border: none;

    cursor: pointer;
}

.ev-mobile-toggle span {

    width: 26px;
    height: 2px;

    background: #0f172a;
}

/* =========================
MOBILE
========================= */

@media(max-width: 991px){

    .ev-nav,
    .ev-header-right {

        display: none;
    }

    .ev-mobile-toggle {

        display: flex;
    }

    .ev-header-wrapper {

        min-height: 72px;
    }

    .ev-logo img {

        max-height: 44px;
    }

}

/*Home*/
/* ===================================
HERO SECTION
=================================== */

.ev-hero-v2 {

    position: relative;

    overflow: hidden;

    padding: 110px 0 70px;

    background:
    linear-gradient(
        90deg,
        #dff1ff 0%,
        #edf7ff 50%,
        #ffffff 100%
    );
}

/* TOP LEFT DOTTED SHAPE */

/* DOTTED CIRCLE */

.ev-dots {

    position: absolute;

    top: 90px;
    left: 40px;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background-image:
    radial-gradient(
        #6366f1 2px,
        transparent 2px
    );

    background-size: 16px 16px;

    opacity: .7;

    z-index: 1;
}

/* HERO GRID */

.ev-hero-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

    position: relative;

    z-index: 2;
}

/* LEFT CONTENT */

.ev-hero-left h1 {

    font-size: 82px;

    line-height: 0.98;

    letter-spacing: -2px;

    color: #08224d;

    margin-bottom: 34px;

    font-weight: 800;
}

.ev-hero-left p {

    font-size: 20px;

    line-height: 1.9;

    color: #0f172a;

    max-width: 560px;

    margin-bottom: 40px;

    font-weight: 500;
}

/* BUTTON */

.ev-btn-primary {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background:
    linear-gradient(
        135deg,
        #30b6f6,
        #1f8cf0
    );

    color: #fff;

    text-decoration: none;

    padding: 18px 34px;

    border-radius: 10px;

    font-size: 18px;

    font-weight: 700;

    box-shadow:
    0 12px 30px rgba(37,99,235,.22);

    transition: all .3s ease;
}

.ev-btn-primary:hover {

    transform: translateY(-3px);
}

/* RIGHT IMAGE */

.ev-hero-right {

    position: relative;

    display: flex;

    justify-content: center;
    align-items: center;
}

/* SLIDER */

.ev-hero-slider {

    position: relative;

    width: 100%;
    max-width: 760px;

    height: 720px;

    animation: evFloat 5s ease-in-out infinite;
}

.ev-slide {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    opacity: 0;

    visibility: hidden;

    transition:
    opacity .8s ease,
    transform .8s ease;

    transform: translateY(20px);
}

.ev-slide.active {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

/* FLOAT ANIMATION */

@keyframes evFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* MOBILE */

@media(max-width: 991px){

    .ev-hero-v2 {

        padding: 70px 0 60px;
    }

    .ev-dots {

        width: 70px;
        height: 70px;

        top: 100px;
        left: 20px;
    }

    .ev-hero-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .ev-hero-left h1 {

        font-size: 52px;
    }

    .ev-hero-left p {

        font-size: 17px;
    }

    .ev-hero-slider {

        height: 420px;
    }

}
/* ===================================
HERO IMAGE SLIDER
=================================== */

/* =========================
SLIDER
========================= */

.ev-hero-slider {

    position: relative;

    width: 100%;
    max-width: 650px;

    height: 650px;
}

.ev-slide {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    opacity: 0;

    transition: opacity .8s ease;

    visibility: hidden;
}

.ev-slide.active {

    opacity: 1;

    visibility: visible;
}

/* FLOAT */

.ev-hero-slider {

    animation: evFloat 5s ease-in-out infinite;
}

@keyframes evFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* MOBILE */

@media(max-width:991px){

    .ev-hero-slider {

        height: 420px;
    }

}