
::before,::after{
    box-sizing: border-box;
     font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-style: normal;
}
    
  





body{
    background-color:#c99356;
    overflow-x: hidden;
}
/* desktop fixed sidebar*/
.top-menu{
    
    position: fixed;
    z-index: 1000;
    height: 100vh;
    left: 0;
    top: 0;
    width: 250px;
    overflow-y: auto;
    margin-left: 30px;
}



/* sheexzy header*/

   

.sheexzy{margin-top: 15%;
    font-size: 15px;
    font-family: "Cinzel Decorative", serif;
    pointer-events: none;
    margin-bottom: 15%;
    font-weight: bold;
    margin-left: 30px;
    
}





.logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    margin: 0 auto;
    width: auto;
    height: auto;
}



.logo{
    transition: opacity 0.3s ease;
    max-height: 22px;
    width: auto;
}

.logo:hover{
    cursor: pointer;
    opacity: 0.4;
}


#contact-logo,
#whatapp,
#instagram,
#tiktok {
    padding: 6px;
}



.content-last{
    font-family: "Cinzel Decorative", serif;
    font-size: 10px;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    font-weight: bold;
}



.footer{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px 10px;
    background: #c99356;
    margin-top: 0;
}




.menu{
    display: none;
}



/* for the clickable tabs that loads page  */



.nav{
    font-family: "Cinzel Decorative", serif;
    


    margin: 15px;
    display: flex;
    position: relative;
    color: #2D1E16 ;
    border: none;
    text-decoration: none;
    transition: opacity 1s ease;
}


.nav:hover{
    
    transition: 1.5s ease-in;
    opacity: 0.2;
    
}



/* menu wrapper- sidebar style */



.menu-wrapper{
    font-family: "Cinzel Decorative", serif;
    font-weight: bold;
    display: block;
    
}





.close-btn{
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    color: #c99356;
    font-size: 25px;
    cursor: pointer;
    border: solid 1.5px #2D1E16;
    border-radius: 10px;
    margin: 0;


}

@media(max-width:1100px) {
    .menu-wrapper{
        display: none;
    }

    

     /* to set the menu and sheexy header to face each other on mobile*/


    
    .menu{
        font-family: "Cinzel Decorative", serif;
        display: block;
        font-size: 20px;
        margin-bottom: 0;
        font: lighter;
        margin: 0;
        margin-right: 10%;
        cursor: pointer;
    }

    
     /* to set the menu and sheexy header to face each other on mobile*/
    
     .header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 25px;
        position: static;
        height :80px;
    }

    
     /* to set the menu and sheexy header to face each other on mobile*/

    
    .top-menu{
        position: static;
        width: 100%;
        height: auto;
    }
        .about-container{
            grid-template-columns: repeat(2,1fr);
            margin-left: 0%;
        }   

        
    .sheexzy{
        padding: 0;
        margin: 0;
        font-size: 20px;
        font:lighter;
        margin-bottom: 0%;
         font-family: "cinzel Decorative",serif;

}


    .footer{
        display: none;
    }

    .nav{
        color: #c99356;
    }


/* the content of my side bar*/


    

}


  /*for the menu background  and therefore belongs to the split or mobile cases*/


.menu-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:#2D1E16;
    overflow-y:auto ;
     align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.25s ease;
    opacity: 0;
    pointer-events: none;



}


.menu-overlay.active{
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.menu-overlay .menu-wrapper {
    display: block;
    text-align: center;
}


.close-overlay {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    background: none;
    border: none;
    color: #c99356;
    cursor: pointer;
}


/* Portfolio Content Area */
.main-content {
    margin-left: 250px;
    width: calc(100% - 250px);
    padding: 40px 30px;
    box-sizing: border-box;
}

.creative-intro{
     font-family: "Cinzel Decorative", serif;
     text-align: center;
}


.pic{
    height: 400px;
    width: 500px;
    padding: 15px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateX(100px);
    transition: all 2s ease-out 0.3s;

}

.animate-in {
    opacity: 1;
    transform: translateX(0);
}
/*
.standard-box{
    border: 5px solid #2D1E16;
    padding: 10px;
}
    */



 .standard-quote, .exclusive-quote, .location-quote{

     font-family: "Cinzel Decorative", serif;
        
    border: 5px solid #2D1E16;
    border-radius: 10px;
    padding: 50px 40px;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateX(-100px);
    transition:all 2s ease-in-out
    
    
}

.standard-quote.animate-in, .exclusive-quote.animate-in, .location-quote.animate-in {
    opacity: 1;
    transform: translateX(0);
}
.quote-header{
    text-align: center;
    font-size: 2,2rem;
    margin-bottom: 20px;
}

 .standard, .exclusive, .location{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

/* Mobile */
@media (max-width: 1100px) {

    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 20px 10px;
    }



    .standard, .exclusive, .location {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        width: 100%;
        margin-bottom: 60px;
    }
    
    .pic {
        width: 90%;
        max-width: 420px;
    }

    .standard-quote,
    .exclusive-quote,
    .location-quote {
        max-width: 45%;
        flex:1;

    }
}


@media (max-width: 600px) {
    .standard, .exclusive, .location {
        flex-direction: column;
    }
    .standard-quote, .exclusive-quote, .location-quote, .pic {
        max-width: 95%;
        width: 95%;
    }
}







/*
.creative-offering{
    display: flex;
    justify-content: center;
    padding: 10px;
}
    */

    .journey{
        background-color: #2D1E16;
        padding: 10px;
        border-radius: 5px;
        opacity: 1;
        color: #c99356;
        cursor: pointer;
        outline: none;
         transition: opacity 1s ease;  
         border: solid 1.5px #c99356; 
    }

    .journey:focus{
        opacity: 0.7;
        transition: ease-in 1.2s;
    }

    .intro-p{
         font-family: "Cinzel Decorative", serif;
         padding: 30px;

    }

    

    




