@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --main_p: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    color: #1c1b1f
}

html {
    height: 100%;
    width: 100%;
}

.nav {
    background-color: #FFF;
    height: var(--main_p); 
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-shadow: 5px 10px 30px rgba(36, 34, 34, 0.1);
    position: fixed;
    z-index: 20;
}

.logo {
    padding: 0 var(--main_p);
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 21px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo a {
    text-decoration: none;
}

.nav .nav-items ul {
    list-style: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}


.nav .nav-items ul li a {
    padding: calc(var(--main_p) / 4) calc(var(--main_p)/ 1.5);
    padding-left: calc(var(--main_p)/ 1.5 + 28px);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-items ul li a:hover {
    background-color: #FFA62A;
    box-shadow: 5px 10px 30px rgba(36, 34, 34, 0.2);
    transition: all ease 0.2s;
}

.nav-items ul li a:hover i {
    animation: .6s 1  wiggleIcon;
    /* animation: .1s infinite  wiggleIcon; */
}

.nav-items ul li a i {
    position: absolute;
    font-size: 28px;
    transform: translate(-135%, 0);
}


.landing-body {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,.25));
}

.landing-header {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin: 0 var(--main_p) 0;
    top: -70px;
}

.landing-header h1 {
    font-size: 7rem;
    line-height: 120px;
    letter-spacing: -1.5px;
    text-shadow: 5px 10px 30px rgba(0, 0, 0, 0.1);
    margin-left: -.05em;

}

.landing-header p {
    opacity: 50%;
    font-size: 1.3rem;
    text-shadow: 5px 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 15px 0;
    margin-left: 1px;
}

.landing-header a {
    position: relative;
    top: 40px;
    text-decoration: none;
    color: #FFF;
    font-size: 23px;
    font-weight: 600;
    background-color: #FFA62A;
    padding: calc(var(--main_p) / 4) var(--main_p);
    border-radius: 40px;
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    margin-left: 1px;
}

.landing-header a:hover {
    background-color: #f0860e;
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.3);
    transition: all ease 0.2s;
}

.landing-img {
    position: relative;
    width: 100%; 
    height: 100%;
    z-index: -5;
}

.landing-img img{
    width: 100%;
    height: 100%;   
    object-fit: cover; 
}

.setup {
    width: 100%;
    height: 100vh;
    display: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFA62A;
    background: url("/static/assets/hex-bg.jpg");
    background-size: cover;
    background-position: center;
}


.form-box {
    width: 800px;
    height: 75vh;
    background-color: #FFF;
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 50px;
    font-size: 18px;
    position: relative;
    top: calc(var(--main_p)/2)
}

/* Input Fields */ 
.search-box input, .number-box input, .number-box select {
    width: 100%;
    background: #5e7fab2c;
    border: none;
    outline: none;
    border-radius: 40px;
    padding: 12px 10px;
    padding-left: 50px;
    margin: 5% 0;
}

:where(.search-box, .number-box) input:hover, .number-box select:hover {
    background: #5e7fab44;
}

.search-box i {
    position: absolute;
    padding: 12px 10px;
    padding-left: 60px;
    margin: 5% 0;
    transform: translate(-45%, -7.5%);
    font-size: 23px;
    color: #1c1b1fb4;
}

.check-box {
    margin-top: -10px;
}

.check-box input:checked {
    accent-color: #FFA62A;
    color: white;
}

/* Input Texts */ 
:where(.search-box, .number-box) input, :where(.search-box, .number-box) input::placeholder{
    color: #1c1b1fb4;
    font-size: 16px;
}

.number-box select, .number-box select option {
    color: #1c1b1fb4;
    font-size: 16px;
}

.number-box select {
    border-right: 16px solid transparent
}

/* Number Based Inputs */
.number-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.number-box input, .number-box select {
    width: 100%;
}

.number-box .hour i {
    position: absolute;
    padding: 12px 10px;
    padding-left: 60px;
    margin: 5% 0;
    transform: translate(-46.5%, -10%);
    font-size: 23px;
    color: #1c1b1fb4;
}
.number-box i {
    position: absolute;
    padding: 12px 10px;
    padding-left: 60px;
    margin: 5% 0;
    transform: translate(-46.5%, -10%);
    font-size: 23px;
    color: #1c1b1fb4;
}

/* Custom Time Function */ 
#inputTime {
    display: none;
}

.checked #inputTime {
    display:flex;
    color: #1c1b1fb4;
    font-size: 16px;
}

.checked .time-select{
    display: none;
}

.check-box {
    display: flex;
    justify-content: flex-end;
}

/* Start Button */
.form-button {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px;
    margin: 5% 0;
    margin-top: calc(5% + 10px);
}

.form-button button {
    padding: calc(var(--main_p) / 4) calc(var(--main_p) * 2);
    position: relative;
    color: #FFF;
    font-size: 23px;
    font-weight: 600;
    background-color: #FFA62A;
    border-radius: 40px;
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.form-button button:hover {
    background-color: #f0860e;
    box-shadow: 5px 10px 30px rgba(36, 34, 34, 0.2);
    transition: all ease 0.2s;
}

footer {
    width: 100%;
    height: 50px;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    color: #f0860e;
}

/* Animations */
@keyframes wiggleIcon {
    0%  { transform: translate(-135%, 0) rotate(0deg); }
    20% { transform: translate(-135%, 0) rotate(-12.5deg); }
    50% { transform: translate(-135%, 0) rotate(12.5deg); }
    80% { transform: translate(-135%, 0) rotate(-5deg); }
    100% { transform: translate(-135%, 0) rotate(0deg); }
}

/* Privacy Policy Page */
#privacyPolicy {
    background-color: #FFF;
    display: flex;
    position: relative;
    flex-direction: column;
    padding: 50px;
    padding-top: 70px;
}

.policyHeading {
    padding: 0 0 15px 0;
}

.policySection {
    padding: 15px 0 15px 0;
}

.policySection2 {
    padding: 10px 0 10px 25px;
}

.policySection3 {
    padding: 8px 0 8px 25px;
}

#privacyPolicy ul li {
    list-style: none;
    padding-left: 25px;
    padding-top: 10px;
}
