@charset "utf-8";
* { box-sizing: border-box; }

/* Form controls */
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}
input[type=submit]:hover { background-color: #45a049; }

/* Contact container */
.container {
  border-radius: 5px;
  background-color: lightgrey;
  padding: 10px;
}

/* Two-column layout */
.column {
  float: left;
  width: 47%;
  margin-top: 4px;
  padding: 18px;
}

/* Clearfix */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* --- Form columns on small screens --- */
@media screen and (max-width: 600px) {
  .column,
  input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

/* ==============================
   Responsive Logo & Navigation
   ============================== */
.logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}

/* Header */
header {
  text-align: center;
  padding: 15px 10px;
  background-color: #000;
  color: #fff;
}

/* Nav layout */
nav.horizontal {
  display: flex;
  flex-direction: column;      /* stack by default */
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Header logo size */
header .logo { max-width: 220px; }

/* Nav links */
nav.horizontal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
nav.horizontal ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}
nav.horizontal ul li a:hover { color: #ffcc00; }

/* Aside logo */
aside .logo {
  max-width: 180px;
  margin-top: 15px;
}

/* --- Desktop tweaks --- */
@media (min-width: 769px) {
  nav.horizontal {
    flex-direction: row;       /* logo beside links */
    justify-content: space-between;
  }
  header .logo { max-width: 250px; }
}

/* --- Tablet --- */
@media (max-width: 768px) {
  header .logo { max-width: 180px; }
  nav.horizontal ul {
    flex-direction: column;    /* links under logo */
    gap: 10px;
  }
}

/* --- Phones --- */
@media (max-width: 480px) {
  header .logo { max-width: 140px; }
  aside .logo  { max-width: 110px; }
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}

/* Submit look (optional to align) */
input[type="submit"] {
  background-color: #4CAF50;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease-in-out, transform 0.1s;
}
input[type="submit"]:hover { background-color: #45a049; transform: scale(1.02); }

/* Cancel (red) */
.btn-cancel {
  background-color: #b30000;
  color: #fff;
  margin-left: 8px;
  transition: background-color 0.3s ease-in-out, transform 0.1s;
}
.btn-cancel:hover { background-color: #cc0000; transform: scale(1.05); }
.btn-cancel:active { background-color: #990000; transform: scale(0.98); }
/* === BLACKPLUG Premium Buttons === */
.btn {
  display: inline-block;
  font-family: Verdana, Geneva, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: 5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

/* --- Submit Button (Gold on Black) --- */
input[type="submit"],
.btn-submit {
  background: linear-gradient(to right, #000, #333);
  color: #ffcc00;
  border: 2px solid #000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

input[type="submit"]:hover,
.btn-submit:hover {
  background: linear-gradient(to right, #333, #000);
  color: #fff;
  border-color: #ffcc00;
  transform: scale(1.05);
}

/* --- Cancel Button (Red with Gold Accent) --- */
input[type="button"].btn-cancel,
.btn-cancel {
  background: linear-gradient(to right, #800000, #b30000);
  color: #fff;
  border: 2px solid #800000;
  margin-left: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

input[type="button"].btn-cancel:hover,
.btn-cancel:hover {
  background: linear-gradient(to right, #b30000, #cc0000);
  border-color: #ffcc00;
  color: #fff;
  transform: scale(1.05);
}

input[type="button"].btn-cancel:active,
.btn-cancel:active {
  transform: scale(0.97);
  background: #660000;
}

/* --- Optional alignment --- */
.form-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}
/* === BLACKPLUG Premium Buttons with Gold Glow === */
.btn {
  display: inline-block;
  font-family: Verdana, Geneva, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: 5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* --- Gold Glow Effect Base --- */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 204, 0, 0.2) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 204, 0, 0.2) 100%
  );
  transition: all 0.6s ease-in-out;
}
.btn:hover::after {
  left: 100%;
}

/* --- Submit Button (Gold on Black) --- */
input[type="submit"],
.btn-submit {
  background: linear-gradient(to right, #000, #222);
  color: #ffcc00;
  border: 2px solid #000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

input[type="submit"]:hover,
.btn-submit:hover {
  background: linear-gradient(to right, #222, #000);
  color: #fff;
  border-color: #ffcc00;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
  transform: scale(1.05);
}

/* --- Cancel Button (Red with Gold Accent + Glow) --- */
input[type="button"].btn-cancel,
.btn-cancel {
  background: linear-gradient(to right, #800000, #b30000);
  color: #fff;
  border: 2px solid #800000;
  margin-left: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

input[type="button"].btn-cancel:hover,
.btn-cancel:hover {
  background: linear-gradient(to right, #b30000, #cc0000);
  border-color: #ffcc00;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
  transform: scale(1.05);
}

input[type="button"].btn-cancel:active,
.btn-cancel:active {
  transform: scale(0.97);
  background: #660000;
}

/* --- Centering the buttons --- */
.form-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
/* === FORM FIELD ALIGNMENT FIX === */
form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #000;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="number"],
form input[type="password"],
form select,
form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin-top: 4px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Consistent spacing between rows */
form .formRow {
  margin-bottom: 12px;
}

/* Mobile-friendly layout */
@media (max-width: 600px) {
  form input,
  form select,
  form textarea {
    width: 100%;
  }
}
/* === FORM FIELD ALIGNMENT FIX === */
form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #000;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="number"],
form input[type="password"],
form select,
form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin-top: 4px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Consistent spacing between rows */
form .formRow {
  margin-bottom: 12px;
}

/* Two-column layout for name fields */
.two-column {
  display: flex;
  gap: 12px;
}

.two-column > div {
  flex: 1;
}

/* Stack columns on mobile */
@media (max-width: 600px) {
  .two-column {
    flex-direction: column;
  }
}

