* {
    background-color: #f3dfa7;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    opacity: 1;
    transition: opacity 0.5s ease;
}

body.fade-out{
    opacity: 0;
}

a {
    text-decoration: none;
}

.sniglet-regular {
  font-family: "Sniglet", system-ui;
  font-weight: 400;
  font-style: normal;
}

.sniglet-extrabold {
  font-family: "Sniglet", system-ui;
  font-weight: 800;
  font-style: normal;
}


header {
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    height: 70px;
    margin-left: 10px;
}

.logo {
    height: 80px;
    width: 70px;
}

.welcome-container {
    height: 85px;
    margin-right: 10px;
    margin-top: 20px;
}

.welcome {
    width: 200px;
}

main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}


.text-first {
    background-color: #c3c793;
    height: 280px;
    width: 300px;
    padding: 20px;
    border-radius: 15px;
    color: #885937;
    font-size: 19px;
    font-family: "Sniglet", system-ui;
    margin-left: 15px;
    margin-top: 20px;
}

#btn-tap {
    height: 50px;
    width: 300px;
    margin-top: 15px;
    margin-left: 15px;
    border: none;
    background-color: #b07c57;
    border-radius: 20px;
    font-family: "Sniglet", system-ui;
    color: #f9eae0;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.5s;
}

#btn-tap:hover {
    background-color: #c6916c;
    animation: float 0.6s ease infinite alternate;
}

@keyframes float {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-5px);
    }
}





#img-base {
    height: 550px;
    width: 400px;
}
 
#img-base { z-index: 1; }    


/* second page */

.see-first-text {
    font-family: "Sniglet", system-ui;
    font-size: 30px;
    margin-top: 100px;
    margin-bottom: 10px;
    color: #885d3e;
}

.sub-see {
    font-family: "Sniglet", system-ui;
    font-size: 15px;
    color: #885d3e;
    margin-left: 20px;
    margin-bottom: 80px;
}

.second-page {
    display: flex;
    flex-direction: column;
}

.circles {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: center;
}

.circle img{
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    padding: 10px;
    background-color: #c3c793;
    box-shadow: 0.3s ease;
    box-shadow: 3px 3px 3px rgba(75, 69, 69, 0.3);
}

