@charset "UTF-8";

/* =====================
   VARIABLES
===================== */
:root {
  --green: #276847;
  --gold: #f1cd73;
  --gray-bg: #c0c0c0;
  --black: #000;
  --white: #fff;
}

/* =====================
   GLOBAL STYLES
===================== */
* {
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #222;
  margin: 0;
  padding: 0;
}
main,
article {
  width: 100%;
  max-width: 980px;
  margin: 0 auto; /* center content on large screens */
  padding: 1rem;
}

p {
  margin: 0 0 1.25em;
}
h1,
h2,
h3,
h4 {
  margin-top: 10px;
  font-weight: 600;
}
h1 {
  color: var(--green);
  font-size: 2.5rem;
}

h2 {
  color: var(--green);
  font-size: 2rem;
}
h3 {
  color: var(--green);
  font-size: 1.5rem;
  text-align: center;
}
h4 {
  color: var(--black);
  font-size: 1.125rem;
}
h5 {
  font-size: 0.75rem;
  font-weight: 550;
}
a {
  color: var(--white);
  text-decoration: none;
}

.black-links {
  color: #000 !important;
}

a:hover {
  opacity: 0.85;
}

.clear_both {
  clear: both;
}

/* bullet indent */
ul,
ol {
  margin-left: 0;
  padding-left: 0;
}

li {
  margin-left: 5px; /* Adjusts the space between the bullet and the container edge */
  text-indent: 10px; /* Moves the bullet left relative to the text block */
}
.promotional-list {
  list-style-position: inside;
}

table {
  width: "90%";
  border: 1px solid #000;
}
.fixed-table {
  table-layout: fixed;
}
td a {
  color: var(--black);
}

