/* Kontakt Page Specific Styles */

/* Remove hover effects from non-link contact info (like Radno vrijeme) */
p.contact-info-value {
    cursor: default;
}

p.contact-info-value::before {
    display: none !important;
}

p.contact-info-value:hover .btn-letter-inner {
    transform: none !important;
}

p.contact-info-value .hover-reveal {
    display: none !important;
}

/* Remove orange background from contact links, keep only letter animation and text color change */
a.contact-info-value::before {
    display: none !important;
}

a.contact-info-value .hover-reveal {
    display: none !important;
}

/* Keep letter animation and orange text color on hover */
a.contact-info-value:hover {
    color: #ff4d00;
}

/* Deadline date input wrapper */
.deadline-date-wrapper {
    margin-top: 16px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
}

.deadline-date-wrapper.visible {
    opacity: 1;
    max-height: 100px;
    margin-top: 16px;
}

.deadline-date-input {
    width: 100%;
    max-width: 400px;
}
