/* Resetting Global Styles */
* {
    position: relative;
    margin: 0;
}

body {
    min-height: 100vh;
    font-family: "Roboto", sans-serif;
}

p {
    margin: 0 !important;
}

a {
    text-decoration: none !important;
}
/* Resetting Global Styles */

/* Styling Animations */

@keyframes alger_sphere1_animation {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes alger_sphere2_animation {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-10px, -10px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes alger_sphere3_animation {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, 40px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes larbatach_sphere1_animation {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, -40px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes larbatach_sphere2_animation {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, -20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes larbatach_sphere3_animation {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, 40px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Styling Animations */

/* Styling Main Section */
main {
    min-height: calc(100vh - 85px);
    padding: 25px;
    padding-bottom: 0px;
}

.main-container {
    max-width: 100%;
    height: calc(100vh - 110px);
    padding: 0;
    background-color: #faeaef;
    border-radius: 60px;
}

.header {
    padding: 40px 60px !important;
    display: flex;
    justify-content: space-between;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    justify-content: center;
}

.socials p {
    font-size: 22px;
    font-weight: bold;
    color: #661f34;
}

ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 7px;
    padding: 0 !important;
    margin: 0 !important;
}

.socials-mobile {
    display: none;
}

.clinique {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.main-content {
    min-height: calc(100vh - 275px);
}

.main-content .row {
    min-height: calc(100vh - 275px);
}

.clinique .content {
    display: flex;
    justify-content: center;
}

#alger .sphere1 {
    position: absolute;
    top: -60px;
    left: -60px;
    animation: alger_sphere1_animation linear;
    animation-duration: 10s;
    animation-delay: 0ms;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}

#alger .sphere2 {
    position: absolute;
    top: 230px;
    left: -90px;
    animation: alger_sphere2_animation linear;
    animation-duration: 10s;
    animation-delay: 0ms;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}

#alger .sphere3 {
    position: absolute;
    top: -30px;
    left: 230px;
    animation: alger_sphere3_animation linear;
    animation-duration: 10s;
    animation-delay: 0ms;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}

#larbatach .sphere1 {
    position: absolute;
    top: 160px;
    left: 220px;
    animation: alger_sphere1_animation linear;
    animation-duration: 10s;
    animation-delay: 0ms;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}

#larbatach .sphere2 {
    position: absolute;
    top: 130px;
    left: -80px;
    animation: alger_sphere2_animation linear;
    animation-duration: 10s;
    animation-delay: 0ms;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}

#larbatach .sphere3 {
    position: absolute;
    top: -60px;
    left: 10px;
    animation: alger_sphere3_animation linear;
    animation-duration: 10s;
    animation-delay: 0ms;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}

.clinique-image {
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.25);
    transition: all 500ms ease-out;
    cursor: pointer;
}

.clinique:has(p:hover) .clinique-image {
    transform: scale(1.05);
}

.clinique:has(.clinique-image:hover) .clinique-image {
    transform: scale(1.05);
}

.clinique:has(p:hover) p {
    color: #661f34;
}

.clinique:has(.clinique-image:hover) p {
    color: #661f34;
}

.clinique p {
    font-size: 29px;
    font-weight: bold;
    color: #292323;
    text-align: center;
    transition: all 500ms ease-out;
    cursor: pointer;
}


/* Styling Footer Section */
footer {
    height: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer p {
    font-size: 18px;
    font-weight: 500;
    color: #292323;
}

@media screen and (max-width: 700px) {
    .socials {
        display: none;
    }
    
    .socials-mobile {
        display: flex;
    }
}