body {
    background-color: black;
    color: white;
}

.home-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1030;
    background: linear-gradient(to bottom, rgb(65, 167, 167), black);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}
.home-button:hover {
    transform: scale(1.1);
    color: white;
}

#suggestions {
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid #444;
    border-radius: 10px;
    background: #222;
}
.suggestion-item {
    background-color: #222;
    color: white;
}
.suggestion-item:hover {
    background-color: teal;
    color: white;
    cursor: pointer;
}
.active-item {
    background-color: teal;
    color: white;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.modal-content {
    background-color: #1a1a1a;
    color: white;
    border: 1px solid #444;
}
.modal-header {
    border-bottom: 1px solid #444;
}
.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.contact-section .card {
    background: linear-gradient(to bottom, #6c757d, black);
    color: white;
    border: none;
}
.contact-section .card h4, .contact-section .card .small {
    color: rgba(255, 255, 255, 0.85) !important;
}
.contact-section .card .small a {
    color: rgba(255, 255, 255, 0.85) !important;
}
.contact-section .card hr {
    border-color: rgba(255, 255, 255, 0.5);
}

.fade-card {
    background: linear-gradient(to bottom, rgb(65, 167, 167), black);
    border: none;
    color: white;
    transition: opacity 1s ease-in-out, max-height 1s ease-in-out;
    opacity: 1;
    max-height: 500px;
    overflow: hidden;
}
.fade-card .card-title, .fade-card .card-text {
    color: white;
}

.btn-custom-design {
    background: linear-gradient(to bottom, rgb(65, 167, 167), black);
    color: white !important; 
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.btn-custom-design:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.3);
    color: white !important;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    50% { transform: scale(1.8); }
    100% { transform: scale(1); }
}
.zoom-icon {
    animation: zoomIn 1s ease-in-out 3;
    animation-delay: 0.5s;
}
#animated-heading span {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}
#tm {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.card-title-bold {
    font-weight: bold;
}
.hidden {
    opacity: 0;
    max-height: 0;
    pointer-events: none;
}
#tibornator {
    background-image: url('../assets/img/5e21928b-297e-4778-b334-077abe76d721-1.webp');
    background-size: cover;          
    background-position: center;   
    background-repeat: no-repeat;  
    min-height: 350px;              
}

