* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Basis Grotesque Pro", Arial, sans-serif; /* Added Arial as a fallback */
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
.container{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #000;
    overflow: hidden;  
}
.portrait-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.portrait-images .img img {
    width: 100%;
    height: auto;
}

*/



.menu-btn p {
    width: 20%;;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 6px 12px;
    text-align: center;
}

.logo a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.items {
    position: fixed;
    width: 30%;
    height: 100vh;
    padding: 0 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.item {
    width: max-content;
    padding: 0.25em 0;
    cursor: pointer;
}

.item p {
    color: #000;
    padding: 6px 12px;
    font-weight: lighter;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    backdrop-filter: blur(20px);
    transition: 0.3s;
    text-decoration: none
}
.item a {
    text-decoration: none;
    color: #000;
}

.item:hover p {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.preview {
    position: fixed;
    width: 100vw;
    height: 100vh;
    color: #000;
    z-index: 1;
}

.preview-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

/*
.title{
    transform: translate(-50%);
}
*/

.preview-title h1 {
    font-weight: lighter;
    font-size: 80px;
}

/*----------variant 1-----------*/
.preview.variant-1 .preview-img {
    position: absolute;
    bottom: 0%;
    right: 0%;
    margin: 2em;
    width: 300px;
    height: 400px;
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
     box-shadow: 50px;
    border-radius: 20px;
}

.preview.variant-1 .preview-title {
    position: absolute;
    top: 35%;
    left: 25%;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
    
}

.preview.variant-1 .preview-tags {
    position: absolute;
    bottom: 25%;
    right: 40%;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
}

.preview.variant-1 .preview-description {
    width: 250px;
    position: absolute;
    right: 25%;
    top: 25%;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
}

/*--------------variant 2----------- */
.preview.variant-2 .preview-img {
    position: absolute;
    bottom: 10%;
    right: 50%;
    margin: 2em;
    width: 600px;
    height: 250px;
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
     box-shadow: 50px;
    border-radius: 20px;
}

.preview.variant-2 .preview-title {
    position: absolute;
    top: 30%;
    left: 50%;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
}

.preview.variant-2 .preview-tags {
    position: absolute;
    bottom: 25%;
    right: 25%;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
}

.preview.variant-2 .preview-description {
    width: 250px;
    position: absolute;
    right: 10%;
    top: 15%;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
}
/*--------------variant 3----------- */
.preview.variant-3 .preview-img {
    position: absolute;
    bottom: 25%;
    right: 20%;
    margin: 2em;
    width: 500px;
    height: 300px;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    box-shadow: 50px;
    border-radius: 20px;
}

.preview.variant-3 .preview-title {
    position: absolute;
    top: 40%;
    left: 15%;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
}

.preview.variant-3 .preview-tags {
    position: absolute;
    bottom: 20%;
    right: 30%;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
}

.preview.variant-3 .preview-description {
    width: 250px;
    position: absolute;
    right: 20%;
    top: 15%;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
}

/*----------end of variant-----------*/

/*----------nav bar section in index-----------*/
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 2.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/


ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/


/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
    
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
 
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
    margin-right: 30px;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
    color: #fff;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s; transform .4s;
}

.nav__close {
  opacity: 0;
}
ul{
    margin-right: 40px;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
  }
    
    ul{
    margin-right: 40px;
}
}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
    color: #fff;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
    color: #fff;
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
    color: #fff;
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color: var(--black-color);
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
 

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}

/*----------products page----------*/
.content{
    width: 100%;
    height: 100vh;
}
.left,
.right {
  position: absolute;
  width: 50%;
  height: 100%;
  z-index: 10;
}

.left {
  background: #B3B4AF;
  left: 0%;
  width: 0%;
}

.right {
  background: #191921;
  right: 0%;
  width: 100%;
}
.img-wrapper {
  position: absolute;
  bottom: 0;
  left: 180px;
    z-index: 20;
}

.img-wrapper .karina {
  background-image: url('./img/1.jpg');
  background-size: cover;
  height: 550px;
  width: 0;
}

.product_info {
  position: absolute;
  bottom: 0;
  left: 180px;
  background: rgba(0, 0, 0, .8);
  padding: 0 10px;
     z-index: 22;
}

.product_info ul li {
  display: inline-block;
  padding: 20px 25px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 8px;
  font-weight: 600;
     z-index: 22;
}


.product_info i {
  font-size: 18px;
     z-index: 22;
}

.text {
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translateY(20%);
  z-index: 22;
}

.text h1 {
  font-size: 90px;
  color: #fff;
  font-family: 'Raiderfont';
  text-transform: uppercase;
  z-index: 22;
}

.text p {
  font-size: 20px;
  color: #fff;
  font-family: monospace;
     z-index: 22;
}

.name {
  position: absolute;
  top: 50%;
  left: -270px;
  transform: translateY(-150%);
  font-size: 90px;
  font-family: 'Raiderfont';
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
     z-index: 22;
}


/*-----------------portrait page----------*/
.blocks-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
    }

    #blocks {
        background-color: #000;
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .block {
        width: 50px;
        height: 50px;
        border: 0.5px solid rgba(255, 255, 255, 0.075);
    }

    .highlight {
        background-color: rgba(	255, 101, 0, 0.81);
    }
.portrait-images {
        width: 60%;
        margin: 1em 20em;
        margin-top: 10em;
        display: flex;
        gap: 10em;
    }

.portrait-images .col {
        flex: 1;
    }

.portrait-images .col:nth-child() {
        margin-top: 15em;
    }

.portrait-images .img {
        width: 100%;
        height: auto;
        border: 1px solid #c5b6af;
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 10px;
        margin-bottom: 10em;
    box-shadow: 20px 40px 90px 0 rgba(255, 255, 255, 0.6);
    }

.portrait-images-studio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;  
    max-width: 1000px;  
}


    .portrait-images-studio .img {
        margin: 6em 2em;
        width: 85%; /* full width of the column */
            height: auto; /* adjust height automatically */
            border: 2px solid #000; /* Helps visualize the grid items */
        border-radius: 50px;
            z-index: 30; 
}

        

    .portrait-images-studio .img img {
            align-items: center;
            width: 100%; /* images will scale to fit their containers */
            height: auto; /* maintain aspect ratio */
            display: block; /* removes bottom margin/padding */
            border: 4px solid #fff;
              box-shadow: 20px 40px 90px 0 rgba(255, 255, 255, 0.5);
        
        }
    .portrait-images-studio .img img:hover{
        transform: scale(1.3);
        transition: .9s;
    }

/*--------------footer--------------*/










