@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; list-style: none; text-decoration: none;
}
  
:root{
      /* colors */
      --body-color: #C8B6A6; 
      --sidebar-color: #FAF3F0;
      --primary-color: #fff; 
      --primary-color-light: #9c7e58;
      --toggle-color: #9c7e58;
      --text-color: #9c7e58;
  
      /* transition */
      --tran-02: all 0.2s ease;
      --tran-03: all 0.3s ease;
      --tran-04: all 0.4s ease;
      --tran-05: all 0.5s ease;
}
  
body{
    background: linear-gradient(#e6d1c7, #F9F9F9, #e6d1c7); height: 100vh; 
    position: relative; align-items: center; 
}
  
body.dark{
    --body-color: #18191A;
    --sidebar-color: #242526;
    --primary-color: #3A3B3C;
    --primary-color-light: #242526;
    --toggle-color: #fff;
    --text-color: #fff;
}

/* body::before{
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(#FAF4B7, #FAF3F0); 
    clip-path: circle(30% at 90%  40%); z-index: 1;
} */

/* body::after{
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(#FAF3F0, #F88020); 
    clip-path: circle(20% at 10% 80%);  z-index: -1;
} */

.sidebar{
    position: fixed; height: 100vh; width: 200px; 
    background: #fff;  transition: var(--tran-05);
    z-index: 1000; border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);  
}

.sidebar header{
    position: relative; 
}
  
.image-text img{
    width: 60px; border-radius: 50%; margin-top: 30%; 
}
  
.sidebar header .image-text{
    display: flex; align-items: center;
}

.sidebar .text{
    font-size: 14px; font-weight: 600; color: var(--text-color);
    opacity: 1; 
}
  
.sidebar .image{
    min-width: 80px; display: flex; align-items: center; justify-content: center;
}
  
.sidebar header .image-text{
    padding-top: 20%;
}

header .image-text .header-text{
    display: flex; flex-direction: column; 
}
  
.header-text .logoName{
    font-weight: 600; font-size: 30px;
}
  
.header-text .motto{
    font-size: 10px; font-weight: 500; letter-spacing: 1px;
    white-space: nowrap;
}
  
.sidebar header .toggle{ 
    position: absolute; top: 50%; right: -15px; z-index: 2000;
    transform: translateY(-60%) rotate(180deg);
    height: 25px; width: 25px; background: #fff;
    display: flex; align-items: center; justify-content: center;
    border-radius: 20%; color: var(--primary-color-light); 
    font-size: 15px; transition: var(--tran-05); cursor: pointer;
}
  
.sidebar li{
    height: 50px; margin-top: 10px; list-style: none;
    display: flex; align-items: center; 
}
  
.sidebar li .icon{
    font-size: 20px; min-width: 60px; display: flex; align-items: center;
    justify-content: center; 
}
.sidebar li .icon, .sidebar li .text{
    color: var(--text-color); transition: var(--tran-02);
}
  
.sidebar li a{
    text-decoration: none; display: flex; width: 100%; height: 100%; 
    align-items: center; border-radius: 6px; transform: var(--tran-04);
}
  
.sidebar li a:hover{
    background: #f1ecec; color: var(--text-color);
}
  
.sidebar li a {
    height: 100%; width: 100%; border-radius: 6px;
}
  
.sidebar li a:hover{
    color: var(--primary-color-light); 
}
  
.sidebar .menu-bar{
    height: calc(100% -50px); display: flex; flex-direction: column;
    justify-content: space-between; 
}
  
.sidebar.close{
    width: 65px; transition: var(--tran-05);
}
  
.sidebar.close .text, .sidebar.close .mode .moon, .sidebar.close .mode .sun{
    opacity: 0;
}

.sidebar.close header .toggle{
    transform: translateY(-10%); left: 55px; transition: var(--tran-05);
}

.sidebar.close .bottom-content .mode .toggle-switch{
    left: 7px;
}

.sidebar.close .image-text img{
    margin-top: 100%; margin-left: -20px; width: 50px; 
}

.menu-bar .mode{
    position: relative; border-radius: 6px; background: var(--primary-color-light); 
}
  
.menu-bar .mode i{
    position: absolute; transition: var(--tran-03);
}
  
.menu-bar .menu ul{
    background: #fff;
}
  
.menu-bar .mode .dark-light{
    height: 50px; width: 60px; display: flex; align-items: center;
}
  
