@import "./reset.css";

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    height: 100vh;
    width: 100%;
    background: #fcecd7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}

.content {
    margin-top: 100px;
    background: rgba(255, 255, 255, 0.75);
    padding: 40px 50px;
    border-radius: 18px;
    backdrop-filter: blur(15px);
    text-align: center;
}

.content h1 {
    font-size: clamp(1rem, 0.568rem + 2.16vw, 2.188rem);
    margin-bottom: 1rem;
}

.content h2 {
    font-size: clamp(1rem, 0.568rem + 2.16vw, 2.188rem);
    margin-bottom: 1rem;
}
  
.content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: clamp(1rem, 0.727rem + 1.36vw, 1.75rem)
}

.lang-switch {
    position: absolute;
    top: 25px;
    right: 25px;
}

.lang-btn {
    background: rgb(26, 22, 36);
    border: none;
    color: white;
    font-size: 1rem;
    margin: 0 5px;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.lang-btn:hover,
.lang-btn.active {
    background: rgb(133, 80, 80);
}

.soft-bubbles {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -2;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.75;
    animation: floatMove linear infinite alternate;
}


.c1 {
    width: 320px;
    height: 320px;
    background: #f29c94;
    left: 5%;
    top: 20%;
    animation-duration: 4s;
}

.c2 {
    width: 260px;
    height: 260px;
    background: #f1c48f;
    left: 25%;
    top: 55%;
    animation-duration: 5s;
}

.c3 {
    width: 180px;
    height: 180px;
    background: #efb38d;
    left: 55%;
    top: 15%;
    animation-duration: 8s;
}

.c4 {
    width: 420px;
    height: 420px;
    background: #e88f82;
    left: 45%;
    top: 60%;
    animation-duration: 7s;
}

.c5 {
    width: 300px;
    height: 300px;
    background: #edb37f;
    left: 75%;
    top: 70%;
    animation-duration: 6s;
}

.c6 {
    width: 140px;
    height: 140px;
    background: #f6a38e;
    left: 18%;
    top: 72%;
    animation-duration: 6s;
}

.c7 {
    width: 220px;
    height: 220px;
    background: #f2d08c;
    left: 35%;
    top: 30%;
    animation-duration: 5s;
}

.c8 {
    width: 120px;
    height: 120px;
    background: #efb992;
    left: 82%;
    top: 35%;
    animation-duration: 4s;
}


@keyframes floatMove {
    from {
        transform: translateY(0px) translateX(0px);
    }
    to {
        transform: translateY(-120px) translateX(80px);
    }
}







@media (max-width: 1024px) {

    body {
        overflow-y: auto;
    }

    .container {
        padding: 20px;
    }
    
    .lang-switch {
        position: relative;
        top: 15px;
        right: 15px;
    }


    .c1 {
        width: 240px;
        height: 240px;
        left: 1%;
        top: 20%;
    }
    
    .c2 {
        width: 210px;
        height: 210px;
        left: 5%;
        top: 55%;
    }
    
    .c3 {
        width: 120px;
        height: 120px;
    }
    
    .c4 {
        width: 320px;
        height: 320px;
        left: 25%;
        top: 60%;
    }
    
    .c5 {
        width: 250px;
        height: 250px;
        left: 65%;
        top: 70%;
    }
    
    .c6 {
        width: 110px;
        height: 110px;
    }
    
    .c7 {
        width: 200px;
        height: 200px;
    }
    
    .c8 {
        width: 100px;
        height: 100px;
    }
}




@media (max-width: 540px) {

    .bg-image {
        width: min(100%, 500px);
    }

    .c1 {
        width: 140px;
        height: 140px;
        left: 5%;
        top: 20%;
    }
    
    .c2 {
        width: 110px;
        height: 110px;
        left: 5%;
        top: 85%;
    }
    
    .c3 {
        width: 120px;
        height: 120px;
        top: 30%;
    }
    
    .c4 {
        width: 130px;
        height: 130px;
        left: 25%;
        top: 40%;
    }
    
    .c5 {
        width: 150px;
        height: 150px;
        left: 35%;
        top: 50%;
    }
    
    .c6 {
        width: 110px;
        height: 110px;
        top: 65%;
    }
    
    .c7 {
        width: 120px;
        height: 120px;
        top: 45%;
    }
    
    .c8 {
        width: 100px;
        height: 100px;
        left: 70%;
        top: 60%;
    }
}


