/* ========== GLOBAL COLORS ========== */
body {
  background-color: #1a1a1a !important; /* Charcoal */
  color: #ffffff !important; /* White body text */
  font-family: 'Open Sans', sans-serif;
}

/* ========== HEADINGS ========== */
h1, h2, h3, h4, h5, h6 {
  color: #ff5500 !important; /* Ember orange */
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========== LINKS ========== */
a, a:visited {
  color: #c9b579 !important; /* Ash gold */
  text-decoration: none;
}

a:hover, a:focus {
  color: #ff5500 !important; /* Ember on hover */
  text-decoration: underline;
}

/* ========== BUTTONS ========== */
button, .elementor-button, input[type="submit"], .wp-block-button__link {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
  border: 2px solid #c9b579 !important;
  padding: 12px 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
  border-radius: 40px; /* Matches your rounded pill buttons */
}

button:hover, .elementor-button:hover, input[type="submit"]:hover, .wp-block-button__link:hover {
  background-color: #ff5500 !important;
  border-color: #ff5500 !important;
  color: #ffffff !important;
}

/* ========== FOOTER ========== */
.site-footer, footer, .footer-bar {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
}

.site-footer a {
  color: #c9b579 !important;
}

.site-footer a:hover {
  color: #ff5500 !important;
}

/* ========== SECTION HEADERS (optional) ========== */
.elementor-heading-title {
  border-bottom: 2px solid #c9b579;
  padding-bottom: 6px;
  margin-bottom: 20px;
}

/* ========== SPACING ========== */
section, .elementor-section, .site-content {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* ========== INPUT FIELDS ========== */
input[type="text"], input[type="email"], textarea {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
  border: 1px solid #c9b579 !important;
  padding: 10px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: #888888 !important;
}
button:focus, .elementor-button:focus {
  outline: none !important;
  box-shadow: none !important;
}
.elementor-button:hover {
  background-color: #ff5500 !important;
  color: #ffffff !important;
  box-shadow: 0 0 12px #ff5500;
}
.footer-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 40px;
  background-color: #1a1a1a;
  color: #ffffff;
}

.footer-bar p {
  margin: 0;
  font-size: 14px;
  color: #c9b579;
}

@media (max-width: 768px) {
  .footer-bar {
    flex-direction: column;
    text-align: center;
  }
}
/* Global button text color to match border */
.elementor-button,
.wp-block-button__link,
button,
input[type="submit"] {
  color: #c9b579 !important;
}
.elementor-button:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
  color: #ffffff !important;
}
/* Move primary navigation menu to the right */
.main-navigation {
    display: flex;
    justify-content: flex-end;
}

/* Optional: Add spacing between menu items */
.main-navigation ul.menu > li {
    margin-left: 20px;
}
/* Try targeting the header navigation wrapper */
nav.main-navigation {
    text-align: right;
}

/* Also try floating the menu items to the right */
nav.main-navigation ul {
    display: inline-block;
    float: right;
}

/* Clear any left float on menu container */
nav.main-navigation {
    float: none;
    clear: both;
}
/* Right-align the main navigation menu */
.site-navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Optional: Improve spacing between menu items */
.site-navigation ul.menu > li {
    margin-left: 20px;
}

/* Optional: Ensure menu doesn't wrap on small screens */
.site-navigation ul.menu {
    flex-wrap: nowrap;
}


