body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2c2c2c;
    color: #DBCCAB;
}

h1, h2 {
    text-align: center;
    color: #AA8C49;
    font-weight: 600;
    font-family: 'Abril Fatface';
    letter-spacing: 7px;
}

header {
    background-color: #a0aecd;
    padding: 20px;
    color: #AA8C49;
    font-size: 2rem;
    letter-spacing: 1px;
    border-bottom: 4px solid #AA8C49;
}

header h1 {
    text-shadow: 2px 2px 2px #2c2c2c;
}

.cart-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #AA8C49;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.2);
}

nav {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #a0aecd;
    margin-bottom: 30px;
}

nav button {
    padding: 12px 20px;
    margin: 0 10px;
    background-color: #2c2c2c;
    color: #AA8C49;
    border: 2px solid #AA8C49;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    border-radius: 30px;
}

nav button:hover {
    background-color: #DBCCAB;
    color: #2c2c2c;
}

.search-bar {
    padding: 12px 20px;
    margin: 0 10px;
    background-color: #2c2c2c;
    color: #AA8C49;
    border: 2px solid #AA8C49;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    border-radius: 30px;
    width: 60px;
  }
  
  .search-bar:hover {
    background-color: #DBCCAB;
    color: #2c2c2c;
    border-color: #AA8C49;
    width: 100px;
  }

section.welcome {
    background-color: #2c2c2c;
    padding: 50px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.welcome h2 {
    font-family: 'Abril Fatface';
    letter-spacing: 3px;
}

.equipment-section {
    background-color: #a0aecd;
    padding: 150px 0;
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.add-to-cart {
    padding: 10px 15px;
    background-color: #AA8C49;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.add-to-cart:hover {
    background-color: #DBCCAB;
    color: #2c2c2c;
}

.quantity-input {
    width: 60px;
    padding: 5px;
    border: 2px solid #AA8C49;
    border-radius: 5px;
    background-color: #DBCCAB;
    color: #2c2c2c;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.quantity-input:focus {
    border-color: #AA8C49;
}

.partition {
    position: absolute;
    left: 50%;
    width: 3px;
    background-color: #AA8C49;
    height: calc(100% - 145px);
    transform: translateX(-50%);
    top: 80px;
}

.equipment-item {
    display: flex;
    justify-content: center;
    margin: -40px 0;
    width: 80%;
}


.equipment-item.left {
    justify-content: flex-start;
}

.equipment-item.right {
    justify-content: flex-end;
}

.equipment-image-holder {
    width: 400px;
    height: 450px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.equipment-image-holder:hover img {
    filter: blur(5px);
}

.equipment-image-holder:hover .usage-tip {
    opacity: 1;
}

.equipment-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: filter 0.3s ease;
}

.usage-tip {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #DBCCAB;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.equipment-footer {
    text-align: center;
    padding: 15px;
    background-color: #2c2c2c;
    border-radius: 0 0 10px 10px;
    font-size: 0.9rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.equipment-footer h3 {
    color: #AA8C49;
    font-family: 'Abril Fatface';
    letter-spacing: 2px;
    text-transform: uppercase;
}

.equipment-footer p {
    color: #DBCCAB;
}

.message-box, .message-box2 {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #b5e9b4;
    color: #000000;
    padding: 20px 20px;
    border-radius: 5px;
    display: none;
    z-index: 9999;
}

footer {
    background-color: #2c2c2c;
    padding: 40px;
    color: #000000;
    text-align: center;
    border-top: 5px solid #AA8C49;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-contact, .footer-social {
    flex: 1;
    margin: 20px;
}

.footer-contact h3, .footer-social h3 {
    color: #86847d;
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-shadow: 1px 1px 1px #2c2c2c;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 1rem;
    color: #86847d;
}

.footer-social a {
    display: inline-block;
    margin: 0 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.rights p {
    color: #86847d;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-contact, .footer-social {
        margin-bottom: 20px;
    }

    .equipment-item {
        flex-direction: column;
        align-items: center;
    }

    .equipment-image-holder {
        width: 90%;
    }
}
