@import url('https://fonts.googleapis.com/css2?family=Inter');

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

html {
    scroll-behavior: smooth;
}

body {
    padding: 20px;
    background-color: #212e2b;
    max-width: 100%;
    overflow-x: hidden;
    font-family: sans-serif;
}

.background-img {
    background-image: url('/images/background.jpg');
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0.9;
    z-index: -1;
}

.navigation {
    width: fit-content;
    position: sticky;
    top: 10px;
    overflow: hidden;
    background-image: url('/images/wood.jpg');
    background-repeat: repeat;
    border-radius: 10px;
    z-index: 1;
    margin-top: 10px;
    margin-left: 10px;
}


h1 {
    color: rgba(188, 224, 177, 0.718);
    font-size: 3em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.main-image {
    max-width: 100%;
    height: auto;
}

.nav-list {
    list-style-type: none;
    display: flex;
    margin: 0px;
    padding: 0px;
}

.nav-item {
    --rotateX: 0;
    --rotateY: 0;
    background-image: url('/images/sign.png');
    background-size: cover;
    background-position: center;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
    width: 10vw;
    height: 6vw;
    margin: 10px;
    transform: perspective(500px) rotateX(var(--rotateX)) rotateY(var(--rotateY));
    transition: transform 0.1s linear;
    will-change: transform;
}

.nav-item:hover {
    transform: perspective(600px) rotateX(var(--rotateX)) rotateY(var(--rotateY)) ;
}

.nav-item a {
    display: block;
    font-size: 2vw;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: black;
    text-align: center;
    line-height: 5vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.base-div {
    color: black;
    font-size: clamp(18px, 3vw, 25px);
    font-weight: 600;
    text-align: center;
    padding: 10px;
}

.top-container {
    width: 100%;
    max-width: 700px;
    background-color: rgba(24, 26, 27, 0.85);
    margin-top: 100px;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bottom-top-container {
    color: rgba(188, 224, 177, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;

}

.star-icon {
    height: 20px;
    width: auto;
}

.break-div {
    height: 80%;
}

.cottage-euquipment {
    background-color: #406c47;
    width: 100vw;
    height: fit-content;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.base-info-div {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-direction: left;
    width: 100vw;
}

.appearing-img.base-img {
    width: 40vw;
    height: auto;
    padding-left: 35px;
    padding-top: 30px;
    border-radius: 50px;
}

@keyframes visible-right {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes visible-left {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.appearing-img.move-left {
    opacity: 0;
    animation-name: visible-left;
    animation-duration: 1ms;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
    animation-fill-mode: forwards;
}

.appearing-img.move-right {
    opacity: 0;
    animation-name: visible-right;
    animation-duration: 1ms;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
    animation-fill-mode: forwards;
}


.base-info-div-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}

.euipment-h1 {
    margin-left: 30px;
    position: top;
}

.kitchen-h1 {
    position: top;
    color: rgba(188, 224, 177, 0.718);
    font-size: 2em;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
}

.base-ul {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.base-li::marker {
    content: "✓ ";
}

.base-li {
    margin-left: 20px;
    font-size: 0.8em;
}

.download_button {

    display: inline-block;
    outline: 0;
    border: none;
    cursor: pointer;
    line-height: 1.2rem;
    font-weight: 900;
    background: #007a5a;
    padding: 8px 14px 9px;
    font-size: 15px;
    border-radius: 4px;
    color: #fff;
    height: 36px;
    transition: all 75ms ease-in-out;
}

.download_button:hover {
    box-shadow: 0 1px 4px rgb(0 0 0 / 30%);
}
.download_button a {
    display: block;
    font-size: 2vw;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: black;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.hike-div{
    background-color: rgb(0, 57, 46);
    width: 100vw;
    margin-top: 60px;
    margin-bottom: 60px;
}
.hike-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    padding: 50px;
}
.hike-main-header{
    padding-top: 20px;
}
.hike-main-p{
    color: #557856;
}
.hike-header{
    color: #87b48e;
    font-size: larger;
}
.hike-header::before{
    content: "✴";
    color: #c8e6ca;
    display: block;
}
.hike-info{
    color: #75a576;
    font-size: large;
}
.hike-a{
    text-decoration: none;
    color: #a9c4af;
    font-size: x-large;
}
.hike-button {

    display: inline-block;
    outline: 0;
    border: none;
    cursor: pointer;
    line-height: 1.2rem;
    font-weight: 900;
    background: #007a5a;
    padding: 8px 14px 9px;
    font-size: 15px;
    border-radius: 4px;
    color: #c8e6ca;
    height: 36px;
    transition: all 75ms ease-in-out;
    margin-top: 10px;
}

.hike-button:hover {
    box-shadow: 0 2px 6px rgb(0 0 0 / 30%);
}

@keyframes fadeIn {
  from {opacity: 0}
  to {opacity: 1}
}

@keyframes slideIn {
  from {transform: translateY(-50px); opacity: 0}
  to {transform: translateY(0); opacity: 1}
}

.hike-popup {
  display: none; 
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,0.4); 
  animation-name: fadeIn;
  animation-duration: 0.4s;
}

.hike-popup-content {
  background-color: #406c47;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  animation-name: slideIn;
  animation-duration: 0.4s;
  text-align: center;
  font-size: larger;
}

.hike-popup-content h2{
    padding: 10px;
    color: #87b48e
}

.hike-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.hike-close:hover,
.hike-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
