@font-face {
    font-family: "YekanBakh";
    src: url("../font/YekanBakhFaNum-Regular.woff") format("truetype");
    font-weight: 500;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "YekanBakh";
    display: grid;
    place-items: center;
    background-color: var(--cl-bg-primary);
}

a {
    text-decoration: none;
}
:root {
    --cl-bg-primary: #152131;
    --cl-primary: #d8c6bb;
    --cl-primary-light: #fff5ea;
    --cl-secondary: #36465c;
    --cl-secondary-darken: #34455b;
    --mobile-max-width: 486px;
    --fs-xs: 12px;
    --fs-sm: 14px;
    --fs-md: 16px;
    --fs-lg: 20px;
    --fs-xl: 26px;
}

.main-container {
    position: relative;
    width: var(--mobile-max-width) ;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
   margin-inline: auto;
}
@media (max-width: 868px) {
    .main-container {
        width: 100% !important; ;
    }
}

.default-video-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.default-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    z-index: 1;
}
.header-arrow {
    position: absolute;
    left: 20px;
    top: 40px;
    z-index: 2;
}
.header-arrow img {
    width: 25px;
}
.default-main-wrapper {
    max-width: 460px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    width: 100%;
    color: var(--cl-primary);
}

.default-cafe-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.default-logo img {
    width: 100px;
    height: auto;
    border-radius: 50%;
}

.default-cafe-name-fa {
    font-size: var(--fs-xl);
    font-weight: bold;
}

.default-separator {
    width: 80%;
    height: 2px;
    background: linear-gradient(to right,
    transparent,
    #f5e0c3 20%,
    #f5e0c3 80%,
    transparent);
    margin: 20px 0;
}

.default-description {
    max-width: 400px;
    line-height: 2;
    font-size: 16px;
    text-align: justify;
    font-weight: bold;
}

.default-features-container{
    width: 100%;
    margin-top: 4rem;
}
.default-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    width: 100%;
}

.default-feature-item img{
    width: 30px;
}

.default-feature-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.default-menu-button {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    background-color:var(--cl-primary-light);
    color:var(--cl-secondary);
    text-decoration: none;
    padding: 10px;
    font-size: var(--fs-md);
    border-radius: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.default-menu-button:hover {
    background-color: var(--cl-primary);
}
.tooltip {
    position: relative;
    cursor: pointer;
}

.tooltiptext {
    background-color: var(--cl-primary);
    visibility: hidden;
    width: 150px;
    color:var(--cl-secondary);
    text-align: center;
    border-radius: 10px;
    padding: 5px;
    position: absolute;
    bottom: 50px;
    right:0;
    z-index: 1;
    font-size: var(--fs-xs);
    font-weight: normal;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.tooltip .tooltiptext {
    opacity: 0;
    transition: opacity 0.3s;
}

@media (max-width:868px) {
    .default-logo img {
        width: 75px;
    }
    .header-arrow {
        left: 20px;
        top:25px;
    }
    .default-feature-item {
        width: 40px;
        height:40px;
    }
    .default-feature-item img {
        width:26px;
    }
    .default-features-container{
        margin-top: 6rem;
    }
    .tooltiptext {
        padding: 5px;
        bottom: 45px;
        right:0;
        font-size: var(--fs-xs);

    }
}

