/*
Theme Name: Amely Child
Theme URI: https://amely.thememove.com/
Author: ThemeMove
Author URI: https://thememove.com/
Version: 1.0
Template: amely
*/
/*
Theme Name: Your Theme Child
Template: your-theme
Description: Child theme for custom header page
Version: 1.0
Author: Your Name
*/

/* --- Custom Header Styles --- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fafafa;
}

/* Navbar Base */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.logo img {
  height: 50px;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #d32f2f;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

/* --- Responsive Styles --- */
@media (max-width: 900px) {
  .navbar {
    padding: 15px 40px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    text-align: center;
    border-top: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }

  .nav-links.active {
    display: block;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  .nav-links a {
    display: block;
    color: #333;
    font-size: 16px;
  }

  .menu-toggle.open {
    color: #d32f2f;
  }
}
