html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.zoom-card-img {
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

.zoom-card-img:hover {
    transform: scale(1.2);
}
.card-img-top {
    overflow: hidden;
}
.card {
    overflow: hidden;
}
.magnifier-container {
    position: relative;
    overflow: hidden;
}

.magnifier-image {
    width: 100%;
    display: block;
}

.magnifier-glass {
    position: absolute;
    border: 3px solid #ccc;
    border-radius: 50%;
    cursor: none;
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: none;
    z-index: 10;
}
.magnifier-container:hover .magnifier-image {
    transform: scale(1.5);
    transition: transform 0.4s ease-in-out;
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}
.about-section ul li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.about-section h2 {
    font-weight: 600;
}
html, body {
    height: 100%;
}
.language-dropdown {
    position: relative;
    z-index: 1;
}

.dropdown-menu img {
    margin-right: 8px;
}
.hover-scale:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

.card-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.text-shadow {
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.text-shadow-strong {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}