body {
    background: linear-gradient(rgb(255, 252, 232), rgb(247, 239, 230), rgb(240, 225, 228), rgb(232, 212, 225), rgb(224, 199, 223));
    cursor: none; /* Hide the default cursor */
    margin: 0;
    width: 100vw;
 }

/* Pop-up animation */
@keyframes popUp {
    from {
        transform: scale(0.8); /* Start slightly smaller */
        opacity: 0; /* Start invisible */
    }
    to {
        transform: scale(1); /* End at normal size */
        opacity: 1; /* Fully visible */
    }
}

/* Initial state for pop-up elements */
.pop-up {
    opacity: 0; /* Hidden by default */
    transform: scale(0.8); /* Slightly smaller by default */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

/* Active state to trigger the animation */
.pop-up.active {
    animation: popUp 0.5s ease forwards; /* Apply the pop-up animation */
}



/* Custom cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    background-color: lightpink;
    opacity: 25%;
    border-radius: 50%;
    position: fixed; /* Ensures it follows the mouse without scrolling issues */
    top: 0;
    left: 0;
    pointer-events: none; /* Prevents interference with clicks */
    transition: opacity 0.2s ease, transform 0.05s linear;
    z-index: 10000;
 }
 
 .navbar {
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Apply blur effect */
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid white; /* Optional: Add a white border at the bottom */
 }
 
 .navbar1 {
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
 }
 
  
  .navbar .logo {
     color: black;
     font-size: 24px;
     font-weight: bold;
     text-decoration: none;
  }
  .navbar .logo:hover{
     color:#a85361;
     transition: color 0.3s;
     cursor: none;
  }
  
  .navbar ul {
     list-style: none;
     display: flex;
     margin-left: 100px;
  }
  
  .navbar ul li {
     margin: 0 15px;
  }
  
  .navbar ul li a {
     color: black;
     text-decoration: none;
     font-size: 18px;
     transition: color 0.3s;
  }
  
  .navbar ul li a:hover {
     color: #a85361;
  }
  
  /* Menu toggle button */
  .menu-toggle {
   display: none;
   font-size: 24px;
   color: black;
   cursor: pointer;
   padding: 5px 10px; /* Add padding for better appearance */
   transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

.menu-toggle:hover {
   color: #a85361;

}

/* Navigation links for mobile */
@media (max-width: 768px) {
   .navbar ul {
       display: none;
       flex-direction: column;
       width: 50%;
       position: absolute;
       top: 50px;
       left: 0;
       background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
       border: 2px solid pink; /* Add a pink border for consistency */
       border-radius: 5px; /* Rounded corners */
       padding: 10px 0; /* Add padding for spacing */
       z-index: 1000;
   }

   .navbar ul.show {
       display: flex;
      align-items: center;
      }

   .navbar ul li {
       margin: 10px 0; /* Add spacing between links */
   }

   .navbar ul li a {
       color: black; /* Match the portfolio's text color */
       font-size: 18px; /* Adjust font size for readability */
       text-decoration: none; /* Remove underline */
       padding: 10px 20px; /* Add padding for better clickability */
       border-radius: 5px; /* Rounded corners */
       transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
      }

   .navbar ul li a:hover {
       background-color: pink; /* Pink background on hover */
       color: white; /* White text on hover */

   }

   .menu-toggle {
       display: block;
   }
}

.photo-gallery 
{
  text-align: center;
  padding-top: 10px;
}
/* Layout: Buttons on the left, Image on the right */
.gallery-container {
    display: flex;
    align-items: center; /* Aligns buttons and image properly */
    justify-content: center;
    gap: 20px;
    height: 75vh;
    margin-top: -50px;
    margin-right: 80px;
 }
 
 /* Stacks buttons vertically */
 .button-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
 }
 
 /* Button styles */
 /* Minimal button styling */
.gallery-btn {
    background-color: transparent; /* No background by default */
    color: black; /* Simple black text */
    border: 1px solid black; /* Thin black border */
    padding: 8px 16px; /* Add some padding for spacing */
    border-radius: 3px; /* Slightly rounded corners */
    font-size: 18px; /* Adjust font size for readability */
    text-decoration: none; /* Remove underline for links */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Smooth hover effect */
    cursor: pointer; /* Pointer cursor for better UX */
    margin-right: 90px;
}

/* Hover effect for minimal buttons */
.gallery-btn:hover {
    background-color: black; /* Black background on hover */
    color: white; /* White text on hover */
    border-color: black; /* Match border color with background */
}
 
 /* Image container */
 .gallery {
    display: flex;
    align-items: center; /* Ensures proper alignment */
    justify-content: center;
    width: 350px;
    height: auto;
    position: relative;
 }
 
 /* Ensures images fade over each other while staying aligned */
 .gallery img {
    max-width: auto;
    height: 50vh;
    border: 2px solid #ddd;
    border-radius: 15px;
    position: absolute;
    margin-left: 160px;
    
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
 }
 .gallery img:hover
 {
    transform: scale(1.2);
 }

 h2
 {
    font-size: 35px;
    font-weight: bold;
    color: black;
    display: flex;
    justify-content: center;
    align-content: center;
    margin-top: 75px;
 }
 .footer {
   background-color: rgba(255, 255, 255, 0.2);
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;

    border-top: 2px solid white;
 }
 
 .footer ul {
    list-style: none;
    padding: 0;
 }
 
 .footer ul li {
    display: inline;
    margin: 0 10px;
 }
 
 .footer ul li a {
    color: white;
    text-decoration: none;
 }
 
 .footer ul li a:hover {
    text-decoration: underline;
 }
 
 .footer-icon {
    width: 24px;
    height: 24px;
 }


 .aboutinformation{
    display: flexbox;
    justify-content: center;
 }
 
 img {
     transition: box-shadow 0.2s ease-in-out;
 }
 img:hover {
     box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Adds a shadow */
 }
 .footer ul li a:hover .fa-instagram {
     color: purple;
 }
 
 .footer ul li a:hover .fa-envelope {
     color: #D44638; 
 }
 
 .footer ul li a:hover .fa-linkedin {
     color: #0077B5; 
 }
 
 .footer ul li a i {
     transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
 }
 
 .footer ul li a:hover i {
     transform: scale(1.2); /* Slight zoom */
 }

 @media (max-width: 768px) {
   .gallery-container {
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 20px;
     gap: 20px;
     height: auto;
   }
 
   .button-container {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     width: 100%;
     gap: 10px;
   }
 
   .gallery-btn {
     width: 80%;
     font-size: 16px;
     text-align: center;
     margin-left: 85px;
   }
 
   .gallery {
     width: 100%;
     text-align: center;
   }
 
   .gallery img {
     width: 90%;
     height: auto;
     margin: 0 auto;
     position: static;
   }
 
   h2 {
     font-size: 24px;
     text-align: center;
      margin-bottom: 85px;
   }
 }
 
 