/*
Theme Name: SECURON
Version: 2.2
*/

html { scroll-behavior: smooth; }

/* RESET WP A CF7 */
.wpcf7 br, .wpcf7 p { display: none !important; }
.wpcf7-form-control-wrap { display: block !important; }

/* INPUTY - ZOŠTÍHLENÉ */
.securon-input {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    
    /* TU SME UBRALI (0,5cm fix) */
    padding: 10px 16px !important; 
    margin: 4px 0 10px 0 !important; 
    
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.securon-input:focus {
    border-color: #1e40af !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    outline: none !important;
}

textarea.securon-input { 
    min-height: 90px !important; /* Mierne zmenšená správa */
    resize: none !important; 
}

/* TLAČIDLO */
input.securon-submit {
    width: 100% !important;
    background-color: #1e40af !important;
    color: #ffffff !important;
    padding: 14px !important; /* Zoštíhlené tlačidlo */
    border-radius: 12px !important;
    border: none !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 23px !important;
    margin-bottom: 0 !important;
}

input.securon-submit:hover {
    background-color: #ffffff !important;
    color: #0a0f1a !important;
    transform: translateY(-2px) !important;
}

/* LABELS */
label {
    display: block !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8 !important;
    margin-bottom: 2px !important;
}

/* ĽAVÁ ČASŤ - VYROVNANIE */
#kontakt .space-y-6 > a, 
#kontakt .space-y-6 > div {
    margin-bottom: 20px !important;
    min-height: 90px;
    display: flex;
    align-items: center;
}

/* Plynulá zmena výšky a pozadia headra */
#main-header {
    transition: all 0.4s ease-in-out !important;
}

.header-scrolled {
    background-color: #0a0f1a !important; /* Naša brand dark farba */
}

/* odkazy v menu (nav-link) sedia na tej istej základnej línii */
.nav-link {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    line-height: 1 !important; /* Odstráni prebytočný priestor pod textom */
}