@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Ephesis&family=Great+Vibes&family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Tangerine:wght@400;700&display=swap');

*{
    font-family: "Montserrat", sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
  }

  body {
    background-color: #FFFBF2;  
  }

  .header {
    position: fixed; 
    top: 0;          
    left: 0;       
    width: 100%;    
    background-color: #FFFBF2;
    z-index: 10;    
    transition: background-color 0.4s ease-in-out, opacity 0.4s ease-in-out, color 0.4s ease-in-out;
  }
  
  
  .logo-image {
    height: 30px; 
    width: auto;
  }
  
  
  .header ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
   padding: 10px;
  }
  
  .header li {
    height: 50px;
    font-size: 16px;
    font-weight: 500;
  }
  
  .header a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #2F3247;
    transition: color 0.4s ease-in-out;
  }
  
  .header a:hover {
    border-bottom: 3px solid #262E19;
    color: #262E19;
  }
  
  .header li:first-child {
    margin-right: auto;
  }
  
  
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #FFFBF2;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
  }
  
  nav .sidebar {
    align-items: flex-start;
    justify-content: flex-start;
    display: none;
  }
  
  .sidebar li {
    width: 100%;
  }
  
  .sidebar a {
    width: 100%;
    padding: 10px 15px;
    text-decoration: none;
    color: #2F3247;
  }
  
  .sidebar a:hover {
    background-color: #262E19;
    color: #FFFBF2;
  }
  
  
  .menu-button {
    display: none;
  }
  
  @media (max-width: 1000px) {
    .hideOnMobile {
      display: none;
    }
    .menu-button { 
      display: block;
    }
  }
  
  @media (max-width: 400px) {
    .sidebar {
      width: 100%;
    }
  }


.my-header {
  margin-top: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.my-fav {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  margin-top: 0px;
  margin-bottom: 100px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.my-list-text {
  font-size: 25px;
}

.fav-header {
  font-size: 50px;
  font-size: 98px;
  font-weight: 300;
  
  text-align: center;
  font-family: 'Literata', serif;
  color: #262E19;;
}


.fav-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.fav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #262E19;
  padding: 40px 20px;
  gap: 20px;
  flex-wrap: wrap;
}


.fav-item img {
  width: 120px;
  height: 160px;
  object-fit: contain;
}


.fav-details {
  flex: 1;
  padding-left: 15px;
  text-align: left;
  min-width: 300px;
}

.fav-details h3 {
  font-weight: 400;
  font-size: 20px;
  padding-bottom: 8px;
  text-transform: uppercase;
  min-width: auto;
}

.price {
  font-weight: 600;
  font-size: 18px;
}

.date {
  font-size: 14px;
  margin-top: 10px;
}


.view-btn {
  background-color: #2b2e1a;
  color: #FFFBF2;
  padding: 20px 50px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  margin-left: 20px;
  transition: background-color 0.3s ease;
}

.view-btn:hover {
  background-color: #464b2f;
}


.remove-fav {
  background: none;
  border: none;
  color: #2b2e1a;
  font-size: 18px;
  cursor: pointer;
  
}

.remove-fav img {
  max-width: 18px;
  margin-right: 10px;
}


@media (max-width: 1024px) {
  .fav-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  
 

  .fav-item img {
      width: 100px;
      height: 140px;
  }

  .fav-details {
      padding-left: 0;
      text-align: center;
  }

  .fav-details h3 {
      font-size: 18px;
  }

  .price {
      font-size: 16px;
  }

  .view-btn {
      padding: 15px 40px;
      font-size: 14px;
      margin-left: 0;
  }
}

@media (max-width: 768px) {
  .fav-header {
      font-size: 40px;
  }

  .fav-item {
      padding: 30px 15px;
  }

  .fav-item img {
      width: 90px;
      height: 120px;
      
  }

  .fav-details h3 {
      font-size: 16px;
  }

  .price {
      font-size: 14px;
  }

  .view-btn {
      padding: 12px 35px;
      font-size: 13px;
  }
}

@media (max-width: 480px) {
  .fav-header {
      font-size: 48px;
  }

  .fav-item {
      padding: 20px 10px;
  }

  .image-fav img {
      width: 80px;
      height: 110px;
  }

  

  .fav-details h3 {
      font-size: 14px;
  }

  .price {
      font-size: 13px;
  }

  .view-btn {
      padding: 10px 30px;
      font-size: 12px;
  }
}



  /* questions start */

.questions {
    position: relative;
    width: 94%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
    margin-top: 50px;
    margin: auto;
    margin-bottom: 100px;
  
  }
  
  .questions-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    
  }
  
  .questions .content {
    position: relative;
    color: #FFFBF2;
    font-family: 'Literata', serif;
    margin-left: 300px;
    max-width: 600px;
  }
  
  .questions .content h1 {
    font-size: 95px;
    font-weight: 200;
  }
  
  .questions .content h1 span {
    font-family: 'Great Vibes', cursive;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 7px;
  }
  
  .questions .content p {
    width: 100%;
    padding-bottom: 15px;
    line-height: 1.5;
    font-weight: 600;
    padding-bottom: 50px;
  }
  
  .btn {
    background-color: white;
    color: #181616;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    padding: 12px 20px;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: #262E19;
    color: #FFFBF2;
  }
  
  @media screen and (max-width: 1100px) {
    .questions {
      height: auto;
      justify-content: center;
      text-align: center;
    }
  
    .questions .content {
      margin-left: 0;
      text-align: center;
    }
  
    .questions .content h1 {
      font-size: 60px;
    }
  
    .questions .content p {
      font-size: 12px;
      padding: 0 50px;
    }
  
    .btn {
      padding: 8px 12px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .questions {
      height: auto;
      height: 80vh;
    }
  
    .questions .content {
      text-align: center;
    }
  
    .questions .content h1 {
      font-size: 50px;
    }
  
    .questions .content p {
      font-size: 12px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .questions .content h1 {
      font-size: 40px;
    }
    .questions {
      height: auto;
      height: 80vh;
    }
  
    .questions .content p {
      padding-bottom: 20px;
    }
  }
  
  /* questions end */



