/* ===============================
   NAVBAR STYLES
================================= */

/* Navigation */
nav {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 2rem;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin-left: auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: var(--white);
    border: 2px solid var(--green-border);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-links a:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ===============================
   LANGUAGE DROPDOWN
================================= */

.language-dropdown {
    position: relative;
}

.language-btn {
    cursor: pointer;
    user-select: none;
}

.language-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--white);
    border: 2px solid var(--green-border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 1000;
}

.language-menu.show {
    display: block;
}

.language-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.language-menu a:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
}

/* ===============================
   MOBILE MENU
================================= */

.mobile-buttons-wrapper {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: var(--white);
    border: 2px solid var(--green-border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-dark);
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Mobile Drawer */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.mobile-nav-overlay.show {
    display: block;
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;   /* enables scrolling */
}

.mobile-nav-menu.show {
    left: 0;
}

.mobile-nav-header {
    padding: 1.5rem;
    border-bottom: 2px solid var(--green-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid #E5E7EB;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.mobile-nav-links a:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .mobile-buttons-wrapper {
        display: flex !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
    }
}

/* ===============================
   GOOGLE TRANSLATE HIDE
================================= */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-te-spinner-pos,
.goog-te-ftab,
.goog-te-menu-value span,
div#goog-gt-,
.goog-te-gadget,
.goog-te-combo {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
}

body > .skiptranslate,
body > iframe.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0px !important;
    position: static !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

div[style*="position: fixed"][style*="z-index: 2147483647"],
div[style*="position: fixed"][style*="z-index: 999999"] {
    display: none !important;
}

/* ===============================
   COLOR VARIABLES - This gives the blue text on together tko
================================= */
:root {
  --primary-blue: #7DBFE8;
  --dark-blue: #5BA3D0;
  --light-blue: #E3F2FD;
  --pale-blue: #F0F9FF;
  --sky-blue: #BAE6FD;
  --text-dark: #1F2937;
  --text-light: #6B7280;
  --white: #FFFFFF;
}