body {
	font-family: "Futura", Helvetica, sans-serif;
	background-color:#000;
	color:#eee;
	max-width: 1200px;
    margin: auto;
    padding: 0 20px;
	/*font-size: 12em;*/
	font-variant: !important small-caps;
	margin-left: auto;
	margin-right: auto;
}


/* If you later wrap each item in <a> tags (which you probably should for real navigation), you can move the padding and color styling onto the <a> instead for better semantics.*/
#nav ul {
    list-style: none;       /* remove bullets */
    margin: 0;
    padding: 0;
    display: flex;          /* makes items horizontal */
    justify-content: flex-start; /* or space-between / center */
    flex-direction: row;
    background-color: #000; /* optional nav background */
}
/* Mobile layout */

@media (max-width: 700px) {
    #nav ul {
        flex-direction: column;
    }

    #nav a {
        display: block;
        width: 100%;
    }
}

#nav a{
    padding: 14px 20px;
    color: white;
    cursor: pointer;
    text-decoration-line: none;
}

#nav a:hover {
    background-color: darkorange /* #555; /* hover effect */
}

#nav a.logo:hover {
    background-color: transparent;
}


.hero {
 /*background-image: url('./images/lunging_fencer.jpg');*/
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax effect */
  //padding-top: 100px; /* space before text overlaps */
}

.hero img {
  width: 50%;
  display: block;
}

.features {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.features img {
    width: 180px;
    flex-shrink: 0;
    display: block;
}

.features p {
    margin: 0;
}

.hero-text {
  position: relative;
  //margin-top: -120px; /* pulls text up over the image */
  background: black;
  padding: 20px;
  max-width: 800px;
  z-index: 1;
}

/* optional: make it feel nicer */

.hero-text {
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero img {
  /*position: sticky;*/
  top: 0;
  z-index: 1;
}

.buy-now {
    width: 60%;
    margin: auto;
    margin-right: auto;
    justify-content: center;
    background-color: darkorange;
    color: black;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px; /* makes fully rounded ends */
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    border: none;
    position: sticky;
}

.buy-now a, .buy-now:hover{
    color: black;
}

.buy-now:hover {
    color: white;
    background-color: darkorange;
}

footer {
    padding-bottom: 5em;
}

footer ul {
    display: flex; 
    justify-content: flex-start;
    flex-direction: column;
    padding-left: 15px;
}

footer a, footer a:visited {
    color: #ccc;
    text-decoration-line: none;
}


.contact-form {

    max-width: 700px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form label {

    font-weight: bold;
}

.contact-form input,

.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #111;
    color: #eee;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

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

.hidden-field {
    display: none;
}