/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
}

h1,
p {
    margin: 0 !important;
}

/* Container max-width */
.container {
    max-width: 1200px;
}

.header-title {
    color: #111827;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.header-text {
    color: #4B5563;
    font-size: 14px;
    line-height: 20px;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.nav-item:hover {
    color: #9333EA;
}

.book-button>.desktop-button {
    background-color: #9333EA;
    color: #fff;
    padding: 8px 24px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
}

.desktop-button:hover {
    background-color: #7E22CE;
}

.navbar-brand img {
    max-height: 48px;
    width: auto;
}

.navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-brand .brand-text {
    display: flex !important;
    flex-direction: column;
}

.navbar .nav-link {
    color: #374151;
    font-weight: 600;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #111827;
}

.navbar .btn {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.navbar .btn:hover {
    transform: translateY(-2px);
}

/* ...existing code... */

/* Navbar specific overrides */
.navbar-brand img {
    max-height: 48px;
    width: auto;
}

.navbar {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.navbar .nav-link {
    color: #374151;
    /* neutral-700 */
    font-weight: 600;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #111827;
    /* neutral-900 */
}

.nav-toggler-header,
.nav-toggler-header:focus {
    border: none !important;
    box-shadow: none !important;
}

@media (max-width: 991.98px) {

    /* show brand text on smaller screens if desired */
    .navbar-brand .d-none.d-lg-block {
        display: none !important;
    }
}

/* keep small visual lift consistent with other cards */
.navbar .btn {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform .15s ease, box-shadow .15s ease;
}

.navbar .btn:hover {
    transform: translateY(-2px);
}

/* If you had old header rules, remove or comment them out:
   .sticky-header, .header-content-wrapper, .logo-and-heading, .nav-content, .desktop-button, etc.
*/

/* Ensure brand text is visible on all screen sizes (overrides previous d-none media rule) */
.navbar-brand .brand-text {
    display: flex !important;
    flex-direction: column;
}

/* Optional: slightly reduce brand text on small screens */
@media (max-width: 575.98px) {
    .navbar-brand .brand-text .fw-bold {
        font-size: 16px;
        line-height: 20px;
    }

    .navbar-brand .brand-text small {
        font-size: 12px;
    }
}

.logo-wrapper {
    border-radius: 9999px;
    overflow: hidden;
}