/* Secondary section style — only where applied */
.section-box {
  border: 2px solid var(--green); /* primary border color */
  background-color: #fafafa; /* soft background */
  border-radius: 8px; /* rounded corners */
  padding: 1.5rem 2rem; /* inner spacing */
  margin: 2rem 0; /* space around the block */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* soft drop shadow */
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

/* Optional: headings inside this style */
.section-box h2,
.section-box h3,
.section-box h4 {
  margin-top: 0;
  color: var(--green); /* branded look */
}

/* Optional spacing for paragraphs */
.section-box p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.section-box img {
  display: block; /* makes image a block */
  margin: 0 auto; /* centers the block horizontally */
}
/* =====================
   LAYOUT HELPERS
===================== */
.container {
  width: 100%;
  background-color: var(--gray-bg);
}

.center {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
}

.centerimg {
  display: block;
  margin: auto;
  width: 50%;
}
.map-container {
  margin: 1.5rem 0;
  border: 2px solid var(--green); /* match site theme */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
  border: none;
}

.map-container .map-link {
  text-align: right; /* aligns link to the right */
  margin-top: 0.5rem;
}

.map-container .map-link a {
  color: var(--green);
  text-decoration: underline;
  font-size: 0.875rem;
}

.map-container .map-link a:hover {
  color: var(--gold);
}

.flex-row {
  display: flex;
  flex: auto;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap;
}
.flex-row-spacebetween {
  display: flex;
  flex: auto;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex-row-nowrap {
  display: flex;
  flex: auto;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.flex-row-nowrap-normal {
  display: flex;
  flex: auto;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.flex-column {
  display: flex;
  flex-direction: column;
  flex: auto;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  flex: auto;
  align-items: center;
  align-content: center;
}

.flex-column-start {
  display: flex;
  flex-direction: column;
  flex: auto;
  align-items: flex-start;
}

.title-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.title-section p {
  max-width: 65ch;
}

.vl {
  border-left: 1px solid var(--green);
  height: auto;
}

/* =====================
   NAVBAR
===================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--green);
  color: var(--white);
  font-weight: bold;
  z-index: 9999;
}

.navbar-links ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  list-style: none;
}

.navbar-links a {
  display: block;
  padding: 1rem;
}

.navbar-links li:hover {
  background-color: #555;
}

/* Mobile toggle */
.toggle-button {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  width: 30px;
  height: 21px;
  justify-content: space-between;
}

.toggle-button .bar {
  height: 3px;
  background: var(--white);
  border-radius: 10px;
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .toggle-button {
    display: flex;
  }

  .navbar-links {
    display: none;
    width: 100%;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links ul {
    flex-direction: column;
    width: 100%;
  }

  .navbar-links a {
    padding: 0.5rem 1rem;
    text-align: center;
  }
}

/* =====================
   HEADER & MAIN
===================== */
header {
  background-color: var(--gold);
  text-align: center;
  font-size: 35px;
  padding-top: 70px;
}

.main-container {
  margin: 0; /* remove extra spacing */
  padding: 0;
}

/* =====================
   CONTENT
===================== */
.bannerArea,
.contentArea,
.footercontent {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  height: auto;
  overflow: auto;
}

.leftnavigation {
  float: left;
  width: 205px;
  padding: 22px 0 0 30px;
}

.leftnavigation a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #008000;
  height: 25px;
  width: 120px;
}

.leftnavigation a:hover {
  background-position: right -124px;
}

.contentleft {
  float: left;
  width: 700px;
  padding: 20px 0 0 10px;
}

.content {
  max-width: 1200px;
  width: 100%;
}

/* =====================
   FOOTER
===================== */
.footerArea {
  background-color: var(--black);
  border-top: 2px solid var(--gold);
  height: 225px;
}

.footernav {
  float: right;
  padding: 10px 52px 0 0;
  font-size: 10px;
  text-align: center;
}

.copyright {
  margin: 30px;
  padding-top: 12px;
  font-size: 12px;
  color: #928e5c;
  text-align: center;
}

/* =====================
   BUTTONS
===================== */
/* Container to layout the buttons */
/* Container for buttons */
.button-container {
  display: flex;
  flex-wrap: wrap; /* wrap to new rows */
  gap: 10px; /* space between buttons */
  justify-content: center; /* center align */
}

/* Base button styling */
.button {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 6px;
  color: var(--green);
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.2em 1.5em; /* comfortable padding */
  white-space: nowrap; /* no line breaks in text */
  display: inline-flex;
  align-items: center; /* vertically center text/icon */
  transition:
    background-color 0.2s,
    color 0.2s;
  text-align: center;
}

.button-sidebar {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 6px;
  color: var(--green);
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.2em 1.5em; /* comfortable padding */
  white-space: normal; /* no line breaks in text */
  align-items: center; /* vertically center text/icon */
  transition:
    background-color 0.2s,
    color 0.2s;
  text-align: center;
}

/* Make the <a> fill the button */
.button a,
.button-sidebar a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

/* Hover states */
.button:hover {
  background-color: rgba(255, 187, 0, 0.5);
  color: var(--black);
}

/* Primary button style */
.button.primary {
  background-color: var(--green);
  color: var(--white);
}

.button-sidebar.primary {
  background-color: var(--green);
  color: var(--white);
}

/* Primary hover */
.button.primary:hover {
  background-color: var(--gold);
  color: var(--black);
}

.button-sidebar.primary:hover {
  background-color: var(--gold);
  color: var(--black);
}

.break-row {
  flex-basis: 100%;
  justify-content: center;
}

/* Accent variation (button2) */
.button2 {
  border-color: #f1cd00; /* accent border */
  color: #f1cd00;
}

.button2:hover {
  background-color: #f1cd00;
  color: var(--black);
}

/* =====================
   ESTORE MENU ITEMS
===================== */
.page-title,
.section-title {
  font-weight: bold;
  color: #276847;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.page-title {
  font-size: 2.5rem;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 30px;
}

.flex-container {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px;
}

@media (max-width: 1200px) {
  .flex-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .flex-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .flex-container {
    grid-template-columns: 1fr;
  }
}

.estore-card {
  display: flex;
  justify-content: center;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.estore-card img {
  width: 100%;
  max-width: 320px;
  height: auto;
  transition: transform 0.3s ease;
}

.estore-card img:hover {
  transform: scale(1.05);
}

/* Estore dropdown styling */
.estore-select {
  width: 100%; /* fills container */
  max-width: 500px; /* won’t get too huge on large screens */
  height: 60px; /* makes it easier to click */
  font-size: 24px; /* bigger, readable text */
  padding: 5px 10px; /* spacing inside the dropdown */
  box-sizing: border-box; /* includes padding in width */
}

/* Optional: make dropdown items wrap text instead of cutting off */
.estore-select option {
  white-space: normal; /* allows long names to wrap */
  line-height: 1.4em;
}

/* Optional: adjust on smaller screens for readability */
@media (max-width: 600px) {
  .estore-select {
    font-size: 24px;
    height: 36px;
    padding: 12px;
  }
}

/* Estore filter styling */
.estore-filter-tools {
  margin: 0px 0;
  position: sticky;
  top: calc(var(--navbar-height) + 10px);

  z-index: 100;

  background: white;

  padding: 15px 0;
}

#estoreSearch {
  width: 100%;
  max-width: 450px;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
}

.alphabet-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.alphabet-filter span {
  padding: 6px 10px;
  background: #f2f2f2;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s;
  -webkit-user-select: none;
  user-select: none;
}

.alphabet-filter span:hover {
  background: #ddd;
}

.alphabet-filter span.active {
  background: #222;
  color: white;
}

#no-results {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #666;
}

#estore-count {
  margin-top: 10px;
  margin-bottom: 15px;
  font-weight: bold;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.category-filter button {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #f2f2f2;
  transition: 0.2s;
  font: inherit;
}

.category-filter button:hover {
  background: #ddd;
}

.category-filter button.active {
  background: #222;
  color: white;
}

/* =====================
   FORM STYLING
===================== */

input[type="submit"] {
  max-width: 622px;
  min-width: 300px;
}

input[type="file"] {
  max-width: 301px;
}

#phone,
#email,
#name,
#company {
  width: 301px;
}

#mockup input {
  width: auto;
}

textarea {
  resize: none;
  min-width: 301px;
  min-height: 300px;
  padding-bottom: 20px;
}

label {
  height: auto;
}

/* =====================
   APPAREL PAGES/MENU
===================== */

.product-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}

