/*
Theme Name: SkyClinics
Theme URI: https://skyclinics.com
Author: Jon
Version: 1.0.0
 */
 
:root {
    --primary: #6A00F8;
    --secondary: #14081E;
    --light: rgba(106, 0, 248, 0.08);
    --gradient: linear-gradient(180deg, rgba(106, 0, 248, 0.28) 0%, #6A00F8 100%);
    --playfair: "Playfair Display", serif;
    --inter: "Inter Tight", sans-serif;
}

body {
    margin: 15px;
}
 
h1, h2, h3, h4, h5, h6 {
    font-family: var(--inter);
    margin: 0;
    letter-spacing: -1px;
}

p, a, li, strong, bold {
    font-family: var(--inter);
    letter-spacing: 1%;
    margin: 0;
}

.btn {
    border-radius: 50px;
    font-size: 18px;
    padding: 15px 20px;
    text-decoration: none;
    transition: linear .1s;
}

.btn i {
    font-size: 15px;
    transform: rotate(225deg);
}

.btn-purple {
    background: var(--primary);
    color: #fff;
}
.btn-purple:hover {
    box-shadow: 0 2px 8px rgba(125, 115, 140, 0.4);
    transform: translateY(-2px);
}
.btn-white:hover {
    box-shadow: 0 2px 8px rgba(125, 115, 140, 0.15);
    transform: translateY(-2px);
}
.btn-purple i {
    color: #fff;
}

.btn-white {
    background: #fff;
    border: 1px solid rgba(125, 115, 140, 0.16);
    color: var(--secondary);
}

.btn-white i {
    color: var(--primary);
}

.label-pill {
    border: 1px solid rgba(106, 0, 248, 0.16);
    background: #fff;
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 12px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
}

.label-pill .dot {
    height: 5px;
    width: 5px;
    background: var(--primary);
    border-radius: 20px;
    box-shadow: 0 0 0 4px rgba(106, 0, 248, 0.12)
}

/*---------------------------------------
COMING SOON
---------------------------------------*/
.coming {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.coming h1 {
    font-size: 50px;
    margin: 30px 0;
}

.coming p {
    font-size: 18px;
}

.back {
    position: absolute;
    top: 0;
    right: 0;
}

/*---------------------------------------
HOME
---------------------------------------*/
.home-hero {
    padding: 60px;
    border-radius: 40px;
    background: rgba(111, 4, 254, .05);
    position: relative;
    overflow: hidden;
}
.home-hero .label-pill {
    margin-bottom: 30px;
}
.home-hero h1 {
    font-weight: 500;
    font-size: 54px;
}
.home-hero h3 {
    font-size: 54px;
    color: var(--primary);
    font-family: var(--playfair);
    font-style: italic;
    font-weight: 600;
}
.home-hero p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 30px;
}
.home-hero .hero-buttons {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

.hero-image-one {
    position: absolute;
    bottom: 0;
    right: -50px;
    z-index: 1;
    max-width: 800px;
}
.hero-image-two {
    position: absolute;
    top: 100px 0;
    right: -75px;
    max-width: 600px;
    border-radius: 16px;
}
.hero-doctors {
    margin-top: 50px;
    padding: 5px 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.28);
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.48);
    gap: 10px;
}
.hero-doc-images {
    display: flex;
    align-items: center;
}
.hero-doctors p {
    margin: 0;
}
.hero-doctors img {
    width: 100px;
}

/*---------------------------------------
MOBILE
---------------------------------------*/
@media(max-width:767px) {
    .coming h1 {
        font-size: 32px;
    }
    .coming {
        width: 100%;
    }
}