/* Explain: Base reset and typography with warm earth and terracotta theme, custom styling for Google Translate widget. - */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    color: var(--text-color);
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(214, 200, 184, 0.3), transparent 26rem),
        radial-gradient(circle at 88% 8%, rgba(140, 74, 50, 0.12), transparent 24rem),
        var(--background-color);
    color: var(--text-color);
    font-family: var(--font-body);
    text-rendering: optimizeLegibility;
}

button,
a,
select {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

::selection {
    background: var(--accent-color);
    color: #ffffff;
}

/* Google Translate Widget Customization */
.goog-te-banner-frame {
    display: none !important;
}
#google_translate_element {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    overflow: hidden;
    pointer-events: none;
}
body {
    top: 0 !important;
}
.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}