/* Load Garamond locally */
@font-face {
  font-family: 'Garamond';
  src: url('Assets/garamond.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}


body {
    background-color: #ffffff; /* Set the entire page background */
    color: #ffffff; /* Optional: Ensure text is visible on a dark background */
    padding: 0 0%; /* Add responsive padding for larger margins */
}

.nGY2 {
  max-width: 95vw; /* Allow the gallery to span nearly the full width of the page */
  margin: 0 auto; /* Keep it centered */
  padding: 0px; /* Optional: Add some padding inside */
  box-sizing: border-box; /* Ensure padding is part of the width */
}

.nanoGalleryLBarOff {
  display: none !important; /* Completely removes it from the layout */
  visibility: hidden; /* Ensures it's not visible */
  height: 0; /* Removes height */
  margin: 0; /* Ensures no leftover spacing */
  background-color: transparent; /* Just in case */
}

.nGY2 .nGY2ViewerToolsTopRight {
  color: #000000;
  right: 10px; /* Keep the toolbar positioned correctly */
  transition: all 0.2s ease;
}

/*  This is for the next and previous buttons */
.nGY2 .ngy2viewerToolAction {
  padding: 10px 20px; /* Reduce horizontal padding for tighter spacing */
  margin: 0px;      /* Eliminate margin gaps */
  display: inline-block; /* Ensure proper horizontal alignment */    
  }

/* Expand the hoverable area for the next and previous icons */
.nGY2ViewerAreaNext,
.nGY2ViewerAreaPrevious {
  width: 250px !important; /* Extend width */
  top: 100px !important; /* Start from the very top */
  bottom: 0 !important; /* Stretch to the bottom */
  height: 100% !important; /* Cover full height */
  position: absolute !important; /* Ensure it's aligned correctly */
  cursor: pointer !important; /* Keep interactivity */
  z-index: 10 !important; /* Ensure it's above other elements */
  overflow: visible !important; /* Ensure no clipping */
}



/* Default state for the next/previous icons */
.nGY2ViewerAreaNext img,
.nGY2ViewerAreaPrevious img {
  position: absolute; /* Explicitly position icons */
  top: calc(50% - 100px); /* Center vertically and adjust upwards by 50px */
  bottom: calc(50% - 100px); /* Center vertically and adjust upwards by 50px */
  transform: translateY(-50%); /* Correct alignment */
  opacity: 0.5 !important; /* Default opacity */
  transition: opacity 0.8s ease !important; /* Smooth transition */
}

.nGY2ViewerAreaNext img {
  right: 10px; /* Adjust to pull it slightly inward */
}

/* Hover state for the next/previous icons */
.nGY2ViewerAreaNext:hover img,
.nGY2ViewerAreaPrevious:hover img {
  opacity: 1.0 !important; /* Increase opacity on hover */
}

/* Adjust the container for top-right icons */
.nGY2 .nGY2ViewerToolsTopRight .ngbt {
  padding: 0 0 4px 0; /* Top, Right, Bottom, Left */
  margin: 0px; /* Eliminate margin gaps */
  display: inline-block; /* Ensure horizontal alignment */
}

.ngbt {
  width: 50px; /* Increase the width */
  height: 50px; /* Increase the height */
  display: flex; /* Ensure proper alignment */
  justify-content: center; /* Center the icon horizontally */
  align-items: center; /* Center the icon vertically */
}

.ngbt:hover {
  background-color: rgba(255, 255, 255, 0.3); /* Semi-transparent background */
  border-radius: 5%; /* Rounded corners */
  cursor: pointer;
}




/* This is like the grid gallery thumbnail view */
.nGY2 .nGY2GThumbnail, 
.nGY2 .nGY2GThumbnailStack {
  border: 5px solid #ffffff !important; /* It's the border here */
  width: 150px; /* Set the desired width */
  height: 150px; /* Set the desired height */
}


.nanogallery_gallerytheme_custom_ngy2p .nGY2GThumbnail {
  border-radius: 10px; /* Remove rounded corners */
  background: #ffffff; /* White background for thumbnails */
  border-color: #ffffff; /* White border for thumbnails */
}

.nGY2 .nGY2Gallery {
    background-color: transparent; /* Make the gallery container blend with the page */
}











/* Header container */
.site-header {
  width: 100%;
  padding: 0; /* Check this */
  margin-bottom: 0; /* Check this */
}

/* Styling for the site header */
.site-header {
  display: flex;
  background-color: #ffffff; /* White background */
  justify-content: center;
  align-items: center;
  padding: 0 0px;
  border-bottom: 1px solid #ffffff; /* We dont want this subtle divider */
}

/* Navigation bar */    /*   flex-direction: column; Stack the logo and links vertically */ 
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  gap: 0px; /* Add spacing between the title and the navigation links */
}

/* Styling for the header title */
.header-title {
  font-family: 'Garamond', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #000; /* Adjust as needed */
  margin-right: auto; /* Pushes the title to the left */
  line-height: 1; /* Adjust line height to avoid shifting */
  display: flex;
  align-items: center; /* Ensure the title stays centered */
  margin: 0; /* Reset any extra margin */
  padding: 0; /* Reset any extra padding */
}

.title-link {
  text-decoration: none; /* Remove underline */
  color: inherit; /* Inherit the color from parent */
  font-family: 'Garamond', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1; /* Match the styling of the title text */
}

.title-link:hover {
  text-decoration: none; /* Optional: Add underline on hover */
}


/* Navigation links */
.nav-links {
  display: flex;
  list-style: none; /* Remove bullet points */
  gap: 20px; /* Evenly space links */
  padding: 0;
  margin: 30px;
}

.nav-links li a {
  text-decoration: none; /* Remove underline */
  font-size: 1.2rem; /* Adjust font size */
  font-family: 'Garamond', sans-serif; /* Apply Poppins */
  color: #000000; /* Neutral text color */
  transition: color 0.3s ease;
  line-height: 1; /* Adjust line height to match title */
  display: inline-flex;
  align-items: center; /* Center text */
}

/* Hovering for the nav links */

.nav-links li a:hover {
  color: #9a1d48; /* Blue on hover */
}

.nav-links li a.active {
  text-decoration: underline;
  text-decoration-color: #000000; /* Black underline */
  text-decoration-thickness: 1px; /* Thickness of the underline */
  text-underline-offset: 6px; /* Drop the underline by 3px */
}


/* Centered logo */
.site-logo {
  text-align: left; /* Align the logo to the left */
  margin-left: 0px; /* Add some spacing from the left edge */
}

.logo-image {
  width: 250px; /* Adjust the width of the logo */
  height: auto; /* Maintain the aspect ratio */
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto; /* Center horizontally */
}


html {
  scroll-behavior: smooth;
}

/* Some padding so they don't overlap */ 

#portfolio {
  padding-top: 0px; /* Ensures the gallery doesn't overlap with the header */
  margin-top: 0px;
  padding-bottom: 0;
  margin-bottom: 0;
}

