/*
Theme Name: Los Angeles
Text Domain: los_angeles
Description: Semantic, SEO Optimised, Custom Wordpress Theme for Los Angeles
Author: Brandon R Jones (Organization Unbound version updated by Stephanie O'Hanley June 2023)
Author URI: http://www.makedesignnotwar.com
Version: 2.0
*/
 
/*  Los Angeles THEME  */
/*  CORE STYLESHEET   */

/* Stylesheet IMPORT LOS ANGELES */
@import url(assets/css/core.css);

* --------------------------- */
/* Header   */
/* --------------------------- */


/* #navigation is menu and search container  ul menu container li menu item li a menu link*/

#header{
    margin-top: 2px;
    height: 178px;
    position: relative;
    }


  /* CSS for the navigation menu */
#navigation {
    padding: 0; /* Add some padding to the container */
    overflow: hidden; /* Clear the float */
    top:152px;
    width: 998px;
}


#navigation li {
  padding-top:2px;
}
  
  #navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left; /* Float the menu to the left */
  }
  
  #navigation li {
    display: inline-block; /* Display menu items in a row */
  }
  
  #navigation ul li:last-child {
    margin-right: 0; /* Remove right margin from the last menu item */
  }
  
  #navigation ul li a {
    color: #fff; /* Set the text color */
    text-decoration: none; /* Remove underlines from links */
    padding: 0 1em; /* Add padding to the menu items */
    font-size: 20px;
    text-transform:uppercase;
    text-align:left;

  }
  
   /* CSS for the search bar */
  .search {
    margin-top: 10px; /* Add spacing between navigation and search bar */
    float: right; /* Float the search bar to the right */
  }
  
  #searchform input[type="text"] {
    padding: 5px; /* Add padding to the input field */
    border: 1px solid #d9d9d9;; /* Add a border to the input field */
    font-style: italic;
    font: 11px 'Georgia';
    width: 177px;
  }
  
  #searchform input[type="text"]:focus {
    border-color: #d9d9d9; /* Change the border color on focus */
  }