/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.5.1768484058
Updated: 2026-01-15 13:34:18

*/

/* -----------------------------------------------------------
   MaxTV Navbar Styles
----------------------------------------------------------- */
:root {
    --nav-bg: #ffffff;
    --nav-text: #000000;
    --btn-bg: #000000;
    --btn-text: #ffffff;
    --dot-color: #2ecc71; /* Green dot */
}

/* Main Container */
.maxtv-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: var(--nav-bg);
    font-family: 'Inter', sans-serif; /* Clean font */
    box-shadow: 0px 2px 10px rgba(0,0,0,0.05); /* Subtle shadow */
}

/* Left: Logo */
.nav-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--nav-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-icon {
    font-size: 28px;
}

/* Center: Links */
.nav-center {
    display: flex;
    gap: 25px;
}

.nav-center a {
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.2s;
}

.nav-center a:hover {
    opacity: 0.6;
}

/* Right: Flags + Button */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-flags {
    font-size: 24px;
    cursor: pointer;
    display: flex;
    gap: 10px;
}

/* The "Get Started" Pill Button */
.btn-get-started {
    background-color: var(--btn-bg);
    color: var(--btn-text);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px; /* Pill shape */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
}

.btn-get-started:hover {
    transform: scale(1.05);
}

/* The Green Dot */
.green-dot {
    width: 8px;
    height: 8px;
    background-color: var(--dot-color);
    border-radius: 50%;
    display: inline-block;
}