.circle img:hover{
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.circle:hover {
    transform: scale(1.1);
}

.circle p{
    margin-top: 10px;
    font-family: "Sniglet", system-ui;
    color: #be7e53;
}


.asu-title{
    text-align: center;
    font-family: "Sniglet", system-ui;
    font-weight: 500;
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: 50px;
    color: #885d3e;
}
.asu-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.asu-text-top {
    height: 355px;
    width: 330px;
    text-align: center;
    background-color: #fae8e0;
    padding: 10px;
    font-family: "Sniglet", system-ui;
    border-radius: 10px;
    line-height: 28px;
    box-shadow: 5px 5px 5px rgba(58, 58, 58, 0.5);
}

.assumption {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}


.assump-sentence, .true-false {
    display: none;
}

.assump-sentence.show, .true-false.show {
    display: block;
}


.asum-form {
    display: flex;
    gap: 10px;
    align-items: center;
}
.star {
    height: 100px;
    width: 100px;
}

.asu-right {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.asu-btn, .assump-sentence {
    margin-top: 20px;
    border: none;
    background-color: #f1c36e;
    padding: 10px;
    border-radius: 10px;
    font-family: "Sniglet", system-ui;
    color: #885d3e;
    font-size: 20px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.asu-btn:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.assump-sentence {
    font-size: 17px;
    color: black;
}

.flower {
    background-color: #f1c36e;
    height: 20px;
    width: 20px;   
}

.asu-down {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    justify-content: center ;
}

/* .true-false {
    background-color: #fae8e0;
    cursor: pointer;
    border-radius: 10px;
    padding: 5px;
    align-items: center;
    justify-content: center;
    margin-top: 17px;
} */

.true-btn , .false-btn {
    border: none;
    background-color: #fae8e0;
    height: 30px;
    width: 20px;
    color: #885d3e;
    border-radius: 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.true-btn:hover {
    background-color: #f1ccb4;
    transform: scale(1.1)
}

.false-btn:hover {
    background-color: #f1ccb4;
    transform: scale(1.1)
}

.true-btn.selected, .false-btn.selected {
    background-color: #f1ccb4;
}

.middle {
    margin-top: 70px;
    margin-bottom: 25px;
}

.prof-asum-btn {
    height: 40px;
    width: 50px;
    border: none;
    background-color: #f1c36e;
    border-radius: 15px;
    color: #885d3e;
    font-family: "Sniglet", system-ui;
    font-size: 15px;
    box-shadow: 3px 3px 3px rgba(10, 10, 10, 0.3);
    cursor: pointer;
    transition: all 0.5s ease;
   /* display: none; */
    
}

.prof-asum-btn:hover {
    transform: scale(1.1);
}

.asu-input {
    height: 60px;
    width: 1060px;
    padding: 10px;
    font-family: "Sniglet", system-ui;
    border: 2px solid #c3c793;
    border-radius: 10px;
    box-shadow: 3px 3px 3px rgba(10, 10, 10, 0.3);
    font-size: 15px;
    resize: none;
    overflow: hidden;
}

.asu-input:hover {
    transform: scaleY(1.1);
}

.asu-input:focus {
    border: 2px solid #c3c793;
    outline: none;
}


/* radio */
.radio-btn input{
    display: none;
}

.radio-btn span:hover {
    background-color: #f1ccb4;
    color: white;
}

.radio-btn span {
    font-size: 20px;
    padding: 6px;
    cursor: pointer;
    background-color: #fae8e0;
    border-radius: 10px;
    transition: all 0.5s ease;
    color: #885d3e;
}





.radio-btn input:checked + span {
    background-color: #f1ccb4;
}

.true-false {
    margin-top: 13px;
}

.coi-title {
    text-align: center;
    font-family: "Sniglet", system-ui;
    font-weight: 500;
    font-size: 40px;
    margin-top: 40px;
    margin-bottom: 70px;
    color: #885d3e;
}

.co-text {
    width: 365px;
    /* height: 180px; */
    padding: 10px;
    /* border: 1.5px solid #c3c793; */
    border-radius: 15px;
    font-family:  "Sniglet", system-ui;
    line-height: 25px;
    font-size: 20px;
}

.nails {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nail-img1 {
    height: 150px;
    width: 177px;
    object-fit: cover;
    border: 10px solid #c3c793;
    border-radius: 15px;
    transition: all 0.5s ease;
}

.nail-img2 {
    height: 150px;
    width: 177px;
    object-fit: cover;
    border: 10px solid #c3c793;
    border-radius: 15px;
    transition: all 0.5s ease;
}

.nail-img1:hover {
    transform: scale(1.1);
}

.nail-img2:hover {
    transform: scale(1.1);
}

.co-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.co-below {
    display: flex;
    flex-direction: row;
    margin-top: 80px;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
}

.facts-title {
    text-align: center;
    font-family: "Sniglet", system-ui;
    font-weight: 500;
    font-size: 40px;
    margin-top: 40px;
    margin-bottom: 70px;
    color: #885d3e;
}

.fact-top {
    font-family: "Sniglet", system-ui;
    margin: 0px 0px 30px 30px;
}

.facts {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 20px;
}


.fact-btn {
    display: block;
    margin-bottom: 10px;
    height: 55px;
    width: 80px;
    border-radius: 50%;
    font-family: "Sniglet", system-ui;
    font-size: 18px;
    background-color: #f1ccb4;
    border: none;
    color: #fe6f6f;
    box-shadow: 5px 5px 5px rgba(182, 139, 139, 0.5);
    transition: all 0.5s ease;
    cursor: pointer;
}

.fact-btn:hover {
    transform: scale(1.1);
}

.card {
    display: inline-flex;
    gap: 20px;
    border: 2px solid #f0b4ab;
    border-radius: 15px;
    margin: 0px 20px;
    padding: 10px;
    transition: all 0.5s ease;
    align-items: center;
    
}

.fact-text{
    font-family: "Sniglet", system-ui;
    line-height: 25px;
    color: #74380e;
    
}

.card:hover {
    box-shadow: 5px 5px 5px rgba(182, 139, 139, 0.5);
}

.syd {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #f1c36e;
    box-shadow: 5px 5px 5px rgba(10, 10, 10, 0.3);
}

.wallpaper {
    height: 200px;
    width: 130px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #f1c36e;
    box-shadow: 5px 5px 5px rgba(10, 10, 10, 0.3);
}

.first {
    height: 200px;
    width: 150px;
    /* object-fit: cover; */
    border-radius: 15px;
    border: 2px solid #f1c36e;
    box-shadow: 5px 5px 5px rgba(10, 10, 10, 0.3);
}

.coding {
    height: 150p;
    width: 150px;
    border-radius: 15px;
    border: 2px solid #f1c36e;
    box-shadow: 5px 5px 5px rgba(10, 10, 10, 0.3);
}

.croche, .msg {
    height: 120p;
    width: 120px;
    border-radius: 15px;
    border: 2px solid #f1c36e;
    box-shadow: 5px 5px 5px rgba(10, 10, 10, 0.3);
}

.white {
    height: 150p;
    width: 150px;
    border-radius: 15px;
    border: 2px solid #f1c36e;
    box-shadow: 5px 5px 5px rgba(10, 10, 10, 0.3);
}

.card-exep{
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid #f0b4ab;
    border-radius: 15px;
    margin: 0px 20px;
    padding: 10px;
    transition: all 0.5s ease;
    /* align-items: center; */
}

.card-exep:hover{
    box-shadow: 5px 5px 5px rgba(182, 139, 139, 0.5);
}

.mugs {
    display: flex;
    flex-direction: row;
    gap: 9px;
}

.mug {
    height: 150px;
    width: 120px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #f1c36e;
    transition: all 0.5 ease;
    cursor: pointer;
}

.mug:hover {
    box-shadow: 5px 5px 5px rgba(10, 10, 10, 0.3);
}

.fav{
    height: 150px;
    width: 100px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #f1c36e;
    box-shadow: 5px 5px 5px rgba(10, 10, 10, 0.3);
}

.sleep {
    height: 150px;
    width: 120px;
    object-fit: cover;
}

.card,
.card-exep{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.8s ease,
        opacity 0.5s ease,
        padding 0.5s ease,
        margin 0.5s ease;
}

.card.show,
.card-exep.show{
    max-height: 2000px; /* عدد بزرگ که همه محتوا جا بشه */
    opacity: 1;
    margin-top: 5px;
}

.fact-btn{
    cursor: pointer;
}

.fact-down {
    margin: 50px 20px;
    font-family: "Sniglet", system-ui;
    display: flex;
    justify-content: center;
    font-size: 20px;
}

.gap {
    color: #f3dfa7;
    margin: 20px;
}

.q-title {
    text-align: center;
    font-family: "Sniglet", system-ui;
    font-weight: 500;
    font-size: 40px;
    margin-top: 40px;
    margin-bottom: 70px;
    color: #885d3e;
}

.q-top {
    display: flex;
    justify-content: center;
    align-items: center;
}
.q-top-text {
    background-color: #c3c793;
    font-family: "Sniglet", system-ui;
    padding: 20px;
    border-radius: 15px;
    width: 710px;
    align-items: center;
    font-size: 20px;
    color: #885d3e;
    box-shadow: 5px 5px 5px rgba(10, 10, 10, 0.3);
}


.questions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 70px;
}


#prof-answer{
    margin-top: 40px;
    width: 700px;
}

.q-form{
    margin-bottom: 70px;
    /* margin-left: 27px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
/* hubab */
.speech-bubble{
    margin-top: 50px;
    width:280px;
    min-height:90px;
    padding:10px;
    border-radius:28px;
    position:relative;
    cursor:pointer;
    /* background:#f1c36e; */
    box-shadow:
        0 10px 30px rgba(0,0,0,0.12),
        inset 0 1px 2px rgba(255,255,255,0.7);

    transition:all .35s ease;
}

.speech-bubble:hover{
    transform:translateY(-4px);
}

.speech-bubble::after{
    content:"";
    position:absolute;

    left:35px;
    bottom:-18px;

    width:24px;
    height:24px;

    /* background: #f1c36e; */

    transform:rotate(45deg);

    box-shadow:
        4px 4px 10px rgba(0,0,0,0.05);
}

.bubble-icon{
    font-size:40px;
    text-align:center;
    transition:.4s;
}

.bubble-question{
    overflow:hidden;

    max-height:0;
    opacity:0;

    margin-top:0;
    font-family: "Sniglet", system-ui;
    text-align:center;
    line-height:1.6;

    transition:
        max-height .6s ease,
        opacity .4s ease,
        margin-top .4s ease;
}

.speech-bubble.open .bubble-icon{
    transform:scale(.8);
}

.speech-bubble.open .bubble-question{
    max-height:150px;
    opacity:1;
    margin-top:15px;
    margin-bottom: 10px;
}

.invisible {
    color: #f3dfa7;
    margin-top: 30px;
}


.adv-title, .adv-subtitle {
    text-align: center;
    font-family: "Sniglet", system-ui;
    font-weight: 500;
    font-size: 40px;
    margin-top: 40px;
    /* margin-bottom: 70px; */
    color: #885d3e;
}

.adv-subtitle {
    font-size: 25px;
    margin-top: 0;
}

.adv-text {
    background-color: #fae8e0;
    padding: 20px;
    margin: 50px 20px;
    border-radius: 15px;
    line-height: 25px;
    font-size: 17px;
    box-shadow: 5px 5px 5px rgba(10, 10, 10, 0.3);
    font-weight: 500;
}

.advice-input {
    margin: 0px 25px;
    padding: 20px;
    border: 2px solid #f0b4ab;
    border-radius: 15px;
    width: 1200px;
    font-family: "Sniglet", system-ui;
    font-size: 15px;
    margin-bottom: 10px;
}

.advice-input:focus {
    border: 2px solid #f0b4ab;
    outline: none;
    box-shadow: 5px 5px 5px rgba(10, 10, 10, 0.3);
}

.ad-text-con {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.adv-btn {
    height: 40px;
    width: 50px;
    border: none;
    background-color: #f1c36e;
    border-radius: 15px;
    color: #885d3e;
    font-family: "Sniglet", system-ui;
    font-size: 15px;
    box-shadow: 3px 3px 3px rgba(10, 10, 10, 0.3);
    cursor: pointer;
    transition: all 0.5s ease;
    /* display: none; */
    /* margin-top: 10px; */
    margin-left: 1165px;
    
}

.adv-btn:hover {
    transform: scale(1.1);
}

#adv-form {
    margin-bottom: 50px;
}

.ques-btn {
    height: 40px;
    width: 50px;
    border: none;
    background-color: #f1c36e;
    border-radius: 15px;
    color: #885d3e;
    font-family: "Sniglet", system-ui;
    font-size: 15px;
    box-shadow: 3px 3px 3px rgba(10, 10, 10, 0.3);
    cursor: pointer;
    transition: all 0.5s ease;
    margin-top: 35px;
}

.ques-btn:hover {
    transform: scale(1.1);
}


.last-thanks{
    height: 70px;
    width: 400px;
    margin-left: 400px;
    margin-top: 50px;
}

.last-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.last-text {
    width: 400px;
    background-color: #c3c793;
    padding: 20px;
    border-radius: 15px;
    font-family: "Sniglet", system-ui;
    line-height: 25px;
    margin-top: 70px;
}

.last-img {
    width: 400px;
    height: 500px;
}




.last-below{
    /* width: 850px;
    display:flex;
    flex-direction: row;
    justify-content: start;
    align-items:center;
    gap: 30px;
    margin-left: 350px; */
    margin-bottom: 30px;
}

.box{
    width:50px;
    height: 50px;
    background:#f1ccb4;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor:pointer;
    border-radius:15px;
    font-size:20px;
    box-shadow: 5px 5px 5px rgba(10, 10, 10, 0.3);
    margin-left: 380px;
}

/* #surpriseImage, */
#musicImage{
    display:none;
    width:150px;
    margin-top: 10px;
    cursor:pointer;
    border: 3px solid #f0b4ab;
    border-radius: 15px;
    box-shadow: 5px 5px 5px rgba(10, 10, 10, 0.3);
    
}

#musicImage {
    object-fit: cover;
    margin-left: 370px;
}


.toggle-img {
    height: 50px;
    width:50px;
    margin-right: 20px;
    cursor: pointer;
    border-radius: 15px;
    padding: 10px;
}

.toggle-img:hover {
    background-color: #c3c793;
 }


 img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-touch-callout: none;
 }