@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Annie+Use+Your+Telescope&display=swap');

html, body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #111e26FF;

  cursor: url('../assets/cursor-normal.svg'), auto;
}

*, *::before, *::after {
  box-sizing: border-box;
}

:root{
  --wite-100: #f3f7f4FF;

  /* Font Families */
  --ff-handwritten: 'Annie Use Your Telescope', cursive;
  --ff-primary: 'Poppins', sans-serif;

  /* Font Sizes (Converted from px to rem for accessibility) */
  --fs-handwritten-sm: 1.125rem; /* 18px */
  --fs-handwritten-lg: 6rem;     /* 96px */
  --fs-title:          4.5rem;   /* 72px */
  --fs-subtitle:       2.25rem;  /* 36px */
  --fs-heading:        1.125rem; /* 18px */
  --fs-content:        1rem;     /* 16px */

  /* Structural Line Heights (Prevents text overlapping) */
  --lh-tight: 1.1;
  --lh-heading: 1.3;
  --lh-body: 1.6;

  /* Breakpoints for media querry */
  --bp-small: 24em;
  --bp-med: 46.8em;
  --bp-large: 50em;
  --bp-xl: 73em;
}

/* Base Body Setup */
body {
  font-family: var(--ff-primary);
  font-size: var(--fs-content);
  line-height: var(--lh-body);
  color: #f3f7f4FF;
  -webkit-font-smoothing: antialiased;
}

/* Base Headings */
h1 {
  font-family: var(--ff-primary);
  font-size: var(--fs-title);
  line-height: var(--lh-tight);
  color: #f3f7f4FF;
  margin: 0;
}

h2 {
  font-family: var(--ff-primary);
  font-size: var(--fs-subtitle);
  line-height: var(--lh-heading);
  color: #f3f7f4FF;
  font-weight: 400;
  margin: 0;
}

h3 {
  font-family: var(--ff-primary);
  font-size: var(--fs-heading);
  line-height: var(--lh-heading);
  color: #f3f7f4FF;
  margin: 0;
}

p {
  font-family: var(--ff-primary);
  font-size: var(--fs-content);
  line-height: var(--lh-body);
  color: #f3f7f4FF;
  margin: 0;
}

a {
  text-decoration: none;
}

.handwritten-title-small {
  font-family: var(--ff-handwritten);
  font-size: var(--fs-handwritten-sm);
  line-height: var(--lh-heading);
  margin: 0;
}

.handwritten-title-large {
  font-family: var(--ff-handwritten);
  font-size: var(--fs-handwritten-lg);
  line-height: var(--lh-tight);
}
@media screen and (width <= 480px) {
  .handwritten-title-large {
    font-size: 5rem !important;
  }
}

.title-font {
  font-family: var(--ff-primary);
  font-size: var(--fs-title);
  line-height: var(--lh-tight);
  font-weight: 400;
}
@media screen and (width <= 480px) {
  .title-font{
    font-size: 3rem;
  }
}

.subtitle-font {
  font-family: var(--ff-primary);
  font-size: var(--fs-subtitle);
  line-height: var(--lh-heading);
}

.heading-font {
  font-family: var(--ff-primary);
  font-size: var(--fs-heading);
  line-height: var(--lh-heading);
}

.content-font {
  font-family: var(--ff-primary);
  font-size: var(--fs-content);
  line-height: var(--lh-body);
}