.menu-bar .mode i.sun{
    opacity: 0; padding-left: 20px; color: #fff; font-size: 20px; 
}
  
body.dark .menu-bar .mode i.sun{
    opacity: 1;
}
  
body.dark .menu-bar .mode i.moon{
    opacity: 0;
}
  
.menu-bar .menu ul{
    padding-top: 50px; color: var(--text-color); 
}
  
.menu-bar .mode i.moon{
    padding-left: 20px; color: var(--primary-color-light); font-size: 20px;
}
  
.bottom-content{ 
    padding-top: 100px;
}
  
.bottom-content .mode{ 
    background: #fff;
}

.menu-bar .mode .toggle-switch{
    position: absolute; height: 100%; min-width: 50px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    right: 5px; background: transparent; border-radius: 6px;
}
  
.toggle-switch .switch{
    height: 22px; width: 44px; background: var(--toggle-color); 
    position: relative; border-radius: 25px;
}
  
.switch::before{
    height: 15px; width: 15px; background-color: var(--sidebar-color);
    content: ''; position: absolute; border-radius: 50%; top: 50%;
    left: 5px; transform: translateY(-50%); 
    transition: var(--tran-03);
}
  
body.dark .sidebar, body.dark .sidebar li, body.dark .sidebar li a,
body.dark .sidebar .menu-bar .mode .toggle-switch, body.dark .sidebar ul{
    color: var(--sidebar-color); background: var(--primary-color);
    transition: var(--tran-05);
}

body.dark .sidebar li a:hover, body.dark .sidebar li a:hover{
    background: var(--sidebar-color); color: var(--primary-color);
}

body.dark .switch::before{
    left: 25px;
}
  
body.dark .sidebar header .toggle{
    color: #fff; background: var(--primary-color); 
}
  

  
body.dark .home-content{
    background-color: #292b2c; 
}



  /* </homepage> */

/* .home-content{
    height: 100%; width: 100%; min-height: 100vh; position: relative;
    display: grid; background: linear-gradient( #C58940, #FEF5ED);
    align-items: center; gap: 0.5rem;
} */

body.dark section{
    background-color: #18191A;
}

body.dark .gallery-text :is(p, h1){
    color: #f1ecec;
}

