/* Example CSS file */ 


#navbar-logo{
	width: 150px;
}

.custom-link{
	width: 100%;
	border: 2px solid #aaa;
	padding: 15px 20px 15px 20px;
	border-radius: 5px;
}

.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 25px;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.video-section {
    background: url('fallback-bild.jpg') no-repeat center center;
    background-size: cover;
}

/* Responsive Design */
@media (max-width: 768px) {    
    .overlay h1 {
        font-size: 24px;
    }

    .overlay p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .overlay h1 {
        font-size: 20px;
    }

    .overlay p {
        font-size: 14px;
    }
}

nav, nav ul {
  flex-direction: column;
}

@media (min-width: 576px) {
  nav, nav ul {
    flex-direction: row;
  }
}

.product-title h4 {
    display: inline;
    margin-right: 100px;
}

.product-title span {
    padding: 5px;
    font-size: 0.5rem;
    margin-left: 25px;
    border-radius: 10px;    
}

.msfs2020-badge {
    border: 1px solid #f4d134;    
    color: #f4d134;
}

.msfs2024-badge {
    border: 1px solid #ff8c00;
    color: #ff8c00;
}

.store-item{
    font-size: 18px !important;
}