@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button,
input,
select {
    font-family: inherit;
    border: none;
    outline: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.text-center {
    text-align: center;
}

/* --- Professional Google Translate Widget (Hidden Banner, Icon Only) --- */

/* Hide ONLY the top banner frame */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

/* Hide the banner content (Translated into text) */
.goog-te-banner-frame {
    display: none !important;
}

/* Prevent body from being pushed down by banner */
body.translated-ltr {
    top: 0px !important;
}

body {
    top: 0px !important;
}

/* Hide the top frame notification */
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}

/* Style the widget container */
#google_translate_element {
    z-index: 99999 !important;
}

/* Style the dropdown button - Icon only */
.goog-te-gadget-simple {
    background-color: rgba(20, 20, 20, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 10px !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
    color: #fff !important;
    backdrop-filter: blur(10px);
    cursor: pointer !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

.goog-te-gadget-simple:hover {
    background-color: rgba(40, 40, 40, 0.9) !important;
    border-color: #10b981 !important;
}

/* Hide Google icon */
.goog-te-gadget-icon {
    display: none !important;
}

/* Hide ALL text */
.goog-te-gadget-simple span {
    font-size: 0 !important;
    display: none !important;
}

.goog-te-gadget-simple a {
    font-size: 0 !important;
    display: none !important;
}

/* Add globe icon using ::before */
.goog-te-gadget-simple::before {
    content: "🌐";
    font-size: 1.3rem !important;
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

/* Hide dividers */
.goog-te-menu-value span:nth-child(3),
.goog-te-menu-value span:nth-child(5) {
    display: none !important;
}