/* Style for custom button with brand colour, font, and hover transition */
.btn-danza {
    background-color: #5E18EB;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-colour 0.3s ease;
    font-weight: 700;
    font-family: "Space Grotesk",sans-serif;
}
/* Hover effect for .btn-danza */
.btn-danza:hover {
    background-color: #5171FF;
    color: white;

}
/* Style for the quote container */
.quote{
    background-color: #5171FF;
    border-radius: 30px;
    color: white;
}
/* Centered container for the spinning logo */
.spinning-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
/* Style for spinning logo image */
.spinning-logo {
    width: 70%;
    height: auto;
    animation: rotate 10s linear infinite;
}

/* Hide spinning logo container on mobile screens */
@media (max-width: 576px) {
    .spinning-logo-container {
        display: none;
    }
}
/* Keyframes for rotating animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* Separator line style */
.separator{
    border-bottom:1px solid #DDD;
    height:1px;
}
/* Dark background section with white text */
.bg-dark{
    background-color: #0F1546 !important;
    color: white;
}
/* Ensures links in dark background retain white colour */
.bg-dark a,.bg-dark a:hover{
    color: white;
}
/* Style for images with a border */
.img-border{
    border: 3px solid #5171FF;
    border-radius: 10px;
}
/* Logo size and margin adjustments in navbar */
nav .logo{
    width: 170px !important;
    height: auto !important;
    margin-top: 10px;
}
/* Dropdown menu styling */
.dropdown-menu {
    width: auto;
    min-width: 0;
    padding: 0;
    background-color: #5171FF;
    font-size: 0.8rem;
}
/* Hover effect for dropdown menu items */
.dropdown-menu li a:hover {
    background-color: #29387F  !important;
}
/* Custom underline style for navigation links */
.nav-link {
    text-decoration: underline;
    text-decoration-color: #5171FF;  
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}
/* Background style for social section with SVG and colour */
.social-bg {
    background: url(../../media/2024/11/02/logo-bg-1730529460.svg) no-repeat !important;
    background-size: 200% !important;
    background-color: #0F1546 !important;
}

/* Language icon dimensions */
.lang{
    width: 20px;
    height: auto;
}
/* Responsive navbar background and padding for medium screens and below */
@media (max-width:991px){.navbar.bg-dark .navbar-collapse{background-color: #29387F !important;padding:3%;box-sizing:border-box;border-radius:3px}}