/* Custom styles.css */

/* Global styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Search form styling */
.search-form {
    max-width: 650px;
    margin: 0 auto;
}

.search-input-group {
    border-radius: 50px;
    overflow: hidden;
}

.search-input-group .form-control,
.search-input-group .input-group-text {
    border-color: #e0e0e0;
}

.search-input-group .form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

.search-input-group .btn {
    border-radius: 0 50px 50px 0;
    font-weight: 500;
}

/* Card hover effect */
.hover-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Feature icons */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    margin-bottom: 1rem;
}

/* Footer styling */
footer a {
    text-decoration: none;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

footer ul li {
    margin-bottom: 0.5rem;
}

/* Media queries */
@media (max-width: 768px) {
    .search-input-group {
        border-radius: 25px;
    }

    .search-input-group .btn {
        border-radius: 0 25px 25px 0;
    }
}

.hover-scale {
    transition: transform 0.2s ease;
}
.hover-scale:hover {
    transform: scale(1.05);
}
/* Cookie-Banner Styling */
.cookie-banner {
    transition: all 0.3s ease;
    max-height: 100vh;
}

#acceptAllCookies:hover {
    background-color: #3a56d4 !important;
    box-shadow: 0 2px 15px rgba(67, 97, 238, 0.3);
}

#acceptEssentialCookies:hover {
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 991.98px) {
    .cookie-banner {
        padding-bottom: calc(env(safe-area-inset-bottom) + 1rem) !important;
    }
}