body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    height: 100%;
	scroll-behavior: smooth;
}

.navbar-brand {
	font-size: 30px;
}

p {
	font-size: 16px;
}

.hero, .parallax {
    position: relative;
    color: black;
}

.hero::before, .parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.hero > div, .parallax > div {
    position: relative;
    z-index: 2;
}

.hero {
    background: url('../img/hero.jpg') center center/cover no-repeat;
    height: 100vh;
}

.parallax {
    background: url('../img/parallax.jpg') center center/cover no-repeat fixed;
    height: 500px;
}

.carousel-item {
    background-size: 20px 20px;
    background-color: #e7f0fd; /* Base pastel color */
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    padding: 20px;
    border-radius: 30px;
}

.carousel-control-prev, 
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
	margin-left: 5px;
	margin-right: 5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 20px 20px;
}

.carousel-control-prev:hover, 
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-indicators li{
	    background-color: rgba(0, 0, 0, 0.2);
}

.carousel-indicators .active{
	    background-color: rgba(0, 0, 0, 0.8);
}

#preise-section {
    background-color: #f8f9fa; /* Light gray background */
    padding: 60px 0; /* Top and bottom padding */
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: none; /* Start hidden */
    justify-content: center;
    align-items: center;
    font-size: 24px;
    z-index: 2000;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 0; /* Ensure no padding interferes with centering */
    text-align: center;
    display: flex; /* Ensure flexbox properties are applied */
}

#tag-sphere-section {
	background-color: #f9f9f9; /* Light background */
	padding: 40px 0;
}
#tagCanvas {
	display: block;
	margin: 20px auto;
	border: 1px solid #ddd; /* Light border */
	border-radius: 10px;
	background-color: #ffffff; /* White canvas background */
}
#tags li a {
	font-size: 16px;
	text-decoration: none;
	color: #007bff; /* Default link color */
	transition: color 0.3s;
}
#tags li a:hover {
	color: #0056b3; /* Darker blue on hover */
}
	
/* Center the icon */
#back-to-top i {
    margin: 0; /* Remove any default margin */
    line-height: 1; /* Reset line-height for the icon */
}