.product-gallery {
  width: 300px;
}

.gallery-main {
  width: 300px;
  height: 300px;
  border-radius: 10px;
  border: 2px solid var(--green);
  background: #f6f6f6;
  display: block;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-thumbnails {
  margin-top: 12px;
}

.gallery-thumbnails h4,
.gallery-thumbnails h5 {
  margin: 8px 0 8px;
}

.selected-color {
  max-width: fit-content;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--green); /* primary border color */
  background-color: var(--gold); /* soft background */
  border-radius: 8px; /* rounded corners */
  padding: 3px 5px; /* inner spacing */
  margin: 2rem 0; /* space around the block */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* soft drop shadow */
}

.sizing {
  max-width: fit-content;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--green); /* primary border color */
  background-color: var(--gold); /* soft background */
  border-radius: 8px; /* rounded corners */
  padding: 3px 5px; /* inner spacing */
  margin: 2rem 0; /* space around the block */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* soft drop shadow */
}

.swatch-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px #b9b9b9;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.color-swatch:hover {
  transform: scale(1.1);
}

.color-swatch.active {
  box-shadow: 0 0 0 2px var(--green);
}

.product-details {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.product-sizingchart {
  margin-top: 12px;
  margin-bottom: 20px;
  width: 690px;
}

.product-sizingchart img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid var(--green);
}

.apparel-sample-image-container {
  margin: 12px 5px 20px;
  width: 155px;
}

.apparel-sample-image-container h4,
.apparel-sample-image-container h5,
.apparel-sample-image-container p {
  margin: 8px 0 8px;
}

.apparel-sample-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid var(--gold);
}

#art-setup-fees h3 {
  text-align: left;
  align-items: flex-start;
}

.section-box hr {
  display: block;
  border: 1px solid var(--gold);
  margin: 20px 0px 20px;
}

.split-bg {
  background: linear-gradient(
    to right,
    var(--c1) 0%,
    var(--c1) 50%,
    var(--c2) 50%,
    var(--c2) 100%
  );
}

.split-bg-photo {
  background: linear-gradient(
    to right,
    var(--c1) 0%,
    var(--c1) 50%,
    transparent 50%,
    transparent 100%
  );
}
.product-description {
  margin: 5px 0 15px 10px;
  font-size: 14px;
  list-style-position: outside;
}

.product-description li {
  text-indent: 0%;
  padding-bottom: 5px;
}

.choices__inner {
  border: 1px solid var(--gray-bg);
  border-radius: 8px;
  min-width: 622px;
}

.product-list {
  margin-top: 20px;
}

.product-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product-row input {
  width: 80px;
  padding: 5px;
}

.product-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.size-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.size-box input {
  width: 60px;
  text-align: center;
}

.product-color {
  margin-bottom: 10px;
}

.product-color select {
  padding: 5px;
  border: 1px solid;
  border-radius: 5px;
}

.color-block {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 600px;
}

.color-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.color-header select {
  padding: 5px;
  border: 1px solid #000000;
}

.color-header button {
  background: red;
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.size-box input {
  width: 55px;
  text-align: center;
}

.patch-samples {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}

.patch-sample-photo {
  width: 222px;
  height: auto;
  border-radius: 10px;
  border: 2px solid var(--green);
}
