/* Reset some defaults */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}

/* SOCIAL ICONS */
.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.social-icons li {
    display: inline-block;
}
.social-icons li.title {
    margin-right: 15px;
    text-transform: uppercase;
    color: #96a2b2;
    font-weight: 700;
    font-size: 13px;
}
.social-icons a {
    display: inline-block;
    width: 24px;
    height: 24px;
    text-align: center;
}
.social-icons.size-sm a {
    line-height: 34px;
    height: 34px;
    width: 34px;
    font-size: 14px;
}

/* BUTTONS */
.btn-getstartednow {
    text-transform: uppercase;
    color: #fff;
    background-color: #fdbf0a;
    border-color: #fdbf0a;
    transition: 0.3s;
}
.btn-getstartednow:hover {
    color: #fff;
    background-color: #ffa800;
    border-color: #ffa800;
}

.shopInfoBox {
    background-color: black;
    opacity: 0.6;
    min-width: 100%;
    min-height: 200px;
}

.footergrey {
    color: #c5c5c5;
}
#faq:hover,
#privacy:hover,
#contact:hover {
    color: #a2a2a2;
    text-decoration: none;
}
#contact,
#policy,
#faq {
    transition: 0.3s;
}

/* FIXED BACKGROUND CONTAINER */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    /* Default background for larger screens */
    background: url('../assets/Home/BG/Shop-BG-v5.webp') no-repeat center top;
    background-size: cover;
}

.content {
    position: relative;
    z-index: 1;
}

/* MOBILE BACKGROUND OVERRIDE */
@media all and (max-width: 768px) {
    .bg-container {
        background: url('../assets/Shop/Shop-BG-v6-mobile.jpg') no-repeat center top;
        background-size: cover;
    }
}

/* General Banner Styles */
.header {
    margin-top: -80px;
}
.header .banner {
    background-color: #000;
    text-align: center;
}
.header .banner img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

/* Responsive Adjustments for Header */
@media (max-width: 768px) {
    .header {
        margin-top: -20px;
    }
}

/* Headline Images */
.headline-image,
.headline-image-p {
    height: auto;
    margin: 0 auto;
}
.headline-image {
    max-width: 55%;
    margin-top:8%;
}
.headline-image-p {
    max-width: 45%;
    margin-top:8%;
    margin-bottom:8%;
}

/* Store Buttons */
.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.store-buttons .store-icon {
    width: 250px;
    height: auto;
}

/* Responsive Design for Store Buttons */
@media (max-width: 768px) {
    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .store-buttons .store-icon {
        width: 180px;
        margin: 0;
    }
}

/* Adjust spacing for mobile */
@media (max-width: 768px) {
    .headline-image {
        max-width: 65%;
        margin-top:4%;
        margin-bottom:2%;
    }
    .headline-image-p {
        max-width: 55%;
        margin-top:8%;
        margin-bottom:8%;
    }
    .store-buttons {
        margin-top: 50px;
    }
}