body.dark body::before{
    background: linear-gradient(#6e6967, #FFEECC); 
}

section{
    padding: 10% 0 0 15%; padding-bottom: 180px;
}

.sidebar.close .gallery-text{
    z-index: 100; position: relative; 
}

.gallery-text h2{
    color: #2C2C2C; font-size: 50px;
}

.gallery-text h4{
    font-family: cursive; font-size: 20px; color: #9c7e58;
}


.home-content{
    display: flex; margin: 0;
}

.home-content .gallery-text p{
    color: #000000; font-size: 16px; position: relative; z-index: 10;
    line-height: 1.9; max-width: 500px; margin-bottom: 40px; margin-top: 10px; 
    transform: scale(0.94); animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
@keyframes scale {
  100% {
    transform: scale(1);
  }
}

.gallery-image img{
    width: 400px; height: auto; display: inline-flex; z-index: 2;
    position: absolute; top: 80px; 
}

.circular-shadow {
    width: 300px; height: 200px; background-color: #fff; 
    border-radius: 50%; filter: blur(50px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    margin-left: 100px; margin-top: 50px;
  }

.gallery-text span{
   display: inline-block;
}

.Elegance{
  padding-top: 30px;
  text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #a659ee 0%,
    #cc7e81 49%,
    #FFCD4B 77%,
    #f3c4af 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
  font-size: 190px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.gallery-text a{
    display: inline-block; color: #fff; background: #9c7e58;
    border: 1px solid transparent; padding: 8px 20px; text-decoration: none;
    border-radius: 50px; font-size: 14px; font-weight: 500; transition: all .55s ease;
    line-height: 1.4; z-index: 100; position: relative;
}

.gallery-text a:hover{
    background: #fff; color: #9c7e58; padding: 10px 25px; transform: translateX(8px);
    border: 1px; 
}

.typing-animation {
    overflow: hidden; 
    white-space: nowrap; 
    border-right: 2px solid #333;
    animation: typing 3s steps(25, end), blink-caret 0.75s  step-end infinite;
  }
  
  /* Keyframes for typing animation */
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  
  @keyframes blink-caret {
    from,
    to {
      border-color: transparent;
    }
    50% {
      border-color: transparent;
    }
  }
  

.socialMedia{
    position: absolute;  padding-left: 1000px; 
    text-decoration: none; z-index: 1500; display: grid;
}

.socialMedia a{
    text-decoration: none; 
}

/* icons ng mga social media */
.socialMedia i{
    margin: 106px 0; font-size: 24px; 
    color: #3A3B3C; transition: all .50s ease; text-decoration: none;
}

.socialMedia i:hover{
    color: #ffce79;
    transform: translateY(-5px);
    text-decoration: none;
}

body.dark .socialMedia i{
    color: #F9F9F9;
}

body.dark .gallery-text h2{
    color: #cac5c3; font-size: 50px;
}

body.dark .gallery-text h4{
    color: #fff;
}



ul{
    list-style: none;
  }
  
  .row{
    display: flex; flex-wrap: wrap;
  }
  
  .footer{
    background-color: #24262b; 
    padding-top: 20px; padding-bottom: 20px; padding-left: 100px;
  }
  
  .footer-col{
     width: 20%; margin-left: 25px;  display: inline-block; margin-right: 25px;
  }
  .footer-col h4{
      font-size: 16px; color: #ffffff; text-transform: capitalize;
      margin-bottom: 20px; font-weight: 500; position: relative;
    margin-top: 20px;
  }
  .footer-col h4::before{
      content: ''; position: absolute; left:0; bottom: -10px; background-color: #9c7e58; height: 2px;
      box-sizing: border-box; width: 50px;
  }
  
  .footer .container-footer h5{
    color: #fff; margin-left: 70%;
  }
  
  .footer-col ul li:not(:last-child){
      margin-bottom: 10px;
  }
  
  .footer-col ul span{
    white-space: nowrap; 
  }
  
  .footer-col ul span img{
    width: 50px; 
  }
  
  .footer-col ul li a{
      font-size: 10px; text-transform: capitalize; color: #ffffff;
      text-decoration: none; font-weight: 300; color: #bbbbbb;
      display: block; transition: all 0.3s ease; margin-top: 1px;
  }
  .footer-col ul li a:hover{
      color: #ffffff;
      padding-left: 8px;
  }
  .footer-col .social-links a{
      display: inline-block;
      height: 40px;
      width: 40px;
      background-color: rgba(255,255,255,0.2);
      margin:0 10px 10px 0;
      text-align: center;
      line-height: 40px;
      border-radius: 50%;
      color: #ffffff;
      transition: all 0.5s ease;
  }
  .footer-col .social-links a:hover{
      color: #24262b;
      background-color: #ffffff;
  }
  
  /*responsive*/
  @media(max-width: 767px){
    .footer-col{
      width: 50%;
      margin-bottom: 30px;
  }
  }
  @media(max-width: 574px){
    .footer-col{
      width: 100%;
  }
  }

/* forresponsive website: large to small screen */
@media (max-width: 1535px){
    section{
        padding: 5% 0 0 20%; padding-bottom: 180px; margin: 0; overflow: hidden;
    }
    .gallery-text h2{
        font-size: 50px; white-space: wrap; padding-left: 0;
    }
    .gallery-text h4{
        font-family: cursive; font-size: 20px; 
        margin-bottom: 20px; margin-top: 60px; padding-left: 0;
    }
    .home-content .gallery-text p{
        font-size: 12px; line-height: 1.9; max-width: 450px; padding-left: 0;
    }
    .gallery-image img{
        width: 400px; height: auto; display: inline-flex; z-index: 2;
        position: absolute; top: 80px; margin-left: -50px;
    }
    
    .circular-shadow {
        width: 300px; height: 200px; background-color: #fff; 
        border-radius: 50%; filter: blur(50px);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        margin-left: 20px; margin-top: 100px;
      }
    
    .gallery-text span{
       display: inline-block;
    }
 
    .gallery-text a{
        display: inline-block; color: #fff; background: #9c7e58;
        border: 1px solid transparent; padding: 5px 10px; text-decoration: none;
        border-radius: 50px; font-size: 10px; font-weight: 500; transition: all .55s ease;
        line-height: 1.4; z-index: 100; position: relative;
    }
    .gallery-text a:hover{
        background: #fff; color: #9c7e58; padding: 8px 20px; transform: translateX(8px);
        border: 1px; 
    }
    .socialMedia{
        display: none;
    }
    body.dark .gallery-text h2{
        color: #cac5c3; font-size: 50px;
    }
    .sidebar{
        width: 180px; 
    }
    .image-text img, .sidebar.close .image-text img{
        width: 50px;  
    }
    .header-text .logoName{
        font-size: 20px; 
    }  
    .sidebar .text{
        font-size: 14px;
    }
    .header-text .motto{
        font-size: 10px; 
    }    
    .sidebar header .toggle{ 
        height: 30px; 
    } 
    .sidebar li .icon, .menu-bar .mode i.sun, .menu-bar .mode i.moon{
        font-size: 20px; 
    } 
    .sidebar li a{
        height: 80%; 
    }
    .sidebar.close{
        width: 60px; transition: var(--tran-05);
    }
    .sidebar.close .image-text img{
        margin-top: 50px; margin-left: -20px; width: 38px; 
    }
    .toggle-switch .switch{
        right: 5px; 
    }
    .sidebar.close .toggle-switch .switch{
        right: 2px; 
    }
    .mode .text{
        font-size: 10px; 
    }

    .back a{
        color: #3d5772; font-size: 10px; padding-left: 88%;
    }
    .footer{
        background-color: #24262b; padding-top: 2px; padding-left: 8%;
    }
    .footer-col{
         width: 22%; margin-right: 2px; margin-bottom: 50px;
    }
    .footer-col h4, .footer h5{
        font-size: 14px; 
    }
    .footer-col ul span{
        white-space: wrap; 
    }
    .footer-col ul span img{
        width: 60px; 
    } 
    .footer-col ul li a{
        font-size: 12px; 
    }
    .footer-col ul li a:hover{
        padding-left: 6px;
    }
    .footer-col .social-links a{
        height: 42px; width: 42px;
        line-height: 44px;
    }
    .footer .container-footer h5{
        font-size: 12px; white-space: nowrap; display: flex; justify-content: center;
        align-items: center; margin-left: -5%;
    }
  }


@media (max-width: 990px){
    section{
        padding: 5% 0 0 20%; padding-bottom: 180px; margin: 0; overflow: hidden;
    }
    .gallery-text h2{
        font-size: 45px; white-space: wrap; padding-left: 0;
    }
    .gallery-text h4{
        font-family: cursive; font-size: 20px; 
        margin-bottom: 20px; margin-top: 60px; padding-left: 0;
    }
    .home-content .gallery-text p{
        font-size: 12px; line-height: 1.9; max-width: 450px; padding-left: 0;
    }
    .gallery-image img{
        display: none;
    }
    .circular-shadow{
        display: none;
    }
    .gallery-text span{
       display: inline-block;
    }
    .gallery-text a{
        display: inline-block; color: #fff; background: #9c7e58;
        border: 1px solid transparent; padding: 5px 10px; text-decoration: none;
        border-radius: 50px; font-size: 10px; font-weight: 500; transition: all .55s ease;
        line-height: 1.4; z-index: 100; position: relative;
    }
    .gallery-text a:hover{
        background: #fff; color: #9c7e58; padding: 8px 20px; transform: translateX(8px);
        border: 1px; 
    }
    .socialMedia{
        display: none;
    }
    body.dark .gallery-text h2{
        color: #cac5c3; font-size: 45px;
    }
    .sidebar{
        width: 160px; 
    }
    .image-text img, .sidebar.close .image-text img{
        width: 50px;  
    }
    .header-text .logoName{
        font-size: 20px; 
    }  
    .sidebar .text{
        font-size: 14px;
    }
    .header-text .motto{
        font-size: 10px; 
    }    
    .sidebar header .toggle{ 
        height: 30px; 
    } 
    .sidebar li .icon, .menu-bar .mode i.sun, .menu-bar .mode i.moon{
        font-size: 20px; 
    } 
    .sidebar li a{
        height: 80%; 
    }
    .sidebar.close{
        width: 60px; transition: var(--tran-05);
    }
    .sidebar.close .image-text img{
        margin-top: 50px; margin-left: -20px; width: 38px; 
    }
    .toggle-switch .switch{
        right: 50px; 
    }
    .sidebar.close .toggle-switch .switch{
        right: 2px; 
    }
    .mode .text{
        display: none;
    }

    .back a{
        color: #3d5772; font-size: 10px; padding-left: 85%;
    }

    .footer{
        background-color: #24262b; padding-top: 2px; padding-left: 12%;
    }
    .footer-col{
         width: 23%; margin-left: 5px;  margin-right: 5px;
    }
    .footer-col h4, .footer h5{
        font-size: 12px; 
    }
    .footer-col ul span{
        white-space: wrap; 
    }
      
    .footer-col ul span img{
        width: 60px; 
    } 
    .footer-col ul li a{
        font-size: 10px; 
    }
    .footer-col ul li a:hover{
        padding-left: 4px;
    }
    .footer-col .social-links a{
        height: 40px; width: 40px;
        line-height: 38px;
    }
    .footer .container-footer h5{
        font-size: 10px; white-space: nowrap; display: flex; justify-content: center;
        align-items: center; margin-left: -5%;
    }
  }


  @media (max-width: 660px){
    section{
        padding: 5% 0 0 20%; padding-bottom: 180px; margin: 0; overflow: hidden;
    }
    .gallery-text h2{
        font-size: 30px; white-space: wrap; padding-left: 0;
    }
    .gallery-text h4{
        font-family: cursive; font-size: 20px; 
        margin-bottom: 20px; margin-top: 60px; padding-left: 0;
    }
    .home-content .gallery-text p{
        font-size: 12px; line-height: 1.9; max-width: 280px; padding-left: 0;
    }
    .gallery-image img{
        display: none;
    }
    .gallery-text span{
       display: inline-block;
    }
    .gallery-text a{
        display: inline-block; color: #fff; background: #9c7e58;
        border: 1px solid transparent; padding: 5px 10px; text-decoration: none;
        border-radius: 50px; font-size: 10px; font-weight: 500; transition: all .55s ease;
        line-height: 1.4; z-index: 100; position: relative;
    }
    .gallery-text a:hover{
        background: #fff; color: #9c7e58; padding: 8px 20px; transform: translateX(8px);
        border: 1px; 
    }
    .socialMedia{
        display: none;
    }
    .sidebar{
        width: 140px; 
    }
    .image-text img, .sidebar.close .image-text img{
        width: 40px;  
    }
    .sidebar .text, .header-text .logoName{
        font-size: 12px; 
    }  
    .header-text .motto{
        font-size: 8px; 
    }    
    .sidebar header .toggle{ 
        height: 20px; 
    } 
    .sidebar li .icon, .menu-bar .mode i.sun, .menu-bar .mode i.moon{
        font-size: 15px; 
    } 
    .sidebar li a{
        height: 80%; 
    }
    .sidebar .menu-bar{
        height: calc(100% -50px); display: flex; flex-direction: column;
        justify-content: space-between; 
    }
    .sidebar.close{
        width: 55px; transition: var(--tran-05);
    }
    .sidebar.close .image-text img{
        margin-top: 50px; margin-left: -25px; width: 35px; 
    }
    .sidebar.close .text, .sidebar.close .mode .moon, .sidebar.close .mode .sun{
        opacity: 0;
    }
    .sidebar.close header .toggle{
        transform: translateY(-40%); left: 45px; transition: var(--tran-05);
    }
    .sidebar.close .bottom-content .mode .toggle-switch{
        left: 5px; width: 45px;
    }
    .menu-bar .mode .dark-light{
        height: 30px; width: 40px; 
    }  
    .toggle-switch .switch{
        right: 20px; 
    }
    .menu-bar .mode .toggle-switch{
        position: absolute; height: 100%; min-width: 50px; cursor: pointer;
        display: flex; align-items: center; justify-content: center;
        right: 5px; background: #fff; border-radius: 6px;
    } 
    .sidebar.close .toggle-switch .switch{
        height: 22px; width: 44px; right: 2px;
    }
    .mode .text{
        display: none;
    }
    .sidebar.close .menu-bar .menu-links .icon{
        padding-right: 5px;
    }
    .back a{
        color: #3d5772; font-size: 10px; padding-left: 350px;
    }
    .footer{
        background-color: #24262b; padding-top: 2px; padding-left: 80px;
    }
    .footer-col{
         width: 22%; margin-left: 5px;  margin-right: 5px;
    }
    .footer-col h4, .footer h5{
        font-size: 12px; 
    }
    .footer-col ul span{
        white-space: wrap; 
    }
      
    .footer-col ul span img{
        width: 60px; 
    } 
    .footer-col ul li a{
        font-size: 10px; 
    }
    .footer-col ul li a:hover{
        padding-left: 4px;
    }
    .footer-col .social-links a{
        height: 30px; width: 30px;
        line-height: 32px;
    }
    .footer .container-footer h5{
        font-size: 10px; white-space: nowrap; display: flex; justify-content: center;
        align-items: center; margin-left: -5%;
    }
  }

