html,
body {
  width: 100%;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; *behavior: url(../scripts/boxsizing.htc);
}

body {
  --nav-font-size: 1.3rem;
  --trans-bg: rgba(0, 0, 0, 0.2);
  --trans-bg-dark: rgba(0, 0, 0, 0.35);
  --round-borders: 1rem;
}

/* =================== */
/* text styles */
/* =================== */

p {
  font-size: 1rem;
  letter-spacing: 0.05rem;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover, a:focus {
  text-decoration: inherit;
  color: inherit;
  cursor: default;
}

/* reset ul, li styles */
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

li {
  padding: 1.5rem;
  margin: 0;
  white-space: nowrap;
}

.heading-big,
.heading-medium,
.heading-small {
  font-family: 'Archivo Black', sans-serif;
}

.heading-big {
  font-size: 2.8rem;
  padding: 2.5rem 0 1rem 0;
}

.heading-medium {
  font-size: 2rem;
}

.heading-small {
  font-size: 1.5rem;
}

/* =================== */
/* images */
/* =================== */
img {
  width: 100%;
  height: auto;
}

.color {
  opacity: 0.4;
  filter: alpha(opacity=40); /* msie */
  filter: blur(0.4rem);
  transition: all 0.1s;
}

/* =================== */
/* containers */
/* =================== */
.container {
  width: 95%;
}

/* =================== */
/* main navigation */
/* =================== */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  /* left: 0; */
  right: 0;
  padding: 1rem 2rem;
  max-width: 100%;
  z-index: 1;
}

.main-nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  width: 60rem;
  font-size: var(--nav-font-size);
}

.main-nav a {
  background: var(--trans-bg);
  border-radius: var(--round-borders);
  padding: 0.6rem 1.1rem;
}

/* =================== */
/* main logo */
/* =================== */

.btn-container {
    text-align: right;
    /* Aligns text to the right */
}

.main-logo {
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.7rem;
  padding: 0.5rem 0;
  width: 12rem;
}

/* ==================== */
/* button */
/* =================== */
.rounded-button {
    background-color: #91b952;
    /* Bootstrap primary color */
    color: white;
    /* Text color */
    border: none;
    /* Remove default border */
    padding: 10px 20px;
    /* Padding for the button */
    font-size: 1rem;
    /* Font size */
    border-radius: 25px;
    /* Makes the button rounded */
    cursor: pointer;
    /* Change cursor to pointer on hover */
    transition: background-color 0.3s;
    /* Smooth transition for hover effect */
}

.rounded-button:hover {
    background-color: #688b32;
    /* Darker shade on hover */
}

/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f9f9f9;
} */

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal h2 {
    padding: 0%;
    margin: 0%;
    /* font-size: 24px; */
    color: #000;
}

.modal p {
    font-size: 1rem;
    letter-spacing: 0.05rem;
    color: #000;
}

.modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 1px;
    right: 1px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px 0;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 50%;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.category input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.category input[type="radio"]:checked+span {
    background-color: #00c4cc;
    color: white;
    border-radius: 50%;
    padding: 10px;
}

.category:hover {
    background-color: #f0f0f0;
}

.category p {
    margin: 5px 0 0;
    font-size: 14px;
}

.action-btn {
    background-color: #00c4cc;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.action-btn:hover {
    background-color: #00a2a9;
}

/* =================== */
/* slider styles */
/* =================== */

/* wraps entire slider */
.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  background-color: #000;
}

/* =================== */
/* slider controls*/
/* =================== */

.control {
  display: block;
  width: 40px;
  height: 10px;
  color: #fff;
  font-size: 3rem;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.prev,
.next {
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
   user-select: none;
   display: block;
   background: var(--trans-bg-dark);
   border-radius: var(--round-borders);
   padding: 2rem;
}

.prev:hover,
.next:hover {
  transform: scale(1.5,1.5);
}

.flash {
  animation: flash 0.5s linear;
}

@keyframes flash {
  50% {
    opacity: 0;
  }
}

.slider-container {
  /*
  n variable holds number of images to make .container wide enough
  to hold all its image children
  that still have the same width as its parent
  */
  display: flex;
  align-items: center;
  overflow-y: hidden;
  width: 100%; /* fallback */
  width: calc(var(--n)*100%);
  max-height: 100vh;
  transform: translate(calc(var(--i, 0)/var(--n)*-100% + var(--tx, 0px)));
}

/* transition animation for the slider */
.smooth {
  /* f computes actual animation duration via JS */
  transition: transform calc(var(--f, 1)*.5s) ease-out;
}

/* =================== */
/* images for the slider */
/* =================== */
img {
  height: 100vh;
  width: 100%; /* can't take this out as it breaks Chrome */
  width: calc(100%/var(--n));
  pointer-events: none;
  object-fit: cover;
}


/* =================== */
/* main footer */
/* =================== */
.main-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  font-size: var(--nav-font-size);
  background: var(--bg-nav);
  z-index: 1;
}

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

.section-footer ul {
  display: flex;
  justify-content: space-between;
}

.section-footer i {
  background: var(--trans-bg-dark);
  border-radius: var(--round-borders);
  padding: 1rem 2rem;
  font-size: 2.2rem;
}

.explore {
  display: block;
  background: var(--trans-bg-dark);
  border-radius: var(--round-borders);
  margin-left: 1.8rem;
}

/* =================== */
/* positions and other properties */
/* =================== */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.cursor {
  cursor: pointer;
}

@media screen and (max-width: 1110px) {

  li {
    padding: 0;
  }

  .mobile-menu div {
    width: 35px;
    height: 5px;
    background-color: #fff;
    margin: 6px 0;
    border-radius: 0.2rem;
  }

  .main-nav {
    display: none;
  }

  .main-footer {
    flex-direction: column;
    width: 30%;
    margin: 0 auto;
  }

  .section-footer i {
    font-size: 1.5rem;
  }

  .prev,
  .next {
    padding: 1rem;
  }

  .prev:hover, .next:hover {
    transform: scale(1.2, 1.2);
  }

  .explore {
    font-size: 1.2rem;
  }
}


@media screen and (max-width: 400px)  {

  .main-header {
    padding: 0.5rem 1rem;
  }

  .main-logo {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5rem;
    padding: 0;
    width: 12rem;
  }
}
