/**
 * Teniski klub Đurđevac - Custom Styles
 * Modern, responsive design with animations
 */

/* === ROOT VARIABLES === */
:root {
    --primary-color: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --secondary-color: #FF6F00;
    --secondary-dark: #E65100;
    --dark-color: #3C3D38;
    --light-color: #F8F9FA;
    --white: #FFFFFF;
    --gray: #6C757D;
    --gray-light: #E9ECEF;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --info: #17A2B8;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
}

/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

/* === NAVIGATION === */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(60, 61, 56, 0.97) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white) !important;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

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

/* === HERO SECTION === */
.hero-section {
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-header.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.3), rgba(27, 94, 32, 0.5));
}

.hero-logo {
    max-width: 150px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-section h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* === SECTIONS === */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    margin: 1rem 0 2rem 0;
    border-radius: 2px;
}

/* === INFO BOXES === */
.info-box {
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-box i {
    display: block;
}

.info-box h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* === NEWS CARDS === */
.news-card {
    transition: var(--transition);
    border: none;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-date {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.news-card .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.news-content {
    white-space: pre-line;
    line-height: 1.8;
}

/* === GALLERY === */
.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 3rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* === SPONSORS === */
.sponsors-section {
    background: #fff;
    padding: 60px 0 40px;
}

.sponsors-grid {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-size: 0; /* eliminira whitespace između inline-block elemenata */
    letter-spacing: 0;
    word-spacing: 0;
}

.sponsor-item {
    display: inline-block;
    vertical-align: middle;
    width: 20%;
    padding: 15px;
    font-size: 16px; /* reset font-size */
    letter-spacing: normal;
    word-spacing: normal;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.sponsor-link {
    text-decoration: none !important;
    display: block;
    width: 100%;
}

.sponsor-box {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 15px 10px;
    min-height: 100px;
    text-align: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease;
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.sponsor-box:hover {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
}

.sponsor-logo {
    max-width: 100%;
    max-height: 90px;
    width: auto;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    -moz-transition: opacity 0.3s ease, -moz-transform 0.3s ease;
    -o-transition: opacity 0.3s ease, -o-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.85;
}

.sponsor-box:hover .sponsor-logo {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

/* Responsive sponsors grid */
@media (max-width: 991px) {
    .sponsor-item {
        width: 33.333%;
    }
}

@media (max-width: 767px) {
    .sponsor-item {
        width: 50%;
    }
    .sponsors-section {
        padding: 40px 0 30px;
    }
}

@media (max-width: 400px) {
    .sponsor-item {
        width: 100%;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

/* === CONTACT === */
.contact-info a {
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Contact Icon Circles */
.contact-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e9ecef;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-icon-circle i {
    font-size: 1.5rem;
    color: #6c757d;
}

.contact-info-item:hover .contact-icon-circle {
    background-color: var(--primary-color);
}

.contact-info-item:hover .contact-icon-circle i {
    color: #fff;
}

.contact-info-item a:hover {
    color: var(--primary-color) !important;
}

/* Social Links - Društvene mreže */
.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a.social-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 65px !important;
    height: 65px !important;
    min-width: 65px !important;
    min-height: 65px !important;
    border-radius: 50% !important;
    background-color: #f0f0f0;
    color: #fff !important;
    font-size: 1.7rem !important;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    line-height: 1 !important;
}

.social-links a.social-link i {
    font-size: 1.7rem !important;
    color: #fff !important;
    line-height: 1;
}

.social-links a.social-link:hover {
    transform: translateY(-5px) scale(1.08);
    color: #fff !important;
}

/* Facebook */
.social-links a.social-link.social-link-facebook {
    background-color: rgba(66, 103, 178, 0.25) !important;
}
.social-links a.social-link.social-link-facebook:hover {
    background-color: #4267B2 !important;
    box-shadow: 0 6px 20px rgba(66, 103, 178, 0.45);
}

/* Instagram */
.social-links a.social-link.social-link-instagram {
    background-color: rgba(225, 48, 108, 0.25) !important;
}
.social-links a.social-link.social-link-instagram:hover {
    background-color: #E1306C !important;
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.45);
}

/* YouTube */
.social-links a.social-link.social-link-youtube {
    background-color: rgba(255, 0, 0, 0.25) !important;
}
.social-links a.social-link.social-link-youtube:hover {
    background-color: #FF0000 !important;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.45);
}

/* Full Width Map */
.map-fullwidth {
    width: 100%;
    line-height: 0;
}

.map-fullwidth iframe {
    width: 100%;
    height: 450px;
    display: block;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* === BUTTONS === */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* === FORMS === */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
}

/* === FOOTER === */
.footer {
    background: linear-gradient(180deg, #44453f 0%, #3C3D38 100%) !important;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
}

.footer a:hover {
    color: var(--primary-light) !important;
}

/* === SCROLL TO TOP BUTTON === */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .navbar-nav {
        background: rgba(60, 61, 56, 0.95);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        max-width: 100px;
    }
    
    .gallery-image-wrapper img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .scroll-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* === UTILITY CLASSES === */
.bg-light {
    background-color: #F8F9FA !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}


/* ========================================
   FOOTER V3 - Centriran layout, ista boja kao sticky header
   ======================================== */
.site-footer-v3 {
    background: rgba(60, 61, 56, 0.97);
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 3px solid var(--primary-color);
}

.footer-v3-content {
    padding: 50px 0 40px;
    text-align: center;
}

/* Kontakt informacije - centriran, VEĆI font i ikone */
.footer-v3-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 40px;
    margin-bottom: 30px;
}

.footer-v3-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d0d0d0;
    font-size: 1.05rem;
}

.footer-v3-contact-item i {
    color: #aaa;
    font-size: 1.2rem;
    min-width: 20px;
    text-align: center;
}

.footer-v3-contact-item a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-v3-contact-item a:hover {
    color: #ffffff;
}

.footer-v3-contact-item a:hover i {
    color: #ddd;
}

/* Social media ikone - hover u originalnoj boji */
.footer-v3-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-v3-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.12);
    text-decoration: none;
    transition: all 0.35s ease;
}

/* Facebook hover - plava */
.footer-v3-social-facebook:hover {
    background-color: #1877f2 !important;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

/* Instagram hover - gradijent/roza */
.footer-v3-social-instagram:hover {
    background-color: #E1306C !important;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

/* YouTube hover - crvena */
.footer-v3-social-youtube:hover {
    background-color: #ff0000 !important;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* Button Kontaktirajte nas */
.footer-v3-cta {
    margin-bottom: 30px;
}

.footer-v3-btn {
    display: inline-block;
    background-color: var(--primary-color, #2E7D32);
    color: #ffffff !important;
    border: 2px solid var(--primary-color, #2E7D32);
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-v3-btn:hover {
    background-color: transparent;
    color: var(--primary-color, #2E7D32) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

/* Footer Bottom - U ISTOM kontejneru, ista boja */
.footer-v3-bottom {
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-v3-copyright {
    color: #999;
    font-size: 0.85rem;
    margin: 0 0 8px 0;
}

.footer-v3-powered {
    color: #888;
    font-size: 0.82rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cyber-folks-link {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.cyber-folks-link:hover {
    opacity: 0.8;
}

.cyber-folks-logo {
    height: 18px;
    width: auto;
    vertical-align: middle;
}

/* Footer V3 Responsive */
@media (max-width: 767.98px) {
    .footer-v3-content {
        padding: 35px 0 25px;
    }
    .footer-v3-contact {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .footer-v3-contact-item {
        font-size: 0.95rem;
    }
    .footer-v3-contact-item i {
        font-size: 1.1rem;
    }
    .footer-v3-social {
        gap: 12px;
    }
    .footer-v3-social-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}



/* =====================================================
   VIJESTI STRANICA & VIŠE BUTTON & PAGINACIJA
   ===================================================== */

/* Hero sekcija za podstranice (manji hero) */
.hero-section-small {
    min-height: 40vh !important;
    height: 40vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-subpage-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    margin: 0;
}

@media (max-width: 575.98px) {
    .hero-subpage-title {
        font-size: 2rem;
    }
}

/* VIŠE button na naslovnici */
.btn-vise-news {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
    background-color: #fff;
    border: 2px solid #333;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-vise-news i {
    font-size: 1.2rem;
}
.btn-vise-news:hover {
    background-color: #2e7d32;
    border-color: #2e7d32;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

/* Paginacija - frontend vijesti.php */
.pagination-news {
    gap: 4px;
}
.pagination-news .page-item .page-link {
    border: 1px solid #dee2e6;
    color: #333;
    padding: 10px 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
}
.pagination-news .page-item .page-link:hover {
    background-color: #2e7d32;
    border-color: #2e7d32;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.25);
}
.pagination-news .page-item.active .page-link {
    background-color: #2e7d32;
    border-color: #2e7d32;
    color: #fff;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}
.pagination-news .page-item.disabled .page-link {
    color: #adb5bd;
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

/* Responzivnost za paginaciju */
@media (max-width: 575.98px) {
    .pagination-news .page-item .page-link {
        padding: 8px 12px;
        font-size: 0.875rem;
        min-width: 38px;
    }
    .btn-vise-news {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}



/* === SECTION DIVIDER (vijesti -> sponzori) === */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    max-width: 900px;
    margin: 0 auto;
}

.section-divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color) 40%, var(--primary-color) 60%, transparent);
    border-radius: 2px;
    opacity: 0.5;
}

.section-divider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(46, 125, 50, 0.15);
    transition: var(--transition);
}

.section-divider:hover .section-divider-icon {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.3);
    transform: scale(1.1);
}

.section-divider:hover .section-divider-line {
    opacity: 0.8;
}

@media (max-width: 575.98px) {
    .section-divider {
        padding: 0 20px;
    }
    .section-divider-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 12px;
    }
}


/* ============================================
   HONEYPOT - Anti-spam zaštita
   Skriva honeypot polje od korisnika
   ============================================ */
.hp-field {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}
