/* web/css/site-layout.css */
/* Front-end specific styles */

.swiper {
    padding: 20px 0;
}

.swiper-slide {
    transition: transform 0.3s ease;
}

.swiper-slide-active .card {
    transform: scale(1.1);
    z-index: 10;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card .h1 {
    margin-bottom: 15px;
}

.btn-primary:hover {
    background-color: #FF7043 !important;
    border-color: #FF7043 !important;
}

footer a:hover {
    color: #FF7043 !important;
}

/* Dropdown styling for navbar */
.navbar .dropdown-menu {
    min-width: 200px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}

.navbar .dropdown-item {
    color: #212529;
}

.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
    background-color: #4DB6AC;
    color: white;
}

.navbar .dropdown-toggle {
    cursor: pointer;
}

.navbar .dropdown-toggle span.pipe {
    padding: 0 0.25rem; /* Precise spacing around pipe */
}