/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .selena-main-header {
      position: fixed;
      top: 20px;
      left: 20px;
      right: 20px;
      max-width: 1400px;
      margin: auto;
      border-radius: 20px;
      border: 1px solid #14162d;
      z-index: 1000;
      background-color: #01031c;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .header.scrolled {
      top: 0;
      left: 0;
      right: 0;
      max-width: 100%;
      border-radius: 0 0 20px 20px;
      background: rgba(1, 3, 28, 0.98);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .selena-header-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 10px 20px;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      gap: 40px;
    }

    .header-left,
    .header-middle,
    .header-right {
      display: flex;
      align-items: center;
    }

    .header-left {
      flex: 0 0 auto;
    }

    .header-middle {
      flex: 1;
      justify-content: center;
    }

    .header-right {
      flex: 0 0 auto;
    }

    .header-left img {
      display: flex;
      align-items: center;
      max-height: 50px;
      width: auto;
    }

    .header-left .custom-logo-link {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-size: 22px;
      font-weight: 600;
      text-decoration: none;
    }

    .logo-icon {
      width: 36px;
      height: 36px;
      background: #fff;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .nav {
      display: flex;
      align-items: center;
    }

    .nav-list {
      display: flex;
      align-items: center;
      gap: 5px;
      list-style: none;
    }

    .nav-list a {
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      padding: 10px 18px;
      border-radius: 20px;
      font-size: 15px;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .nav-list a:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .nav-list li.current-menu-item > a,
    .nav-list li.current_page_item > a,
    .nav-list li.current-menu-ancestor > a,
    .nav-list a.active {
      background: #fff;
      color: #0a0a1a;
    }

    .cta-btn {
      background: #fff;
      color: #0a0a1a;
      padding: 12px 28px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .cta-mobile {
      display: none;
    }

    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
      width: 30px;
      height: 24px;
      justify-content: center;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background: #fff;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }
    .btn {
      padding: 14px 32px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background: #fff;
      color: #0a0a1a;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.25);
    }

    @media (max-width: 950px) {
      .hamburger {
        display: flex;
      }

      .header-middle {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        height: 100vh;
        background: rgba(10, 10, 30, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
      }

      .header-middle.active {
        right: 0;
      }

      .header-right {
        display: none;
      }

      .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
      }

      .nav-list li {
        width: 100%;
      }

      .nav-list a {
        display: block;
        padding: 16px 20px;
        font-size: 18px;
        text-align: center;
        width: 100%;
      }

      .header-middle .cta-btn {
        display: block;
        width: 100%;
        max-width: 250px;
        text-align: center;
        margin-top: 20px;
      }

      .btn {
        width: 100%;
        max-width: 280px;
      }
    }

    @media (max-width: 480px) {
      .header-middle {
        width: 350px;
      }

      .logo {
        font-size: 18px;
      }

      .logo span {
        font-size: 18px;
      }

      .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
      }

      .header-left img {
        max-height: 40px;
      }
    }