@font-face {
    font-family: 'VWHeadBold';
    src: url('../resources/VW-Head-Fonts/VWHeadBold.otf');
}
@font-face {
    font-family: 'VWHeadRegular';
    src: url('../resources/VW-Head-Fonts/VWHeadRegular.otf');
}
@font-face {
    font-family: 'VWTextBold';
    src: url('../resources/VW-Head-Fonts/VWTextBold.otf');
}
@font-face {
    font-family: 'VWTextLight';
    src: url('../resources/VW-Head-Fonts/VWTextLight.ttf');
}
@font-face {
    font-family: 'VWTextRegular';
    src: url('../resources/VW-Head-Fonts/VWTextRegular.otf');
}

/* Basic Styling */
body {
    font-family: 'VWHeadRegular', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

#container {
    padding: 20px;
    text-align: center;
}

.logo {
    max-width: 200px;
}

.qr-code {
    width: 150px;
    margin: 20px 0;
}

/* App download buttons */
.app-download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.download-button {
    width: 150px;
    height: auto;
    cursor: pointer;
}

/* Screenshot Carousel */
.screenshot-carousel {
    margin-top: 40px;
}

.carousel-container {
    width: 100%;
    overflow-x: auto; /* Enable horizontal scrolling */
    padding-top: 20px;
    padding-bottom: 20px;
}

.carousel-scroll {
    display: flex; /* Arrange items horizontally */
    gap: 20px; /* Space between images */
}

.screenshot {
    width: 250px; /* Set a default width for each image */
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.screenshot:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Make carousel responsive */
@media (max-width: 768px) {
    .screenshot {
        width: 200px; /* Adjust image size on smaller screens */
    }
}

@media (max-width: 480px) {
    .screenshot {
        width: 150px; /* Further reduce image size on very small screens */
    }
}
