/*
Theme Name:     Bellevue - Child Theme
Theme URI:      https://bellevuetheme.com
Template:       bellevuex
Author:         Themovation
Author URI:     http://themovation.com
Version:        4.0
Text Domain:    bellevue
Domain Path:    /languages/
*/


/* = Theme customization starts here
-------------------------------------------------------------- */
/* Header */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    /* Header Specific */
    .customeHeader {
      width: 100%;
      background: #fdfcfa;
      border-bottom: 1px solid #ccc;
    }

    .customeHeader .navbar {
      max-width: 1200px;
      margin: auto;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .customeHeader .logo {
      font-size: 22px;
      font-weight: bold;
      color: #000;
    }

    .customeHeader .nav-links {
      display: flex;
      gap: 25px;
      align-items: center;
    }

    .customeHeader .nav-links a {
      text-decoration: none;
      color: #000;
      font-size: 16px;
    }

    .customeHeader .social-icons {
      display: flex;
      gap: 15px;
      align-items: center;
    }

    .customeHeader .social-icons a {
      color: #000;
      font-size: 18px;
      text-decoration: none;
    }

    .customeHeader .btn {
      border: 2px solid #000;
      padding: 8px 15px;
      text-decoration: none;
      color: #000;
      font-weight: bold;
      transition: 0.3s;
    }

    .customeHeader .btn:hover {
      background: #000;
      color: #fff;
    }

    /* Hamburger Menu */
    .customeHeader .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .customeHeader .hamburger span {
      width: 25px;
      height: 3px;
      background: #000;
    }

    /* Mobile Menu */
    @media (max-width: 768px) {
      .customeHeader .nav-links,
      .customeHeader .social-icons,
      .customeHeader .btn {
        display: none;
      }

      .customeHeader .hamburger {
        display: flex;
      }

      .customeHeader .nav-active {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fdfcfa;
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
        border-top: 1px solid #ccc;
        gap: 15px;
        display: flex;
      }
    }
  