body::before {
  content: "";
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 

  background-image: url('../assets/grid-bg-patter.png'), url('../assets/grain.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: repeat-y;

  opacity: 0.04;
}

.cursor-normal-dark {cursor: url('../assets/cursor-normal-dark.svg'), auto;}
.cursor-normal-light {cursor: url('../assets/custom-cursor.svg'),20,20,auto;}

.nav-bar {
  position: sticky;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.813rem 7.813rem;
  flex-wrap: nowrap;
}

.nav-logo {
  width: min(30vw, 175px);
}


.nav-links {
  width: fit-content;
  display: flex;
  align-content: stretch;
  justify-content: start;
  column-gap: 15px;
  flex-wrap: nowrap;
  font-family: "Poppins";
  font-weight: 500;
  font-size: 14/1.2;
  color: #f3f7f4FF;
}

.nav-bar-mobile {
  position: sticky;
  top:0;
  display: none;
  backdrop-filter: blur(5px);
}
.mobile-nav-logo {
  width: min(25vw,40px);
  object-fit: contain;
}

.mobile-nav-menu {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 25px 25px;
  gap: 25px;
  background-color: #0d5175;
}

.mobile-nav-menu-cont {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media screen and (width <= 480px) {
  .nav-bar {
    display: none;
  }

  .nav-bar-mobile {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 25px 25px;
  }
}

.classic-btn {
  position: relative;
  width: fit-content;
  background: #0d5175FF;
  border: 1px solid #f3f7f4FF;
  border-start-start-radius: 10px;
  border-start-end-radius: 10px;
  border-end-start-radius: 10px;
  border-end-end-radius: 10px;
  box-shadow: 4px 4px 0px 0px #f3f7f4FF;
  display: flex;
  align-items: start;
  align-content: stretch;
  justify-content: start;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
  padding-block-start: 20px;
  padding-block-end: 20px;
  flex-direction: row;
  flex-wrap: nowrap;
  color: #f3f7f4FF;

  font-family: "Poppins";
  font-weight: 600;
  font-size: 0.8rem;

  transition: transform 0.2s, box-shadow 0.2s ease;
}

.classic-btn:hover {
  box-shadow: 2px 2px 0px 0px #f3f7f4FF;
  transform: scale(0.95)
}

.classic-btn-mobile {
  position: relative;
  width: fit-content;
  background: #0d5175FF;
  border: 1px solid #f3f7f4FF;
  border-radius: 5px;
  box-shadow: 4px 4px 0px 0px #f3f7f4FF;
  display: flex;
  align-items: center;
  align-content: stretch;
  justify-content: center;
  padding: 10px;
  flex-direction: row;
  flex-wrap: nowrap;
  color: #f3f7f4FF;

  font-family: "Poppins";
  font-weight: 600;
  font-size: 14;

  transition: transform 0.2s, box-shadow 0.2s ease;
}

.in-the-shadow {
  display: none;
  background-color: #000000;
}

.border-radi-15 {
  border-radius: 15px;
}

.bnt-dark {
  color: #000000;
  background-color: #f3f7f4;
  box-shadow: 4px 4px 0px 0px #000000;
  font-weight: 500;
}

.classic-btn-mobile:hover {
  box-shadow: 2px 2px 0px 0px #f3f7f4FF;
  transform: scale(0.95)
}

.classic-btn-dark {
  position: relative;
  width: fit-content;
  background: #0d5175FF;
  border: 1px solid #000000FF;
  border-start-start-radius: 10px;
  border-start-end-radius: 10px;
  border-end-start-radius: 10px;
  border-end-end-radius: 10px;
  box-shadow: 4px 4px 0px 0px #000000FF;
  display: flex;
  align-items: start;
  align-content: stretch;
  justify-content: start;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
  padding-block-start: 20px;
  padding-block-end: 20px;
  flex-direction: row;
  flex-wrap: nowrap;
  color: #f3f7f4FF;

  font-family: "Poppins";
  font-weight: 600;
  font-size: 14;

  transition: transform 0.2s, box-shadow 0.2s ease;
}

.classic-btn-dark:hover {
  box-shadow: 2px 2px 0px 0px #000000FF;
  transform: scale(0.95)
}


.flex-section-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 125px;
  gap: 50px;
  flex-wrap: wrap;
}

@media screen and (width <= 480px) {
  .flex-section-large {
    padding: 50px 25px;
    font-size: 4rem;
  }
}

.non-grid-background {
  position: relative;
  background-color: #111e26;
}
.non-grid-background::before{
  content: "";
  position: abosolute;
  display: block;
  background-image: url('../assets/grain.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: repeat-y;
  opacity: 0.04;
}

.hero-section-title {
  width: 75%;
  color: var(--wite-100);
  font-family: 'Annie Use Your Telescope';
  font-size: 7.5rem;
  font-style: normal;
  font-weight: 400;
  font-display: block;
  text-align: center;
  margin: 0;
}

.header-open-bg {
  background-color: #0d5175FF;
}
.hdr-toggle-btn {
  background-color: #f3f7f4;
  box-shadow: 4px 4px 0px 0px #1c3657 !important;
  img {
    filter: invert(1);
  }
}

@media screen and (width <= 480px) {
  .hero-section-title{
    width: 100%;
    font-size: 4rem;
  }
  .hero-section-subtitle {
    font-size: 3rem;
  }
}

.hero-section-title-small {
  color: var(--wite-100);
  font-family: 'Annie Use Your Telescope';
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  font-display: block;
  text-align: center;
  margin: 0;
}

.hero-section-subtitle {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  color: #f3f7f4FF;
  margin: 0;
}

.service-hero-tag {
  position: relative;
  width: 100%;
  display: grid;
  align-items: center;
  align-content: stretch;
  justify-items: start;
  justify-content: stretch;
  column-gap: 50px;
  z-index: 0;
  flex-grow: 1;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (width <= 480px) {
  .service-hero-tag {
    grid-template-columns: 1fr;
  }
}

.sht-header {
  width: 100%;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 48px;
  text-align: center;
  color: #f3f7f4FF;
}

.sht-content {
  width: 100%;
  font-family: 'Annie Use Your Telescope';
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  color: #f3f7f4FF;
}

.blank-flex-left-align {
  display: flex;
  flex-direction: row;
  justify-content: left;
  width: 100%;
}

.section-postate-tag {
  padding: 50px 30px;
  background-color: #0d5175;
}

.selected-work-card {
  width: 80%;
  height: fit-content;
  padding: 20px 20px 20px 20px;
  background-color: #f3f7f4;
  border-radius: 15px;
  border-color: #000000FF;
  border-style: solid;
  border-width: 5px;
  box-shadow: : 16px 16px 0px 0px #f3f7f4FF;
}

@media screen and (width <= 480px){
  .selected-work-card {
    width: 100%;
  }
}

.selected-work-card-img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 5px;
}

.section-title-row {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: end;
}
@media screen and (width <= 480px) {
  .section-title-row {
    flex-direction: column;
    justify-content: normal;
    align-items: stretch;
  }
}

.section-process-title-icon {
  width: 40%;
}

.carousel{
  width: 100%;
  height: 70vh;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  gap: 50px;

  >* {
    flex: 0 0 100%;
  }

  &:hover .carousel-group {
    animation-play-state: paused;
  }

  img {
    border-radius: 5px;
  }
}

.carousel-card {
  font-size: xx-large;
  justify-content: center;
  align-items: center;
}

@media screen and (width <= 480px) {
  .carousel-cards {
    height: 60vh;
  }
}

.carousel-group {
  display: flex;
  gap:50px;
  will-change: transform;
  animation: scrolling 25s linear infinite;
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.section-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 125px;
}
@media screen and (width <= 480px) {
  .section-banner {
    padding: 50px 25px;
  }
}

.cat-banner-cotainer {
  position: relative;
  width: 60%;
  height: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:25px;
  background: #f3f7f4;
  border: 5px solid #000000;
  border-radius: 15px;
  box-shadow: 16px 16px 0px 0px #000000FF;
  z-index: 0;
}

.cat-banner-cotainer::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  background-image: url('../assets/paper-texture.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: repeat-y;

  opacity: 0.25;
}
@media screen and (width <= 480px) {
  .cat-banner-cotainer{
    width: 100%;

    h4 {
      text-align: center;
    }
  }
}

.footer-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 50px 125px 50px 125px;
  margin-top: 125px;
  background-color: #0d5175;
  gap:75px;
  z-index: 0;
}

.footer-container::before{
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  background-image: url('../assets/grid-bg-patter.png'), url('../assets/grain.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: repeat-y;

  opacity: 0.03;
}

.footer-row {
  display: flex;
  flex-direction: row;
  gap:100px;
}

.footer-column {
  width:fit-content;
  display: flex;
  flex-direction: column;
  gap:15px;
}

@media screen and (width <= 480px) {
  .footer-container {
      padding: 50px 25px;
  }

  .footer-row {
    width: 100%;
    flex-direction: column;
    justify-content; center;
    align-items: center;
  }

  .footer-column {
    justify-content: center;
    align-items: center;
  }
}


.studio-gallery {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.studio-gallery-image {
  width: 30%;
  border: solid 10px #f3f7f4;
  border-radius: 5px;
}

@media screen and (width <= 480px) {
  .studio-gallery {
    flex-direction: column;
  }
  .studio-gallery-image {
    width: 40vh;
  }
}

@media screen and (width <= 480px) {
  .about-hero-section {
    padding: 50px 25px;
  }
}

.flex-section-blog-content {
  display: flex;
  flex-direction: column;
  padding: 50px 200px;
  gap: 10px;
}

.video-as-image {
  /* Prevent users from pausing, dragging, or right-clicking */
  pointer-events: none; 
  
  /* Remove default focus borders */
  outline: none;       
  
  /* Make it scale like a standard responsive image */
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 10px solid #f3f7f4FF;
  border-radius: 15px;
}

