/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Oswald', sans-serif;
  background-color: #000; /* Background remains dark */
  color: #000; /* White text for contrast */
}

.newsletter-signup {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  margin: 2rem auto;
  font-family: sans-serif;
}

.newsletter-signup h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.newsletter-signup p {
  margin-bottom: 1.5rem;
  color: #ccc;
}

.newsletter-signup form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.newsletter-signup input[type="email"] {
  padding: 0.65rem 1rem;
  font-size: 1rem;
  color: #fff;
  background-color: #000;
  border: 2px solid silver;
  border-right: none;
  border-radius: 6px 0 0 6px;
  outline: none;
  width: 100%;
  max-width: 280px;
  box-sizing: border-box;
  height: 44px; /* force consistent height */
}

.newsletter-signup input[type="email"]::placeholder {
  color: #aaa;
}

.newsletter-signup button {
  padding: 0 1.2rem;
  font-size: 1rem;
  color: #000;
  background-color: silver;
  border: none;
  border-radius: 0 6px 6px 0;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  height: 44px; /* exact match to input */
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.newsletter-signup button:hover {
  background-color: #fff;
}

.newsletter-signup small {
  display: block;
  margin-top: 1rem;
  color: #888;
  font-size: 0.85rem;
}

/* Container: full black background, centered */
.filter-section {
  display: flex;
  gap: 1rem;
  justify-content: center; /* center horizontally */
  align-items: center;
  margin: 2rem auto;
  background-color: #000; /* full black background */
  padding: 1rem 2rem;
  border-radius: 8px;
  max-width: 600px;
  box-sizing: border-box;
}

/* Dropdowns side by side with black background, white text, silver borders */
.filter-dropdown {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: 2px solid silver;
  border-radius: 6px;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  min-width: 180px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3csvg width='12' height='7' viewBox='0 0 12 7' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1l5 5 5-5' stroke='white' stroke-width='2' fill='none' fill-rule='evenodd'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 7px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover and focus effect */
.filter-dropdown:hover,
.filter-dropdown:focus {
  border-color: #c0c0c0;
  box-shadow: 0 0 8px rgba(192, 192, 192, 0.7);
  outline: none;
}

/* Header Styling */
.site-header {
  background-color: #000; /* Pure black */
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

/* Inner nav container */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
}

/* Desktop logo */
.logo img {
  max-width: 200px;
  height: auto;
  display: block;
}

/* Navigation */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu li a {
  color: #ffffff; /* Pure white */
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-menu li a:hover {
  color: #f1c40f; /* Gold on hover */
  transform: translateY(-2px);
}

/* Brand Elements */
.brand-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  color: #f1c40f; /* Gold for brand emphasis */
  font-weight: bold;
  margin-top: 10px;
}

.brand-logo img {
  width: 150px;
  height: auto;
  margin: 0 auto;
}


/* Hero Section */

/* Fixing hero section overlap */
.hero {
  position: relative;
  height: 100vh; /* Full screen height */
  background-image: url('http://alloyx.co.uk/wp-content/uploads/2025/05/output-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center; /* Vertically center content */
  justify-content: center; /* Horizontally center content */
  padding-top: 150px; /* Extra padding on top to clear the filter */
  z-index: 1; /* Make sure the hero section stays behind the filter */
  margin-top: 0; /* No margin at the top of the hero */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for contrast */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 20px;
}

.cta-buttons a {
  background: #1a1a1a;
  color: #fff;
  padding: 12px 24px;
  margin: 10px;
  border-radius: 4px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cta-buttons a.secondary {
  background: transparent;
  border-color: #fff;
}

.cta-buttons a:hover {
  background: #f1c40f;
  color: #111;
  border-color: #f1c40f;
}

/* Product Section */
.product-section {
  background-color: #000; /* Black background for the section */
  padding: 50px 20px;
  text-align: center;
  padding-top: 120px; /* adjust to your header height */
}

.section-title {
  color: #fff; /* White color for the title */
  font-size: 32px;
  margin-bottom: 40px;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Product Grid */
.products-wrapper {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap onto the next line when necessary */
  justify-content: center; /* Centers the products in the container */
  gap: 30px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Set to 3 items per row */
  gap: 30px;
  width: 100%;
  max-width: 1200px; /* Ensure it doesn't stretch too wide */
  margin: 0 auto;
}

/* Product Card */
.product-card {
  background-color: #111; /* Dark background for product cards */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow for elevation */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #fff; /* White text for better contrast */
  position: relative;
  overflow: hidden;
}

/* Wrapper around the image to create the dark background */
.product-image-wrapper {
  background-color: #111; /* Dark background behind the product image */
  padding: 10px; /* Add padding to prevent the image from touching the edges */
  border-radius: 6px; /* Optional: round the corners for a smooth effect */
}

/* Ensure the image is contained within its wrapper and maintains its size */
.product-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Extremely Subtle Gloss Effect */
.product-card::before {
  content: ''; 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.05)); /* Very subtle gloss */
  pointer-events: none;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-5px); /* Slightly lift the card on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
}

.product-card a {
  display: block;
  text-decoration: none;
}

.product-card h3 {
  color: #fff; /* White text for the product title */
  font-size: 18px;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.product-card .price {
  color: #bbb; /* Light gray color for price */
  font-size: 16px;
  margin-bottom: 15px;
}

.product-card .button {
  background-color: #444; /* Dark gray button */
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-card .button:hover {
  background-color: #666; /* Slightly lighter gray on hover */
}

/* General Footer Styles */
.site-footer {
  background-color: #000; /* Black background */
  color: #fff; /* White text */
  padding: 50px 20px; /* Add padding for neat layout */
  font-family: 'Roboto', sans-serif; /* Consistent font */
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  width: 150px; /* Adjust according to your logo size */
  height: auto;
}

.footer-tagline {
  margin-bottom: 30px;
  font-size: 18px;
  color: #bbb; /* Light silver color for tagline */
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  display: flex; /* Align the links horizontally */
  justify-content: center; /* Center the links */
  gap: 25px; /* Space between links */
}

.footer-links ul li {
  margin-bottom: 0;
}

.footer-links ul li a {
  color: #bbb; /* Light silver color for links */
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #c0c0c0; /* Slightly lighter silver color on hover */
}

.footer-social-media ul {
  list-style: none;
  padding: 0;
  display: flex; /* Align the icons horizontally */
  justify-content: center; /* Center the icons */
  gap: 20px; /* Space between icons */
  margin-bottom: 30px;
}

.footer-social-media li {
  display: inline-block;
}

.footer-social-media img {
  width: 30px; /* Icon size */
  height: 30px;
  filter: brightness(0) invert(1); /* Invert icons to silver for contrast */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-social-media img:hover {
  transform: scale(1.2); /* Slightly enlarge on hover */
  filter: brightness(0) invert(0.6); /* Lighten the icons on hover */
}

/* Footer Copyright */
.footer-copyright {
  font-size: 13px;
  color: #888; /* Light gray for copyright text */
}

.footer-copyright a {
  color: #bbb; /* Light silver color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: #c0c0c0; /* Lighter silver on hover */
}

/* Brands Section */
.brand-icon {
  max-width: 100%;       /* Ensures it fits in the box */
  max-height: 80px;      /* Limits height to keep consistent size */
  object-fit: contain;   /* Keeps aspect ratio */
  display: block;
  margin: 0 auto;
}
.brands-section {
  background-color: #000; /* Black background for the section */
  padding: 50px 20px;
  text-align: center;
}

.brands-wrapper {
  display: flex;
  justify-content: center; /* Center the boxes horizontally */
  align-items: stretch; /* Stretch boxes to the same height */
  gap: 20px; /* Space between the boxes */
}

.brand-box {
  background-color: transparent; /* Transparent background */
  border: 0px solid #ccc; /* Light gray border for the box */
  padding: 15px; /* Padding inside the box */
  border-radius: 10px; /* Rounded corners */
  width: 200px; /* Fixed width for each box */
  display: flex;
  justify-content: center; /* Center the text horizontally */
  align-items: center; /* Center the text vertically */
  max-width: 200px; /* Set maximum width */
  box-sizing: border-box; /* Make sure padding doesn't affect size */
  word-wrap: break-word; /* Allow wrapping of text */
  flex-grow: 1; /* Ensure all boxes grow to the same size */
}

.brand-text {
  font-family: 'Roboto', sans-serif; /* Font-family for brand text */
  font-size: 20px; /* Adjust font size */
  color: #ccc; /* Light gray color for text */
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px; /* Adds space between letters */
  text-align: center; /* Ensure text is centered */
  white-space: normal; /* Allow text to wrap normally */
}


/* Product Page Design */
.custom-product-container {
  margin-top: 120px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background-color: #000000; /* black background */
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  padding-top: 120px;
}

/* Smaller left column for product image */
.custom-product-image {
  flex: 1 1 35%;
  max-width: 320px;
}

/* Main product image style */
.custom-main-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #555555; /* silver border */
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Right column for product info */
.custom-product-info {
  flex: 1 1 60%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
}

/* Product title */
.custom-product-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
}

/* Product price */
.custom-product-price {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 600;
}

/* Short description header */
.custom-product-short-description h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #bbb;
}

/* Short description text */
.custom-product-short-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #ddd;
  margin-bottom: 30px;
}

/* Add to cart button container */
.custom-product-add-to-cart {
  margin-top: auto;
}

/* Buy button styling */
.custom-product-add-to-cart button {
  background-color: #666666; /* grey background */
  color: #fff; /* white text */
  padding: 15px 35px;
  border: none;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

/* Hover effect for buy button */
.custom-product-add-to-cart button:hover {
  background-color: #888888; /* lighter grey */
}

/* Full description section */
.custom-product-full-description {
  margin-top: 60px;
  max-width: 900px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  border: 2px solid #888; /* silver/grey border all around */
  border-radius: 8px;
  background-color: #111; /* dark background so border pops */
  position: relative;
}

/* Full description header */
.custom-product-full-description h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #eee;
  position: absolute;
  top: -16px; /* moves header up to overlap border */
  left: 20px;
  background-color: #111; /* same as container bg */
  padding: 0 12px;
  font-weight: 700;
  border-radius: 4px 4px 0 0;
  border: 2px solid #888; /* border on header to match container */
  border-bottom: none; /* no bottom border so it blends with container */
}

/* Full description text */
.custom-product-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
}

  /* Adjust full description header for smaller screens */
 .custom-product-full-description {
  margin-top: 60px;
  max-width: 900px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px 20px; /* top padding equals header height */
  border: 2px solid #888;
  border-radius: 8px;
  background-color: #111;
  position: relative;
}

/* Full description header */
.custom-product-full-description h3 {
  font-size: 1.8rem;
  margin: 0 0 15px 0;
  color: #eee;
  background-color: #111;
  padding: 0 12px;
  font-weight: 700;
  border-radius: 4px 4px 0 0;
  border: 2px solid #888;
  border-bottom: none;
  display: inline-block;
  margin-top: -28px; /* negative margin smaller than padding-top */
  position: relative;
}

/* Add margin to first paragraph inside the description to separate from header */
.custom-product-description > *:first-child {
  margin-top: 10px;
}
/* Force quantity and add-to-cart button side by side */
.custom-product-add-to-cart form.cart {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  flex-wrap: nowrap !important;
}

/* Remove default margins on quantity wrapper */
.custom-product-add-to-cart form.cart .quantity {
  margin: 0 !important;
  flex-shrink: 0;
}

/* Style quantity input size */
.custom-product-add-to-cart form.cart .quantity input.qty {
  width: 60px !important;
  height: 40px !important;
  padding: 5px 10px !important;
  font-size: 1rem !important;
  box-sizing: border-box;
}

/* Style add-to-cart button */
.custom-product-add-to-cart form.cart button.single_add_to_cart_button {
  height: 40px !important;
  padding: 0 25px !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  white-space: nowrap;
}
.custom-product-section {
  padding: 40px 20px;
  background-color: #f8f8f8;
}

.custom-products-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.custom-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.custom-product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.custom-product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.custom-product-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.custom-product-title {
  font-size: 1.2rem;
  margin: 15px 0 10px;
  color: #fff;
}

.custom-price {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.custom-button {
  background-color: #0073e6;
  color: #fff !important;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.custom-button:hover {
  background-color: #005bb5;
}
/* Contact Grid */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
  background-color: #1a1a1a;
  border-radius: 12px;
}

/* Contact Form Column */
.contact-form-column {
  flex: 1 1 50%;
  padding: 1rem;
}

.contact-form-wrapper {
  margin-top: 1.5rem;
}

.contact-form-wrapper label {
  display: block;
  margin: 0.75rem 0 0.25rem;
  color: #ccc;
  font-weight: 500;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 0.75rem;
  background-color: #2a2a2a;
  border: 1px solid #444;
  border-radius: 6px;
  color: #eee;
  font-size: 1rem;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  border-color: #999;
  outline: none;
}

.contact-form-wrapper button {
  margin-top: 1rem;
  background-color: #ccc;
  color: #111;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form-wrapper button:hover {
  background-color: #fff;
}

/* Success Message */
.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
}

/* Contact Info Column */
.contact-info-column {
  flex: 1 1 40%;
  padding: 1rem;
}

.info-card {
  background-color: #2a2a2a;
  padding: 1.5rem;
  border-radius: 8px;
  color: #eee;
}

.info-card h3 {
  margin-top: 0;
  color: #fff;
}

.info-card a {
  color: #ccc;
  text-decoration: underline;
}

.map-section {
  margin-top: 2rem;
}

.map-heading {
  color: #fff;
  margin-bottom: 0.75rem;
}

.map-embed-container iframe {
  width: 100%;
  border-radius: 8px;
  border: none;
}

/* Divider */
.gold-divider {
  height: 3px;
  width: 60px;
  background: linear-gradient(to right, #d4af37, #f8d67a);
  margin: 1.5rem 0;
  border-radius: 2px;
}/* Container */
.content-container {
  padding: 3rem 1rem;
  text-align: center;
}
/* Section Titles & Subtext */
.section-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.section-subtext {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 1.5rem;
}