:root {
    --color1: #3498db;
    --color2: #ebf5fb;
    --color3: #d6eaf8;
    --color4: #aed6f1;
    --color5: #85c1e9;
    --color6: #5dade2;
    --color7: #2e86c1;
    --color8: #2874a6;
    --color9: #21618c;
    --color10: #1b4f72;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

h1, h2, h3, h4 {
    text-shadow: -1.5px 1.5px 2px rgba(0, 0, 0, 0.7);
}

html {
    scroll-behavior: smooth;
}

.bg-image {
    position: fixed;
    top: 0;
    right: 0;
    width: 20vw;
    height: 100vh;
    z-index: -999;
}

.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gradient1 {
    position: fixed;
    top: 0;
    right: 5vw;
    width: 15vw;
    height: 100%;
    background: linear-gradient(to right, white, transparent);
    z-index: 0;
}

.fade-image.active {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .bg-image {
        display: none;
    }
    
    .gradient1 {
        display: none;
    }
}