/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    margin-top: 80px;
}

section {
    padding-top: 70px;
    scroll-margin-top: 70px;
}

/* Navigation and Button Hover Effects */
.navbar-nav .nav-link:hover,
.btn.btn-dark:hover {
    color: #ffc107;
}

/* Back to Top Button */
#btn-back-to-top {
    display: none;
    position: fixed;
    bottom: 120px;
    right: 15px;
    z-index: 1000;
    font-size: 30px;
    padding: 8px 3px;
    display: flex;
}
#shadow-host-companion {
    display: none;
}
#loom-companion-mv3 {
    display: none;
}



/* Banner Styles */
#banner {
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: -2px 0 0 0;
    padding: 0;
}


.text-big {
    font-size: 1.4rem;
}

/* Common Styling for Buttons and Icons */
.fixed-btn {
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover Effects for Cards and Icons */
.feature-card,
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background-color: #ffffff;
}

.feature-card:hover,
.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon,
.card-hover:hover .logo-container {
    background-color: #343a40;
}

.feature-card:hover .icon-hover {
    color: #ffc107;
}

.card-hover:hover .logo-container img {
    transform: scale(1.1);
}

.card-hover:hover .card-title {
    color: #343a40;
}

/* Typography */
h2,
h3 {
    color: #343a40;
}

.card-title {
    font-weight: bold;
    color: #ffc107;
    font-size: 1.5em;
}

.card-text {
    font-size: 1.4em;
    text-align: justify;
}

/* Logo Container Styles */
.logo-container {
    height: 150px;
    background-color: #f8f9fa;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.logo-container img {
    max-width: 100px;
    transition: transform 0.3s ease;
}

/* Miscellaneous */
.warning-opacity {
    background-color: rgba(255, 193, 7, 0.8);
}