@import url("bootstrap.css");
@import "style.css";

.hike-info {
    margin: auto;
    width: 75%;
}
.description-list {
    list-style: circle;
}
/* Custom hover effect for card */
.card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
#landing {
    font-size: 24px;
}
@media (min-width: 768px) {
    #landing {
        font-size: 64px;
    }
}
#about-me {
    background: linear-gradient(to right, #007BFF, #00BFFF);
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 50px;
    padding-right: 50px;
}

#custom-container {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
}
.footer-hike-list {
    list-style: none;
}
/* Footer */
.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 20px;
    }
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background-color: blue;
    z-index: 9999;
}

.short-intro {
    /* background-image: url('https://images.unsplash.com/photo-1701076409861-0afba86d005a?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwcm9maWxlLXBhZ2V8MTB8fHxlbnwwfHx8fHw%3D'); */
    background-image: url(../backgrounds/lake.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
    display: flex;
    align-items: center;
    height: 94vh;
}
.animation-text {
    opacity: 0;
    transition: opacity 1s;
}
.text-container {
    opacity: 0;
    transition: opacity 1s;
}
 
.navigation-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
#nav {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

@media (max-width: 767.98px) {
    .navigation-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    #nav {
        margin-left: 0;
    }
}
#intro-text{
    font-size: 24px;
}
@media (max-width: 767.98px) {
    #intro-text{
        font-size: 16px;
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: white;
    color: black;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #ddd;
}

/* @media (min-width: 768px) {
    .reasons {
        width: 85%;
        margin: auto;
    }
} */

@media (min-width: 768px) {
    .l-pictures img{
        max-height: 75vh;        
        width: auto;
    }
}

.container .gear {
    background-color: beige;
    border: 2px solid #006400;
    padding: 10px 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.4em;
    border-radius: 8px;
    color: #333;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  
  .container .gear a::before {
    font-size: 1.2em;
    color: #006400;
  }

  /* .dynamic-bg {
    background: linear-gradient(120deg, #c5e4ca, #a9dfbf, #d4efdf);
    background-size: 300% 300%;
    animation: flow 2s ease-in-out infinite;
    color: #333; 
    padding: 20px;
    border-radius: 10px;
} */

@keyframes blink {
    0% {opacity: 1;}
    50%{opacity: 0.2;}
    100%{opacity: 1;}
}

#gear-box {
    animation: blink 2s infinite;
}