#second-header {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
    color: var(--color-white);
    background-color: rgba(51, 36, 24, 1);
}

@media (max-width: 991px) {
    #second-header {
        height: auto;
        min-height: 80px;
    }
}

#second-header .container-fluid {
    position: relative;
    z-index: 100;
}

#second-header .second-logo {
    width: 54px;
    height: 48px;
    background-image: url(/html-template/assets/images/aboutLogo.png);
    background-size: cover;
    background-position: center;
}

#second-header .top-header span {
    font-size: var(--font-size-sm);
    color: var(--color-white);
}

#second-header .bottom-header {
    height: 80px;
}

#second-header .bottom-header ul {
    gap: 15px;
    color: var(--links);
}

#second-header .bottom-header ul li {
    position: relative;
    padding: 5px 0;
    cursor: pointer;
    list-style: none;
}

#second-header .bottom-header ul li a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.8;
}

#second-header .bottom-header ul li:hover a {
    opacity: 1;
    color: var(--color-gold-500);
}

#second-header .bottom-header ul li::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    inset-inline-start: 0;
    background-color: var(--color-gold-500);
    transition: width 0.3s ease;
}

#second-header .bottom-header ul li:hover::after {
    width: 100%;
}

#second-header .bottom-header .login {
    width: 76px;
    height: 40px;
    color: var(--color-white);
}

#second-header .bottom-header .book-button {
    /* width: 125px; */
    height: 40px;
    background-color: var(--color-gold-500);
    color: var(--color-white);
    border-radius: 10px;
    border: none;
}

#second-header .landing-text {
    font-size: clamp(28px, 4vw, 48px);
    color: var(--color-white);
}

#second-header .watermark {
    position: absolute;
    z-index: 2;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
}
