@media screen and (min-width: 1024px) {
    li.tf-mobile-destination.menu-item {
        display: none;
    }
}

header .glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

header .glass-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

header .glass-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.3);
}

header .btn-primary {
    background: hsl(25 95% 53%);
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

header .btn-primary:hover {
    background: hsl(25 95% 48%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

header .btn-secondary {
    background: hsl(172 85% 22%);
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

header .btn-secondary:hover {
    background: hsl(172 85% 18%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/*header .mobile-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 500;
    color: rgb(55 65 81);
    transition: all 0.2s ease;
    border-radius: 0.5rem;
}*/

header .mobile-menu-item:hover {
    background-color: rgb(249 250 251);
    color: hsl(172 85% 22%);
}

header .mobile-menu-link {
    display: block;
    padding: 0.875rem 1rem;
    font-weight: 500;
    color: rgb(55 65 81);
    transition: all 0.2s ease;
    border-radius: 0.5rem;
    text-decoration: none;
}

header .mobile-menu-link:hover {
    background-color: rgb(249 250 251);
    color: hsl(172 85% 22%);
}

header .container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    header .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    header .container {
        padding: 0 2rem;
    }
}
.tf-main-content p, .best-time-to-go p {
    line-height: 2;
    margin-top: 10px;
    padding-bottom: 20px;
    font-size: 16px;
}
.tf-main-content h2, .tf-main-content h3, .tf-main-content h4 {
    color: var(--color-ac2025-900);
    padding-bottom: 20px;
}
.tf-team-image {
    height: 300px;
    width: 300px;
    max-height: 300px;
    max-width: 300px;
    object-fit: cover;
}
.tf-semi-black {
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
}
.gform_fields input, .gform_fields select, .gform_fields textarea {
    border: solid 1px grey;
    border-radius: 5px;
    background-color: white;
}
.gform_fields {
    margin-top: 50px;
}
.gfield {
    margin-top: 25px
}
.gform_footer input[type=submit] {
    color: white;
    background-color: var(--color-ac2025-700);
    padding: 15px 25px;
    border: solid 2px var(--color-ac2025-700);
    border-radius: 5px;
}
.gform_footer input[type=submit]:hover {
    color: var(--color-ac2025-700);
    background-color: white;
    padding: 15px 25px;
}

.tf-navbar-old ul { margin: 0; padding: 0;
    list-style-type: none; list-style-image: none; }
.tf-navbar-old li { display: inline; }
.tf-navbar-old ul li a {
    text-decoration:none;
    margin: 4px;
    color: var(--ac2025-900);
}

.tf-navbar-old ul li a:hover {
    color: var(--ac2025-900);
}

.tf-navbar-old ul li ul {

    display: none;

    position: absolute; /* Position the dropdown */

    background-color: #444; /* Dropdown background color */

    z-index: 100; /* Ensure the dropdown is above other content */

}
.tf-navbar-old ul li:hover > ul {

    display: block; /* Show dropdown */
    background-color: #ffffff;

}
.tf-navbar-old ul li ul li {

    display: block; /* Dropdown items should be block level */
    margin-top: 5px;
    margin-bottom: 10px;

}