body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* background-image: url('image.png'); */
    background: rgb(0, 0, 0);
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(139, 175, 188, 1) 25%, rgba(255, 255, 255, 1) 100%); */
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0 auto;
    /* max-width: 90%; */
}

.navbar {
    background-color: #000000;
    padding: 4px 0px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    color: #ffffff;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: text-shadow 0.3s, color 0.3s;
}

.brand-name:hover {
    color: #ffffff;
    text-shadow: 0 20px #afafaf;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 0.5rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 0rem 3rem;
    font-weight: bold;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
    text-shadow: 0px 0px 20px white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.4rem;
    width: 0;
    height: 2px;
    background-color: #d3d3d3;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 60%;
}


.nav-links a:hover {
    color: #d3d3d3;
}

.hero {
    background-image: url('heroback3.jpg');
    background-size: auto 110%;
    background-position: left center;
    background-repeat: no-repeat;
    background-color: #030303;
    height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adds a semi-transparent overlay */
    z-index: 1;
}

.hero-content {
    height: 15rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.6rem;
    margin-bottom: 26px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    text-shadow: 0px 0px 20px white;
}

.cta-button {
    background-color: #00000000;
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 0.2rem;
    border-style: solid;
    border-color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    transition: border-color 0.3s, transform 0.3s;
    text-shadow: 0px 0px 20px white;
}

.cta-button:hover {
    border-color: #bbbbbb;
    transform: translateY(-5px);
}

/* .card-container {
    padding-top: 2.6rem;
    max-width: 90%;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.product-card {
    background-color: black;
    padding: 1rem;
    border-radius: 0.2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 26rem;
}

.product-card:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.product-card img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: -1.8rem;
}

.text-content {
    margin-bottom: 20px;
}

.product-card h3 {
    height: 2rem;
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0px 0px 20px white;
}

.product-card p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0px 0px 20px white;
}

.card-button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 0.6rem 0.8rem;
    border-radius: 0.2rem;
    border-style: solid;
    border-color: #ffffff;
    cursor: pointer;
    font-size: 1em;
    width: 8rem;
    transition: transform 0.3s ease;
}

button:hover {
    transform: scale(1.05);
}

.altisphoto {
    transform: scaleX(-1);
} */