/*GSUI navbar,section,cards,footer,buttons */
.gs-contact-hidden{
opacity:0;
max-height:0;
overflow:hidden;
transition:.4s;
}

.gs-reveal-contact:hover .gs-contact-hidden{
opacity:1;
max-height:100px;
}
/* GRID */
.gs-ekipa-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* KARTA */
.gs-ekipa-karta {
    width: 260px;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.gs-ekipa-karta:hover {
    transform: translateY(-8px) scale(1.02);
}

/* OBRAZ */
.gs-ekipa-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.gs-ekipa-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.gs-ekipa-karta:hover img {
    transform: scale(1.1);
}

/* INFO */
.gs-ekipa-info {
    padding: 20px;
    text-align: center;
}

.gs-ekipa-info h3 {
    color: #fff;
    margin-bottom: 8px;
}

.gs-ekipa-info p {
    color: #aaa;
    font-size: 14px;
}
/* ===== NAVBAR ===== */
.gs-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,0.05);

    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CONTAINER */
.gs-nav-container {
    max-width: 1300px;
    margin: auto;
    padding: 18px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO ===== */
.gs-logo a {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.18em;
    text-decoration: none;

    transition: 0.3s;
}

.gs-logo a:hover {
    color: #8a3dff;
    text-shadow: 0 0 10px rgba(138,61,255,0.6);
}

/* ===== MENU ===== */
.gs-nav {
    display: flex;
    gap: 35px;

    list-style: none;
    margin: 0;
    padding: 0;
}

/* LI */
.gs-nav li {
    position: relative;
}

/* LINKI */
.gs-nav a {
    color: #e0c7ff;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;

    position: relative;
    padding-bottom: 4px;

    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* UNDERLINE (Tesla style) */
.gs-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;

    width: 0%;
    height: 2px;

    background: linear-gradient(90deg, #8a3dff, #c084ff);
    transition: 0.3s;
}

/* HOVER */
.gs-nav a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(138,61,255,0.7);
    transform: translateY(-2px);
}

.gs-nav a:hover::after {
    width: 100%;
}

/* ACTIVE (WordPress) */
.gs-nav .current-menu-item a {
    color: #8a3dff;
    text-shadow: 0 0 8px rgba(138,61,255,0.7);
}

.gs-nav .current-menu-item a::after {
    width: 100%;
}

/* ===== SCROLL EFFECT ===== */
.gs-header.scrolled {
    background: rgba(0,0,0,0.9);
    box-shadow: 0 10px 40px rgba(0,0,0,0.9);
}

/* ===== CONTENT OFFSET ===== */
.gs-content {
    padding-top: 100px;
}