/**
* Theme Name: Creote Child
* Description: This is a child theme of Creote, generated by Merlin WP.
* Author: <a href="http://steelthemes.com/">Steelthemes</a>
* Template: creote
* Version: 2.8.8
*/

/* ===== HEADER BAR ===== */
.cs-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  z-index: 999;
}

.cs-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

/* Logo */
.cs-logo {
  display: none;
}

.cs-logo a {
  display: none;
}

/* ===== DESKTOP NAV ===== */
.cs-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cs-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.cs-nav-list > li {
  margin: 0;
  padding: 0;
}

.cs-nav-list > li > a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  padding: 20px 18px;
  display: block;
  transition: color 0.2s ease;
}

.cs-nav-list > li > a:hover {
  color: #e3342f;
}

/* Contact button - last item */
.cs-nav-list > li:last-child {
  margin-left: 12px;
}

.cs-nav-list > li:last-child > a {
  background: #e3342f;
  color: #ffffff !important;
  padding: 10px 26px;
  border-radius: 3px;
  font-weight: 500;
  font-size: 15px;
  transition: background 0.2s ease;
}

.cs-nav-list > li:last-child > a:hover {
  background: #c82b27;
  color: #ffffff !important;
}

/* ===== HAMBURGER BUTTON (mobile) ===== */
.cs-nav-toggle {
  display: none;
  position: absolute;
  left: 16px;
  flex-shrink: 0;
  width: 30px;
  height: 24px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.cs-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #333333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .cs-header-inner {
    padding: 0 16px;
    height: 56px;
    justify-content: center;
  }

  .cs-nav-toggle {
    display: flex;
  }

  .cs-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-top: 1px solid #e5e5e5;
  }

  .cs-nav.cs-nav-open {
    display: block;
  }

  .cs-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .cs-nav-list > li {
    margin: 0;
  }

  .cs-nav-list > li > a {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .cs-nav-list > li:last-child {
    margin: 0;
  }

  .cs-nav-list > li:last-child > a {
    margin: 12px 16px;
    text-align: center;
    border-bottom: none;
  }
}

/* Remove any WordPress default menu styles that might interfere */
.cs-nav-list .menu-item {
  margin: 0;
  padding: 0;
}

.cs-nav-list .menu-item a {
  margin: 0;
}

