html, body {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    height: 100%;
    min-height: 100%;
}

body {
  margin-bottom: 60px;
  height: 100%;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}





.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/flamingo-land-sik.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
}

    .hero-section h1 {
        font-size: 3rem;
        font-weight: bold;
    }

    .hero-section p {
        font-size: 1.2rem;
    }



/*
.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    background: white;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .search-box:focus-within {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

.search-input {
    border: 2px solid #eee;
    border-radius: 30px;
    padding: 15px 25px;
    padding-right: 50px;
    width: 100%;
    transition: all 0.3s ease;
}

    .search-input:focus {
        border-color: #007bff;
        box-shadow: none;
    }

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    transition: all 0.3s ease;
}

.search-box:focus-within .search-icon {
    color: #007bff;
}

.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 1;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .suggestion-item:hover {
        background: #f8f9fa;
    }

    .suggestion-item i {
        margin-right: 10px;
        color: #666;
    }

.recent-searches {
    color: #666;
    font-size: 0.8rem;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 15px 15px 0 0;
}
*/

.float-right {
    float: right;
}

.card:hover {
    opacity: .5;
    cursor: pointer;
}

.card-link {
    text-decoration: none;
}

.parkmap:hover {
    cursor: pointer;
}

.blue {
    color: #006ABE;
}

.red {
    color: #BA2A15;
}

.green {
    color: #499942;
}

.yellow {
    color: #FDBC00;
}

.large-text {
    font-size: 1.1rem;
    font-weight: 450;
}

.italics {
    font-style: italic;
}

.nav-item {
    border-right: 1px solid black;
    padding: 0 5px;
}

    .nav-item:hover {
        text-decoration: underline;
        text-underline-offset: 5px;
        text-decoration-color: #FDBC00;
        text-decoration-thickness: 5px;
    }

.nav-item:last-of-type {
    border-right: none;
}