body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Oswald", sans-serif;
    overflow-y: auto;
    background-color: #fff;
    color: #333;
}

/* Header Styling */
.main-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 30px;
    background-color: #ffffff;
    /* Adjust background color */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 20px;
    /* Adjust spacing between links */
    margin-left: 20px;
    /* Moves the whole nav left */
    padding-left: 0;
    /* Remove extra space if necessary */
}


/* Logo Styling */
.logo-header img {
    height: 40px;
    /* Adjust size */
    width: auto;
}

/* Navbar List */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

/* Navbar Items */
.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding: 8px 12px;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #007bff;
    /* Highlight color */
}


.scroll-icon {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #ffffff;
    animation: bounce 2s infinite;
    z-index: 1000;
}

.scroll-icon.top {
    top: 20px;
}

.scroll-icon.bottom {
    bottom: 20px;
}

.scroll-icon.bottom i {
    transform: rotate(180deg);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -20px);
    }

    60% {
        transform: translate(-50%, -10px);
    }
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    transition: transform 1.0s ease-in-out;
    transform: translateY(100%);
    border-radius: 30px;
    margin-left: 10px;
    margin-right: 10px;
}

.slide.active {
    transform: translateY(0);
}

.slide-content {
    justify-content: center;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.0s ease-in-out, transform 1.0s ease-in-out;
}

.slide-content img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.slide-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.6;
}

a {
    color: #1a73e8;
    /* Blue color */
}

.slide-list {
    text-align: left;
    font-size: 1.2rem;
    margin: 0 auto;
    max-width: 600px;
    color: #ffffff;
    line-height: 1.6;
}

.slide-list li {
    margin-bottom: 1rem;
}

.slide-tip {
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 2rem;
    color: #ffffff;
}

#home {
    background: linear-gradient(135deg, #e3311c, #f77e6f);
}

#what-is-verum {
    background: #362e2d;
}

#how-it-works {
    background: linear-gradient(135deg, #e3311c, #f77e6f);
}

#installation {
    background: #362e2d;
}

#how-to-use {
    background: linear-gradient(135deg, #e3311c, #f77e6f);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide.active .slide-title,
.slide.active img {
    animation: fadeInUp 0.7s ease-out forwards;
}

.slide.active .slide-description {
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.slide.active .slide-list li {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide.active .slide-list li:nth-child(1) {
    animation-delay: 0.6s;
}

.slide.active .slide-list li:nth-child(2) {
    animation-delay: 0.8s;
}

.slide.active .slide-list li:nth-child(3) {
    animation-delay: 1.0s;
}

.slide.active .slide-list li:nth-child(4) {
    animation-delay: 1.2s;
}

.slide.active .slide-list li:nth-child(5) {
    animation-delay: 1.4s;
}

.slide:not(.active) .slide-title,
.slide:not(.active) .slide-description,
.slide:not(.active) .slide-list li {
    opacity: 0;
    transform: translateY(20px);
}


/* Ensure the last slide has proper padding */
#slide6 .slide-content {
    padding: 40px 20px;
    /* Add padding to the content */
    text-align: center;
    /* Center the text */
}

#slide6 .slide-title {
    font-size: 2rem;
    /* Increase the font size of the title */
    margin-bottom: 20px;
    /* Add space below the title */
    color: #333;
    /* Set a dark color for readability */
}

#slide6 .slide-list {
    list-style-position: inside;
    /* Adjust list items */
    padding: 0;
}

#slide6 .slide-list li {
    font-size: 1.1rem;
    /* Increase font size for readability */
    margin-bottom: 15px;
    /* Add space between each list item */
}

#slide6 .slide-list strong {
    font-weight: bold;
    color: #007bff;
    /* Use a distinct color for headings */
}

#slide6 .slide-list br {
    display: block;
    margin-bottom: 8px;
    /* Add space after line breaks */
}

/* Footer or Spacer Adjustments */
.spacer {
    padding: 20px 0;
    background-color: #f8f8f8;
    display: flex;
    align-items: end;
    justify-content: center;
}

footer {
    text-align: center;
    /* Center footer content */
    padding: 20px;
    font-size: 0.9rem;
    color: #333;
}

footer p {
    margin: 5px 0;
    /* Add space between the footer paragraphs */
}


.spacer-content {
    padding-left: 7%;
    padding-right: 7%;
    font-size: 1.5rem;
    display: flex;
}

.how-to-use {
    margin-right: 50px;
}

.spacer-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}


html {
    scroll-behavior: smooth;
}
