/*                                                   */
/* Mobile layout CSS for wilsoncustoms.neocities.org */
/*                                                   */
/* Started on March 5th, 2026                        */
/*                                                   */

body {
    font-family: Lato, Arial;
    color: #fff;
    background-color: #008289;
    /* background-image: url("/img/bg/IMG_0306.jpeg"); */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url("/img/bg/IMG_0306.jpeg");
    background-position: center cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.content {
  background-color: #000;
  margin-top: 10px;
  padding: 10px;
  outline: 2px solid #fff;
  border-radius: 10px;
}

.content h1 {
    background-color: #000;
    padding: 10px;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
    margin: -10px;
}

.content h1:hover {
    background-color: #000b70;
    transition: 0.3s;
}

.nav {
    background-color: #000;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    margin: auto;
    position: sticky;
    top: 10px;
    border-radius: 10px;
    outline: 2px solid #fff;
}

.nav a {
    color: #fff;
    font-size: 24px;
    padding: 10px;
    transition: 0.2s;
    text-decoration: none;
}

.nav a:hover {
    background-color: #000;
    border-bottom: 5px solid #FFEF00;
    color: #fff;
    transition: 0.2s;
    text-decoration: underline;
    border-radius: 10px;
}

.nav .active {
    background-color: #2200ff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    border-bottom: 5px solid #FFEF00;
}

.nav-right {
    float: right;
    margin-top: -10px;
}

.nav-right img {
    margin-bottom: -6px;
    width: 28px;
    height: 28px;
}

/* Buy/Order Form Button */

.content button {
    border: none;
    padding: 10px;
    font-size: 24px;
    color: #fff;
    background-color: #1900ff;
    margin-left: 10px;
    margin-bottom: 10px;
}

.content button:hover {
    background-color: #0077ff;
}

.content button:active {
  background-color: #0077ff;
}

/* site footer */

.footer {
    max-width: 1280px;
    margin: auto;
    /* outline: #00ff1e 1px solid; */
    color: #fff;
    background-color: #000;
    padding-bottom: 10px;
    outline: 2px solid #fff;
    border-radius: 10px;
    margin-top: 10px;
}

.footer-flex {
    display: flex;
}

.footer p {
    margin: 0;
    margin-left: 10px;
}

.footer h1 {
    margin: 0;
    margin-left: 10px;
}

.footer h2 {
  margin: 0;
  margin-left: 10px;
  font-size: 18px;
}

.footer .wc-logo {
  margin: 0;
  margin-left: 10px;
}

.footer .contact {
  margin-top: 7px;
}

.footer .address {
  margin-top: 7px;
}