body{
    background: #0C343C;
    font-family: "Source Sans 3", sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
}

.btn {
    background: #F7BE4B;
    padding: 12px 40px;
    border-radius: 5px;
    margin-left: 10px;
    color: #0C343C;
    font-weight: bold;
    text-decoration: none;
}

.btn2 {
    background: transparent;
    padding: 10px 38px;
    border: 3px solid white;
    border-radius: 5px;
    margin-left: 10px;
    color: white;
    font-weight: bold;
    text-decoration: none;
}


.background-section {
    height: 100%;
    filter: blur(0.15rem);
    background-image: url("assets/bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    position: relative;
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 52, 60, 0.27);
}

.background-section::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 50px; /* Adjust the height of the gradient overlay */
    background: linear-gradient(to bottom, rgb(23, 53, 60), rgba(12, 52, 60, 0));
}

.background-section::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px; /* Adjust the height of the gradient overlay */
    background: linear-gradient(to bottom, rgba(12, 52, 60, 0.18), rgb(12, 52, 60));
}

.text-container {
    position: absolute;
    top: 50%; /* Adjust as needed */
    left: 150px; /* Adjust the distance from the left side */
    transform: translateY(-50%);
    z-index: 9999;
    color: white; /* Text color */
}

.text-container h1 {
    margin-bottom: 20px;
    font-family: "Cormorant Unicase", serif;
    font-size: 5rem;
}

.bg-item-container{
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 200px;
}

.bg-item-container p {
    font-family: "Cormorant Unicase", serif;
    color: white;
    font-size: 5rem;
}

.bg-text{
    display: flex;
    flex-direction: column;
}

.content-section {
    padding: 50px 20px; /* Adjust padding as needed */
}

.nav {
    padding: 20px 0 0 0;
    width: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
}
.nav > .nav-header {
    flex: 0.95;
    padding-left: 1rem;
}

.nav > .nav-list {
    display: flex;
    gap: 2rem;
}
.nav > .nav-list > li {
    list-style-type: none;
}
.nav > .nav-list > li .navbarLinks {
    font-size: 1.1rem;
    text-decoration: none;
    color: #FFE599;
;
    cursor: pointer;
}
.nav > #nav-check {
    display: none;
}

.navbar-logo img {
    height: 90px;
    width: auto;
}


.content-section{
    text-align: center;
}

.title{
    color: #FFE599;
    font-size: 2.5rem;
    font-weight: bold;
}

.title2{
    color: #FFE599;
    font-size: 2.3rem;
    margin: 100px;
}

.subtitle{
    color: #FFE599;
}

.subtitle2{
    color: #FFFFFF;
    opacity: 0.7;
}

.links-container{
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: auto 200px;
}

.link-container{
    text-align: left;
}
.link-container > h3,p{
    margin: 0;
}
.link-container > h3{
    color: white;
}
.link-container > p{
    color: #FFE59980;
    margin-bottom: 20px;
}
.link-container > a{
    color: #FFE599;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.5em;
}

.storeImageContainer{
    margin: 30px 0 80px 0;
}

.text-container {
    position: absolute;
    top: 50%; /* Adjust as needed */
    left: 150px; /* Adjust the distance from the left side */
    transform: translateY(-50%);
    z-index: 9999;
    color: white; /* Text color */
}

.privacy-policy-text{
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    opacity: 0.7;
    margin-bottom: 20px;
}

.nav > .nav-list {
    z-index: 9999999;
}


@media (max-width: 980px) {
    .nav {
        padding: 1rem 0 0 0;
    }
    .nav > .nav-btn {
        display: inline-block;
        position: absolute;
        right: 0;
        top: 25px;
        padding-top: 0.2rem;
    }
    .nav > .nav-btn > label {
        display: inline-block;
        width: 50px;
        height: 50px;
    }
    .nav > .nav-btn > label > span {
        display: block;
        width: 25px;
        height: 10px;
        border-top: 2px solid #eee;
    }
    .nav > .nav-list {
        position: absolute;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        background-color: #0c343c;
        height: 0;
        transition: all 0.3s ease-in;
        top: 66px;
        left: 0;
        overflow: hidden;
        text-align: center;
        padding: 0;
    }
    .nav > .nav-list > li {
        width: 100%;
        margin-top: 1.5rem;
    }
    .nav > .nav-list > li a {
        font-size: 2rem;
    }
    .nav > .nav-list > li .navbarLinks {
        font-size: 2rem;
    }

    .nav > #nav-check:checked ~ .nav-list {
        height: calc(100vh - 50px);
    }

    .navbar-logo img {
        height: 60px;
        width: auto;
    }

    .links-container{
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    .text-container {
        left: 0; /* Adjust the distance from the left side */
        width: 100%;
        text-align: center;
    }
}