/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --body-color: transparent
  --container-color: transparent;
  --body-font: "Poppins", sans-serif;
  --first-color : white !important;
}

/* Responsive typography */
@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
      transparent, 
      transparent 19px, 
      rgba(255, 255, 255, 0.05) 20px
    ),
    repeating-linear-gradient(
      90deg, 
      transparent, 
      transparent 19px, 
      rgba(255, 255, 255, 0.05) 20px
    );
  z-index: -.2; /* Keeps it behind all content */
  pointer-events: none; /* Prevents interactions */
}

body{
 
  z-index: -1;
  /* background-color: #0f172a; */
  background-size: 200% 200%;
  animation: gradient-move 10s ease infinite;
}

body,
button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
  transition: 0.4s; /* for light mode animation */
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-semibold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 968px;
  margin-left: 1rem;
  margin-right: 1rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.main {
  overflow: hidden;
}

.section {
  padding: 4.5rem 0 1rem;
}

.section__title,
.section__subtitle {
  text-align: center;
  margin-top: 30px;
  color: var(--first-color) !important;
  font-weight: 800;
  font-size: 20px;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--first-color);
  margin-bottom: 2rem;
}

.section__subtitle {
  display: block;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  margin-bottom: 30px;
}

/*=============== HEADER & NAV===============*/

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--first-color);
  font-weight: var(--font-medium);
  transition: 0.4s;
}

.nav__logo:hover {
  color: var(--first-color-alt);
}

.nav__menu {
  position: fixed;
  bottom: 1rem;
  background-color: hsla(var(--second-hue), 32%, 16%, 0.8);
  width: 90%;
  border-radius: 4rem;
  padding: 1rem 2.25rem;
  backdrop-filter: blur(10px);
  transition: 0.4s;
}

.nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__link {
  color: var(--text-color);
  font-size: 1.25rem;
  padding: 0.4rem;
  font-weight: var(--font-medium);
  text-decoration: none;
  transition: 0.4s;
  display: flex;
  border-radius: 5rem;
}

/* Active link */
.active-link {
  background: linear-gradient(
    180deg,
    hsla(var(--first-hue), var(--sat), var(--lig), 0.5),
    hsla(var(--first-hue), var(--sat), var(--lig), 0.2)
  );
  box-shadow: 0 0 16px hsla(var(--first-hue), var(--sat), var(--lig), 0.4);
  border-radius: 5rem;

  color: var(--title-color);
}

/*Active modal*/

.active-modal {
  visibility: visible;
  opacity: 1;
}

/*=============== WORK ===============*/

.work__container {
  padding-top: 0;
}

.work__filters {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.75rem;
  margin-bottom: 2rem;
}

.work__item {
  cursor: pointer;
  color: var(--title-color);
  padding: 0.25rem 0.75rem;
  font-weight: var(--font-medium);
  border-radius: 0.5rem;
}

.work__card {
  background-color: var(--container-color);
  padding: 1rem;
  border-radius: 1rem;
}

.work__img {
  border-radius: 1rem;
  margin-bottom: 0.75rem;
}

.work__title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  margin-bottom: 0.25rem;
}

.work__button {
  width: max-content;
  color: var(--first-color);
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  cursor: pointer;
}

.work__button:hover .work__icon {
  transform: translateX(0.25rem);
}

.work__icon {
  font-size: 1rem;
  transition: 0.4s;
}

/* Active item work*/
.active-work {
  background-color: var(--first-color);
  color: var(--body-color);
}

/*=============== CONTACT ===============*/

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.5rem;
  border-radius: 0.5rem;
  background-color: var(--container-color);
}

::-webkit-scrollbar-track {
  border-radius: 1.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--first-color);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--first-color-alt);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .nav__menu {
    padding: 1rem 1.5rem;
  }

  .work__item {
    font-size: var(--small-font-size);
  }

  .work__filters {
    column-gap: 0.25rem;
  }
  
}

@media screen and (min-width: 435px) {
  .work__container {
    justify-content: center;
    grid-template-columns: repeat(2, max-content);
  }

  .work__img {
    width: 165px;
  }
  
}

/* For medium devices */
@media screen and (min-width: 630px) {
  .nav__menu {
    width: 328px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .work__container {
    justify-content: center;
    grid-template-columns: repeat(2, max-content);
  }

  .work__img {
    width: 250px;
  }

  /* For large devices */
  @media screen and (min-width: 992px) {
    .container {
      margin-left: auto;
      margin-right: auto;
    }

    .section {
      padding: 6.5rem 0 1rem;
    }

    .section__title
   {
      margin-bottom: 3.5rem;
       border: 2px solid red;
    
    } 

    .nav {
      height: calc(var(--header-height) + 1rem);
    }

    .work__container {
      grid-template-columns: repeat(3, max-content);
      gap: 1rem;
    }

    .work__card {
      padding: 1.25rem;
    }

    .work__img {
      margin-bottom: 2rem;
    }

    .work__title {
      margin-bottom: 0.5rem;
    }
  }
}

/* ============= NEW STYLES ==================*/

@font-face {
  font-family: "grifter";
  src: url(fonts/grifterbold.otf) format("opentype");
}
.videoCategories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 10rem 5rem;
}
.wedding,
.events,
.docs,
.reelVids {
  display: flex;
  gap: 1rem;
}
.video01 {
  max-width: 400px;
}
.video01 .thumbnail {
  width: 100%;
  border-radius: 8px;
}
.video01 .vidDetails {
  padding: 0.5rem 1.5rem;
}

.video01 .vidDetails p {
  padding-top: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.reels {
  margin: 4rem 0;
}



.reel-banner img {
    max-width: 350px;
    height: 400px;
}

.section__title {
  margin: 1rem 0 0.5rem 0;
  font-size: 16px;
  font-weight: 400;
  font-family: "poppins";
  color: rgb(255, 255, 255);
  display: none;
}
.work {
  padding: 5rem 0;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.work__filters {
  display: flex;
  gap: 1rem;
  font-size: 14px;
  overflow-x: scroll;
  max-width: 90%;
  align-items: center;
}
.work__item {
  padding: 0.4rem 1rem;
  /* border: 1px solid #787878; */
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  /* opacity: .8; */
  transition: all 0.3s;
}
.work__item:hover {
  color: #000;
  background: #fff;
  opacity: 1;
}
.active-work {
  color: #000;
  opacity: 1;
  font-weight: 600;
  background: #fff;
  box-shadow: 0px 4px 25px rgba(255, 255, 255, 0.15);
}

.cardsHolder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 1200px;
  max-width: 1520px;
}
.work__card {
  max-width: 365px;
}
.work__card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 0.3s;
}
.work__card img:hover {
  filter: saturate(150%);
  opacity: 0.6;
}

.work__category,
.work__title {
  margin-left: 20px;
  line-height: 16px;
}
.work__title {
  font-size: 16px;
  color: #fff;
}
.work__category {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.411);

}

/* for phone screens */
@media (max-width: 620px) {
  .work__filters {
    gap: 2px;
  }
  .work {
    gap: 0;
  }
}


.reels-list {
  display: flex;
  align-items: center;
}
