/*
Theme Name: Nottingham Skip Hire
Theme URI: https://example.com/
Author: Your Name
Description: Custom theme for Nottingham Skip Hire
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: nottingham-skip-hire
*/

:root {
  --red: #c41717;
  --light-red: #f9e9e9;
  --dark: #222;
  --white: #fff;
  --gray: #f4f4f4;
  --font-main: 'Segoe UI', sans-serif;
}

body {
  font-family: var(--font-main);
  margin: 0;
  background: var(--white);
  color: var(--dark);
}

/* Center the entire Contact Form 7 wrapper */
.wpcf7 {
  display: flex;
  justify-content: center;
  margin: 2rem auto;
}

/* Limit form width and keep inputs left-aligned */
.wpcf7-form {
  max-width: 600px;
  width: 100%;
  text-align: left;
}

/* Center the submit button */
.wpcf7 .wpcf7-submit {
  display: block;
  margin: 1.5rem auto 0 auto;
}

/* Menu styles */
.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 1.5rem; /* space between items */
}

/* Each menu item */
.main-menu li {
  display: flex;
  align-items: center;
  position: relative; /* needed for ::after positioning */
}

/* Pipe separator after each item except last */
.main-menu li:not(:last-child)::after {
  content: "|";
  color: #ccc;
  font-weight: 400;
  margin-left: 1.5rem; /* spacing after the text before pipe */
}
.main-menu ul {
  display: flex !important; /* Make the ul inside main-menu flex */
  list-style: none !important; /* Remove bullets */
  margin: 0 !important;
  padding-left: 0 !important;
  align-items: center;
  gap: 1.5rem;
}

.main-menu ul li {
  position: relative;
  display: flex;
  align-items: center;
  list-style: none; /* Defensive */
}

.main-menu ul li:not(:last-child)::after {
  content: "|";
  color: #ccc;
  font-weight: 400;
  margin-left: 1.5rem;
}

.main-menu ul li a {
  color: #20463d;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}


.footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem; /* space between links */
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

.footer-menu-list li {
  list-style: none; /* remove bullets */
}

.footer-menu-list a {
  color: #fff !important; /* force white text */
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-menu-list a:hover,
.footer-menu-list a:focus {
  text-decoration: underline;
}

