* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    -webkit-tap-highlight-color: transparent;
    font-family: 'Poppins', sans-serif;
}

*::-webkit-scrollbar {
    display: none;
}

*::selection {
    background-color: rgba(0, 0, 0, 0.2);
    color: pink;
}

/* For Firefox support (older versions) */
::-moz-selection {
    background-color: rgba(0, 0, 0, 0.2);
    color: pink;
}

body {
    width: 100vw;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #F6F4EF;
    padding-block: 20px;
    padding-block-end: 30px;
    padding-inline: 50px;
    gap: 10px;
    z-index: 100;
}

.logo {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: default;
    color: #c16543;
}

.logo img {
    width: 60px;
}

header .logo {
    transform: scale(1.5) translateX(-13%);
    transform-origin: center center;
}

header .bottomHeader {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.share img {
    width: 35px;
}

.share div {
    transition: 0.15s;
}

.share div:last-child a img {
    width: 54px;
}

.share div:hover {
    filter: invert() drop-shadow(2px 2px 2px black);
    scale: 1.1;
}

.mainUl {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainUl ul {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.mainUl ul a {
    color: #c16543;
    text-decoration: none;
    padding-inline: 5px;
    border: 2px solid transparent;
}

.mainUl ul a:hover {
    color: #fff;
    border-block: 2px solid rgb(114, 114, 114);
}

.mainUl ul a:active {
    color: grey;
    border-radius: 10px;
}

.mainUl ul a li {
    list-style: none;
    width: max-content;
    color: #c16543;
}

.touch {
    font-family: "Poppins", sans-serif;
    display: inline-block;
    text-decoration: none;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    background-color: #fff;
    border: 3px solid #000;

    /* The "Stylish" Offset Shadow */
    box-shadow: 6px 6px 0px #000;
    transition: all 0.2s ease;
    cursor: pointer;
}

.touch:hover {
    /* "Press" effect */
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px #000;
    background-color: #000;
    color: #fff;
}

.touch span {
    display: inline-block;
    transition: transform 0.2s ease;
}

.touch:hover span {
    transform: scale(1.1);
}

.touch a {
    color: inherit;
}

.mainHEADER {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    padding-block: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #c16543;
    background: #F6F4EF;
    z-index: 10;
}

.mainHEADER h2 {
    font-weight: 500;
}

.mainHEADER img {
    width: 50px;
}

.fb {
    position: relative;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-inline: 50px;
    padding-block-start: 35px;
    padding-block-end: 25px;
    padding-block-end: 30px;
    background: #0B1B23;
    color: #F6F4EF;
}

.footText {
    position: relative;
    width: max-content;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    overflow: hidden;
}

.footText .footJewar {
    font-size: clamp(6.5rem, 30vw, 13rem);
    font-weight: bold;
    font-family: Poppins;
    background: linear-gradient(135deg, #0B1B23, grey);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    position: relative;
}

.footText .footSpan {
    position: absolute;
    top: 13.5px;
    right: 0;
    font-size: clamp(1rem, 10vw, 1.61rem);
    background: linear-gradient(135deg, grey, white);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.map {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-block: 50px;
    padding-inline: 50px;
}

.map {
    overflow: hidden;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.map.active {
    clip-path: inset(0 0 0 0);
}

footer .map img {
    width: 75%;
}

footer .mapButton {
    rotate: 180deg;
    scale: 1.5;
    background: transparent;
    border: none;
    animation: lift 1s ease-in-out infinite;
    transition: 0.3s;
    cursor: pointer;
}

.mapButton.active {
    transform: rotate(180deg);
    animation: none;
}

@keyframes lift {
    0% {}

    25% {
        transform: translateY(10px);
    }

    75% {
        transform: translateY(10px);
    }

    100% {}
}

@media (max-width: 480px) {
    header {
        padding-inline: 0px;
        position: relative;
    }

    header .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        transform: scale(1);
        gap: 5px;
    }

    header .logo img {
        transform: scale(1.25);
    }

    header .bottomHeader {
        padding: 0;
        padding-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }

    header .bottomHeader .share {
        justify-content: space-between;
    }

    header .mainUl {
        position: absolute;
        width: 100vw;
        bottom: 20px;
    }

    header .mainUl ul {
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.6rem;
        gap: 2px;
    }

    a {
        color: white;
    }

    .touch {
        padding: 6px 10px;
        font-size: 0.9rem;
        font-weight: 800;
        text-transform: uppercase;
        color: #000;
        background-color: #fff;
        border: 3px solid #000;
        box-shadow: 6px 6px 0px #000;
        transition: all 0.2s ease;
        cursor: pointer;
        margin-top: -13.5px;
    }

    .touch:hover {
        transform: translate(2px, 2px);
        box-shadow: 0px 0px 0px #000;
        background-color: #000;
        color: #fff;
    }

    .touch span {
        display: inline-block;
        transition: transform 0.2s ease;
    }

    .touch:hover span {
        transform: scale(1.1);
    }

    footer {
        overflow: hidden;
    }

    footer .map {
        scale: 2.5;
    }

    .footText .footSpan {
        top: 30px;
    }
}

@keyframes headDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

header {
    transform: translateY(-100%);
    animation: headDown 0.35s ease-out forwards;
}

@keyframes logoPop {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

header .logo {
    opacity: 0;
    animation: logoPop 0.4s ease-out 0.25s forwards;
}

@keyframes navFadeUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

header .mainUl ul a {
    opacity: 0;
    animation: navFadeUp 0.45s ease-out 0.35s forwards;
}

@keyframes touchUp {
    0% {
        transform: translateY(25px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

header .touch {
    opacity: 0;
    animation: touchUp 0.45s ease-out 0.45s forwards;
}

@keyframes footUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

footer {
    transform: translateY(100%);
    animation: footUp 0.4s ease-out forwards;
}