/*
Theme Name: Nixace Technologies WordPress Theme
Description: Official WordPress theme for Nixace Technologies - DevOps Training & Education
Author: Nixace Technologies
Version: 1.0
Text Domain: nixace-theme
*/

/* Additional custom styles for WordPress integration */

/* Ensure WordPress content integrates well */
.html-content {
    width: 100%;
}

/* WordPress specific overrides */
.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
}

/* WordPress block editor compatibility */
.wp-block-group {
    margin: 0;
}

/* Ensure WordPress menu compatibility */
.main-menu .current-menu-item > a,
.main-menu .current_page_item > a {
    color: #A1E401 !important;
}

/* WordPress search form styling */
.wp-block-search {
    margin: 0;
}

/* Custom WordPress content styling */
.entry-content {
    margin: 0;
    padding: 0;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .admin-bar .header {
        top: 46px;
    }
}

/* Simple Header Styles - Clean Professional Design */
.simple-header {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(161, 228, 1, 0.3);
}

.admin-bar .simple-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .simple-header {
    top: 46px;
  }
}

.simple-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.simple-nav .logo img {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.simple-nav .logo:hover img {
  transform: scale(1.05);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(161, 228, 1, 0.1);
  border: 2px solid rgba(161, 228, 1, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.menu-toggle:hover {
  background: rgba(161, 228, 1, 0.2);
  border-color: #A1E401;
  transform: scale(1.1);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #A1E401;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.menu-toggle:hover span {
  background: #A1E401;
}

/* Add padding to body for fixed header */
body {
  padding-top: 70px;
}

.admin-bar body {
  padding-top: 102px;
}

@media screen and (max-width: 782px) {
  .admin-bar body {
    padding-top: 116px;
  }
}

/* Header responsive design */
@media (max-width: 768px) {
  .simple-header {
    padding: 12px 0;
  }
  
  .simple-nav .logo img {
    height: 35px;
  }
  
  .menu-toggle {
    width: 35px;
    height: 35px;
  }
  
  .menu-toggle span {
    width: 18px;
  }
  
  body {
    padding-top: 60px;
  }
}
