@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body 
{
    background-color: #f3f4f6;;
}
:root 
{
    --title-font: "Josefin Sans", sans-serif;
    --title-color: #A32626;
    --white:#fff;
    --bs-primary:#ffd700;
    --body-color:#f3f4f6;
    --black-color:#000;
    --border-radius: 10px;
}
.title-font 
{
    font-family: var(--title-font);
}
.title-color    
{
    color: var(--title-color);
}
.header-part 
{
    background: var(--bs-primary);
    color: var(--bs-black);
    padding: 20px 0px 10px 0px;
}
.header-part .brand-info
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media screen and (max-width: 600px)
{
  .header-part .brand-info
  {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 20px;
      gap: 10px;
  }
}
.header-part .brand-info h1 
{
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 30px;
}
.header-part .brand-info .brand-contact a 
{
    background: linear-gradient(to right, var(--bs-black) 55%, var(--bs-white) 0%);
    background-position: right;
    background-size: 200% 100%;
    transition: .5s ease;
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 15px;
    padding: 14px 40px 10px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
}
.header-part .brand-info .brand-contact a:hover 
{
    background-position: left;
    color: var(--bs-primary);
}
/* banner-img */
.banner-img {
    position: relative;
    width: 100%;
    height: 87vh;
    overflow: hidden;
}

.banner-img .banner-image {
    width: 100%;
    height: 100%;
}

.banner-img .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-top img {
    object-position: top;
}

.banner-center img {
    object-position: center;
}

.banner-bottom img {
    object-position: bottom;
}

.banner-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4); /* dark overlay */
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
}
.banner-img .overlay h2
{
    font-size: 50px;
}

.banner-img .overlay h2,
.banner-img .overlay h3 {
    margin: 0.5rem 0;
    font-weight: 500;
    font-family: var(--title-font);
}
h2 
{
    font-size: 40px;
}
/* gallery share icons css */
/* ---------- Masonry Grid Layout ---------- */
.masonry-grid {
  column-count: 4;
  column-gap: 1rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .masonry-grid {
    column-count: 3;
  }
}
@media (max-width: 768px) {
  .masonry-grid {
    column-count: 2;
  }
}
@media (max-width: 576px) {
  .masonry-grid {
    column-count: 2;
  }
}


/* ---------- Card Layout & Hover Reveal ---------- */
.photo-card .card {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  background: #fff;
}

.card .card-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Reveal area */
.photo-card .card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
  padding: 10px;
}

.photo-card .card:hover .card-body {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---------- Icon Style Inside Social Links ---------- */
/* Social Links (icon bar) */
/* Perfect circular icon buttons */
.pGallery .card .card-body .slinks
{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.pGallery .card .card-body .slinks a {
  background: var(--bs-black);
  color: var(--bs-primary);
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 15px;
  text-decoration: none;
  border: 1px solid var(--bs-primary);
  transition: transform 0.3s;
}

.pGallery h6 
{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
/* Icon inside button — no need for flex here */
.pGallery .card .card-body .slinks a i {
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

}


/* light box for preview image */
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.lightbox-nav span {
  font-size: 40px;
  color: white;
  cursor: pointer;
  padding: 10px 20px;
  user-select: none;
}

/* Client Footer */
.client-footer 
{
    background-color: var(--bs-primary);
    color: var(--bs-black);
    font-family: var(--title-font);
    font-weight: 600;
    padding: 20px 0px 0px 0px;
}
.footer-details
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.client-footer a 
{
    text-decoration: none;
    font-family: var(--title-font);
    color: black;
    font-size: 18px;
    font-weight: 600;
}
.border-radius 
{
    border-radius: 10px;
}
@media screen and (max-width: 992px)
{
  .footer-details
  {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 20px;
  }
}


/* Password for page css */
.password-section-body 
{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 100%;
}
.password-section-body  form input[type="password"]
{
  outline: none;
  border: 1px solid var(--title-color);
  border-radius: 30px;
}
.password-section-body  form .passwordBtn
{
  background: linear-gradient(to right, var(--bs-black) 53%, var(--bs-primary) 0%);
  background-size: 200% 100%;
  background-position: right;
  transition: .5s ease-in-out;
  color: var(--bs-black);
  font-family: var(--title-font);
  outline: none;
  padding: 10px 30px 8px 30px;
  text-align: center;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  width: 100%;
}
.password-section-body  form .passwordBtn:hover 
{
  background-position: left;
  color: var(--bs-primary);
}




.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 34px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: .4s;
}

input:checked + .slider {
  background-color: #4CAF50;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

/* Rounded toggle */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}




.uploadfileBtn
{
    background: linear-gradient(to right, var(--bs-black) 53%, var(--bs-primary) 0%);
    background-position: right;
    background-size: 200% 100%;
    transition: all .5s ease-in-out;
    color: var(--black-color);
    font-family: var(--title-font);
    padding:10px 30px 5px 30px;
    cursor: pointer;
    border-radius: 30px;
    outline: none;
    font-weight: 600;
    border: none;
}
.uploadfileBtn:hover 
{
    background-position: left;
    color: var(--bs-primary);
}

.album-btn
{
    background: linear-gradient(to right, var(--bs-black) 53%, var(--bs-primary) 0%);
    background-position: right;
    background-size: 200% 100%;
    transition: all .5s ease-in-out;
    color: var(--black-color) !important;
    font-family: var(--title-font);
    padding:15px 30px 10px 30px;
    cursor: pointer;
    border-radius: 30px;
    outline: none;
    font-weight: 600;
    border: none;
}
.album-btn:hover 
{
    background-position: left;
    color: var(--bs-primary) !important;
}
.album-photos-btn 
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 768px)
{
    .album-photos-btn 
    {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      margin-top: 20px;
    }
}


/* Position ✔ badge */
.share-to-album.selected {
  background-color: #ffd700 !important;
  color: #000 !important;
  border-color: #ffd700 !important;
  outline: none !important;
}

.share-to-album.selected i {
  color: #000 !important;
}

.shared-check-badge {
  position: absolute;
  top: -1px;
  right: 0px;
  width: 20px;
  height: 20px;
  background-color: #ffd700;
  color: #000;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 50%;
  border: 2px solid #ffd700;
}


#back-to-top {
  transition: all 0.3s ease-in-out;
}

.back-arrow a 
{
  font-size: 30px;
  color: #000 !important;
  transition: all .5s ease-in;
}
.back-arrow a:hover 
{
  color: var(--title-color) !important;
}
/* Delete for album photo */
.delete-album-photo1
{
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  background-color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary) !important;
  cursor: pointer;
} 
.album-img .card img
{
  border-radius: 10px;
  transition: transform .5s ease-in;
}
.album-img .card:hover 
{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.album-img .card:hover img 
{
  transform: scale(1.02);
}


.light-box-delete
{
  position: absolute;
  font-size: 15px;
  color: var(--bs-primary) !important;
  cursor: pointer;
  background: none !important;
  text-decoration: none;
  font-family: var(--title-font);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all .5s ease-in;
}
.light-box-delete:hover 
{
  color: #fff !important;
}


@media screen and (max-width: 768px)
{
  .light-box-delete
  {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}












