/* =========================
   Meet Neo. Let's follow the white rabbit :)
   Author: Qbit
   Build Date: 25/11/2025
   Version: 1.0.0

   File path: /uploads/
========================= */

/* =========================
   Import fonts 
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&family=Quicksand&display=swap');

/* =========================
   Root styles 
========================= */

:root {

}

/* =========================
   Global styles 
========================= */

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
   min-height: 100dvh;
   font-size: 1rem;
   font-family: 'Quicksand', sans-serif;
   color: #333;
   line-height: 1.6;
   margin-top: 120px;
}

h1,h2,h3,h4,h5,h6 {
   font-size: 1.2em;
   font-family: 'Poppins', sans-serif; 
   color: #333;
   line-height: 1.5;
   margin-bottom: 20px;
}

p {
   margin-bottom: 20px;
}

a {
   text-decoration: none;
   transition: color 0.3s ease, transform 0.5s ease-in-out;
   color: #333;
}

a:hover {
   color: #ccc;
}

ul {
   list-style: none;
   margin-bottom: 20px;
}

img {
    width: 100%;
    vertical-align: bottom;
}

/* =========================
   Main styles 
========================= */

.main {
   margin-top: 150px;
}

/* =========================
   Header styles 
========================= */

header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #f8f8f8;
  z-index: 1000;
}

.logo {
  width: 210px;
  height: 50px;
  background-color: #333;
  display: block;
  color: red;
  /* text-indent: -9999px; */
}

header nav li {
   display: inline;
   margin-left: 5px;
}

/* =========================
   Carousel styles 
========================= */

#carousel {
    position: relative;
    width: 100%;
    height: 600px;
    color: #fff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

/* Image fills container */
#carousel picture,
#carousel picture img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#carousel picture img {
    object-fit: cover;
}

/* Overlay */
#carousel::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.4); */
    z-index: 1;
}

/* Content */
#carousel main {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
}

#carousel h1 {
   color: #fff;
   font-size: 1.6em;
}

#carousel .col-1 {
   background: rgba(0, 0, 0, 0.3);
}

/* =========================
   Button styles
========================= */

.btns  li {
   display: inline;
   margin-left: 5px;
}

.btn {
   border: solid 1px #333;
   border-radius: 5px;
   background-color: #333;
   font-size: 0.8em;
   color: #ccc;
   padding: 10px 15px 10px 15px;
}

.more-btn {
   border: solid 1px #333;
   border-radius: 5px;
   font-size: 0.8em;
   color: #333;
   padding: 10px 15px 10px 15px;
}

.more-btn:hover {
   background-color: #333;
   color: #ccc;
}

/* =========================
   Search styles
========================= */

.search-bar {
   display: flex;
   width: 100%;
   border: 1px solid #ccc;
   border-radius: 6px;
   overflow: hidden;
}

.search-bar input {
   flex: 1;
   padding: 12px;
   border: none;
   outline: none;
}

.search-bar button {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 0 12px;
   border: none;
   background: #333;
   color: #ccc;
   cursor: pointer;
}

.material-icons {
   font-size: 1.0em;
}

/* =========================
   Form styles 
========================= */

#signup input[type="text"], input[type="password"] {
  width: 100%;
  border: solid 1px #f0f0f0;
  background-color: #f0f0f0;
  border-radius: 0;
  color: #333;
  -webkit-appearance: none;
  margin-bottom: 15px;
  padding: 15px;
}

.required {
   color: red;
}

/* =========================
   Password styles 
========================= */

.password {
  position: relative;
}

.password button {
  position: absolute;
  right: 10px;
  top: 13px;
  height: 30px;
  border: none;
  background: transparent;
  cursor: pointer;
}

#passwordRequirements {
  font-size: 0.8em;
  color: red;
  margin: 10px 0 20px 0;
}

#matchMessage {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.8em;
  font-style: normal;
  color: red;
}

/* =========================
   Social styles 
========================= */

.social li {
   display: inline-block;
}

.social a {
   display: inline-block;
   width: 35px;
   height: 35px;
   border-radius: 50%;
   background-color: #ccc;
   background-position: center;
   background-size: 30px;
   background-repeat: no-repeat;
}

.social a.facebook { 
   background-image: url('/uploads/svg/facebook.svg'); 
}

.social a.twitter { 
   background-image: url('/uploads/svg/twitter.svg'); 
}
.social a.instagram { 
   background-image: url('/uploads/svg/instagram.svg'); 
}

.social a.linkedin { 
   background-image: url('/uploads/svg/linkedin.svg'); 
}

.social a.youtube { 
   background-image: url('/uploads/svg/youtube.svg'); 
}

.social a.tiktok { 
   background-image: url('/uploads/svg/tiktok.svg'); 
}

.social a.threads { 
   background-image: url('/uploads/svg/threads.svg'); 
}

.social a.pinterest { 
   background-image: url('/uploads/svg/pinterest.svg'); 
}

.social a.google { 
   background-image: url('/uploads/svg/google.svg'); 
}

/* =========================
   Navigation styles
========================= */

#category-nav {
   padding: 10px 20px 10px 20px;
}

#category-nav nav ul {
   margin: 0;
}

/* =========================
   Featured styles
========================= */

#featured {
   width: 100%;
   display: flex;
   flex-wrap: wrap;
}

.featured {
   margin-top: 20px;
}

/* =========================
   Footer styles
========================= */

footer {
   background-color: #f8f8f8;
   margin-top: 20px;
}

/* =========================
   Responsive styles
========================= */

@media (max-width: 768px) { 


}