/*
Theme Name: forajeputuri123.ro
Theme URI: https://forajeputuri123.ro
Author: forajeputuri123.ro
Author URI: https://forajeputuri123.ro
Description: Minimal WP theme, responsive and optimized for speed.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ultra-light
*/

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

body {
  margin: 0;
  font-family: sans-serif;
  background: #f0f0f0;
}

.sticky-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #4a90e2, #357ab7);
  color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  flex-wrap: wrap;
}

.logo a {
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s ease;
}

.logo a:hover {
  color: #ffcc00;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.main-navigation li {
  margin: 0 15px;
  position: relative;
}

.main-navigation a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  padding: 8px 12px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.main-navigation a i {
  margin-right: 8px;
  color: #ffcc00;
}

.main-navigation a:hover {
  color: #ffcc00;
}

.main-navigation li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ffcc00;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.main-navigation li:hover::after {
  width: 100%;
}

/* Responsive: split menu into two columns to reduce vertical space */
@media (max-width: 768px) {
  .header-container { flex-direction: column; padding: 10px; }
  .main-navigation ul { display: block; column-count: 2; column-gap: 20px; text-align: center; }
  .main-navigation li { display: inline-block; width: 100%; margin: 5px 0; }
  .header-buttons { margin-top: 10px; }
}