#contact {
  margin-top: 35px; /* Add spacing to separate it from the gallery container */
}



/* This is the smooth transition between the sections */ 




/* #Contact section css */


#contact * {
  font-family: 'Garamond', sans-serif; /* Apply Open Sans */
  color: #000000; /* Neutral text color */
  }
  
  .text-blk {
    margin: 0;
    line-height: 25px;
    padding: 0;
  }
  
  .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: flex-start;
  }
  
  .responsive-container-block.bigContainer {
    max-width: 90%; /* Limit the width to 90% of the browser window */
    margin: 0 auto; /* Center the container horizontally */
    padding: 0 20px; /* Add padding to the left and right for breathing room */
    box-sizing: border-box; /* Ensure padding is included in the total width */
  }
  
  .responsive-container-block.Container {
    max-width: 1320px;
    justify-content: space-evenly;
    align-items: center;
    padding: 0px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
  }
  
  .imgContainer {
    position: relative;
    width: 40%;
  }
  
  .mainImg {
    width: 80%;
    height: auto;
    object-fit: cover;
  }
  
  
  .responsive-container-block.textSide {
    width: 48%;
    padding: 0;
    z-index: 100;
  }
  
  .text-blk.heading {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    margin: 0 0 20px 0;
  }
  
  .text-blk.subHeading {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 20px 0;
  }
  
  @media (max-width: 1024px) {
    .responsive-container-block.Container {
      align-items: flex-start;
      justify-content: center;
      flex-direction: column-reverse;
    }
  
    .mainImg {
      bottom: 0;
    }
  
    .imgContainer {
      position: relative;
      bottom: 0;
      width: auto;
      margin: 0 auto;
    }
  
    .responsive-container-block.textSide {
      margin: 0 auto 20px auto;
      width: 70%;
    }
  }
  
  @media (max-width: 768px) {
    .responsive-container-block.textSide {
      width: 100%;
      align-items: center;
      flex-direction: column;
      justify-content: center;
      margin: 0;
    }
  
    .text-blk.subHeading {
      text-align: center;
      font-size: 17px;
      max-width: 520px;
    }
  
    .text-blk.heading {
      text-align: center;
    }
  
    .imgContainer {
      opacity: 0.8;
      height: 500px;
      width: 30px;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 500px) {
    .imgContainer {
      position: static;
      height: 450px;
      width: 100%;
    }
  
    .mainImg {
      height: 100%;
    }
  
    .blueDots {
      width: 100%;
      left: 0;
      top: 0;
      height: 80%;
      bottom: auto;
      right: auto;
    }
  
    .responsive-container-block.textSide {
      width: 100%;
      margin: 40px 0 50px 0;
    }
  
    .text-blk.subHeading {
      font-size: 16px;
      line-height: 23px;
    }
  
    .text-blk.heading {
      font-size: 28px;
      line-height: 28px;
    }
  }



  html {
    overflow-y: scroll; /* Always show a vertical scrollbar */
  }





  .site-logo {
    display: none;
  }


