html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}
  
/* Header starts here */

.Navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1vw;
    height: 30px;
    box-sizing: border-box;
    }

#Navbar-left {
    display: flex;
    justify-content: flex-start;
}

#Navbar-right {
    display: flex;
    gap: 12px;
}

#Navbar-home, #Navbar-photos, #Navbar-blogs, #Navbar-diary {
    color: rgb(181, 181, 181);
    font-size: 1.3rem;
    font-family: 'Suisseintl Webxl', Arial, sans-serif; 
    cursor: pointer;
    transition: color 0.2s;
    padding: 8px 10px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: -0.08rem;
}

.links {
  text-decoration: none;
  color: rgb(181, 181, 181);
}

#Navbar-photos:hover, #Navbar-blogs:hover, #Navbar-diary:hover {
    text-decoration: underline;
    color: #ff5555;
}

@media (max-width: 768px) {
    .Navbar {
        height: 30px;
        padding: 0 1vw;
    }
    #Navbar-home, #Navbar-photos, #Navbar-blogs, #Navbar-diary {
        font-size: 1.3rem;
        padding: 6px 8px;
    }
    #Navbar-right {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .Navbar {
        height: auto;
        padding: 6px 3vw;
    }
    #Navbar-left {
        justify-content: flex-start;
    }
    #Navbar-right {
        justify-content: space-between;
        gap: 2px;
        margin-top: 4px;
    }
    #Navbar-home, #Navbar-photos, #Navbar-blogs, #Navbar-diary {
        font-size: 0.7rem;
        padding: 3px 5px;
    }
}


/* Header Ends here */



  /* footer starts here  */

  footer {
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top : auto;
    margin-bottom : 5vh;
    height: fit-content;
    background-color: transparent;
    font-family: 'Suisseintl Webxl', Arial, sans-serif;
    display: flex;
    justify-content : space-between
  }

  .footer-left {
    padding-left : 5vw;
  }

  .footer-left1 {
        display: flex;
        font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.8rem); 
    font-weight: 700;
    letter-spacing: clamp(-0.1rem, -0.1vw - 0.05rem, -0.05rem);
  }
  #footer-black {
     color : gray;
     filter: blur(1px);
  }
  #footer-red {
    color : #ff0000e0;
  }

  .footer-left-red2 {
    color : #ff0000e0;
    font-size: clamp(1rem, 1.2vw + 0.3rem, 1.5rem); 
    font-weight: 700;
    letter-spacing: clamp(-0.07rem, -0.07vw - 0.02rem, -0.03rem);
  } 

  .footer-right {
    padding-right : 5vw;
  }

  .footer-right-1 {
    padding-top : 0;
    display: flex;
    flex-direction: column;
    font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.8rem); 
    font-weight: 700;
    letter-spacing: clamp(-0.1rem, -0.1vw - 0.05rem, -0.05rem);
  }

  #footer-right-1-1 {
    display : flex;
    gap : 5px;
    height : fit-content;
    margin-top : -33px;
  }

  .footer-links {
    margin-top : -2vh;
    
  }
  .link {
    color: rgb(181, 181, 181);
    font-family: 'Suisseintl Webxl', Arial, sans-serif; 
    cursor: pointer;
    transition: color 0.2s;
    font-size: clamp(1rem, 1.2vw + 0.3rem, 1.5rem); 
    font-weight: 700;
    letter-spacing: clamp(-0.07rem, -0.07vw - 0.02rem, -0.03rem);
    padding-right : 10px;
  }

    .link:hover {
        text-decoration: underline;
        color: #ff5555;
    }


    @media(max-width:600px) {
        footer {
            display : flex;
            flex-direction: column;
        }
        .footer-left {
          display: none;
      }
        .footer-right {
            margin-left : 6vw;
            text-align: right;
        }
        #footer-right-1-1 {
            display : flex;

            justify-content: right;
        }
    }

  /* footer ends here   */

  /* Hamburger css starts here  */
 
.sidebar {
  position: fixed;
  top: 0;
  left: -240px;
  width: 220px;
  height: 100vh;
  padding-top: 60px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.533);
  backdrop-filter: blur(3px);
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
  transition: left 0.4s cubic-bezier(.36, -0.01, 0, .77);
  overflow: hidden;
}

.sidebar.open {
  left: 0;
}

.sidebar-toggle {
  position: fixed;
  top: 40px;
  left: 20px;
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}

.sidebar-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #a73535;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(.4, 2, .6, 1), opacity 0.4s cubic-bezier(.4, 2, .6, 1);
}

.sidebar-toggle.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.sidebar-toggle.open span:nth-child(2) {
  opacity: 0;
}
.sidebar-toggle.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}


#sidebarList {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
}


.sidebar li {
  position: absolute;
  width: 100%;
  height: 80px;
  line-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Suisseintl Webxl', Arial, sans-serif;
  font-size: 1.1em;
  letter-spacing: -.1em;
  font-weight: 600;
  color: #666;
  opacity: 0.3;
  transform: scale(0.8);
  filter: blur(2px);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.sidebar li.focused {
  opacity: 1;
  transform: scale(1.18);
  filter: blur(0);
  color: #d81414b2;
  font-size: 1.3em !important;
  letter-spacing: -.12em !important;
  font-weight: 600;
  pointer-events: auto;
  
}


.sidebar li.near {
  opacity: 0.6 ;
  transform: scale(1);
  filter: blur(0.5px);
  color: #444;
  pointer-events: auto;
}


.sidebar li.far {
  opacity: 0.45;
  transform: scale(0.9);
  filter: blur(1.2px);
  color: #999;
  pointer-events: auto;
}

.sidebar li a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: color 0.2s;
}
    
  /* Hamburger css ends here  */


  /* gallery starts here  */

  .gallery-container {
    display : flex;
    flex-direction : column;
    width : 100%;
    height : auto;
    padding : 4px;
    margin-bottom : 4px;
  }

  .gallery1 {
    display : flex;
    flex-direction : row;
    justify-content: space-between;
    align-items: center;
    height : 60vh;
    width : 100%;
    padding-bottom : 4px;
  }

  .gallery1-left{
    height : 100%;
    width : 70%;
    padding-right : 2px;
  }

  .gallery1-leftchild {
    width : 100%;
    height : 100%;
    
  }

  .gallery1-right {
    display : flex;
    flex-direction : column;
    justify-content: center; 
    width : 30%;
    height : 100%;
  }

  .gallery1-rightchild {
    width : 100%;
    height : 50%;
    padding-bottom : 2px;
  }

  .gallery2 {
    display : flex;
    flex-direction : row;
    justify-content: space-between;
    align-items: center;
    height : 40vh;
    width : 100%;
    padding-bottom : 3px;
  }

  .gallery2-child {
    width : 33%;
    height: 100%;
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; 
  }

@media (max-width: 750px) {

  .gallery-container {
    display : flex;
    flex-direction : column;
    width : 100%;
    height : auto;
    margin-bottom : 4px;
    margin-right : 4px;
  }

  .gallery-child {
    max-width: 100vw;
    max-height: 100vh;
    width: auto;
    height: auto;
    padding-bottom : 1px;

  }
    
}

.apology {
  width : 100%;
  height : fit-content;
  font-size : 1.1rem;
  font-family: 'Suisseintl Webxl', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -.08em;
  color : gray;
  text-align : center;
  margin-top : 10vh;
}

  /* gallery ends here  */

