/* ===========================
   KILL "BOOK TICKET" BUTTON ONLY
   (Multiple, redundant targeting so it cannot survive)
   =========================== */

/* 1) Target the specific Elementor widget by its data-id */
header [data-id="f8f2314"],
header .elementor-element-f8f2314 {
    display: none !important;
}

/* 2) Target the button's unique animation class (from your inspect) */
header .elementor-animation-shrink {
    display: none !important;
}

/* 3) Extra safety: any header button whose text is "book ticket" */
header .elementor-button-text {
    text-transform: lowercase;
}
header .elementor-button-text::after {
    content: attr(data-original-text);
}
header .elementor-button-text {
    /* hide the original BOOK TICKET text visually if needed */
    font-size: 0 !important;
}
header .elementor-button-text::before {
    content: "" !important;
}

/* If any span still literally says book ticket, hide its parent button */
header .elementor-button-text {
    font-size: inherit !important;
}
header .elementor-button-text:before {
    content: "" !important;
}

/* Ultimate catch-all: if that widget is still visible for any reason */
header [data-id="f8f2314"] a,
header [data-id="f8f2314"] {
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* ===========================
   REMOVE FOOTER SITE-WIDE
   =========================== */

footer,
.site-footer,
.elementor-location-footer,
.elementor-footer {
    display: none !important;
}
