* {
    margin: 0;
    padding: 0;
    font-family: "Truculenta", sans-serif;
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(images/joreka-bg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 150px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #a3c586;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1 {
    font-size: 60px;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 22px;
    color: #fff;
}

nav .fa {
    display: none;
}

@media (max-width: 700px) {
    .text-box h1 {
        font-size: 28px;
    }

    .text-box p {
        font-size: 14px;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: absolute;
        background: #81a684;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -277px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links {
        padding: 30px;
    }
}

.logo {
    width: 150px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s ease-out forwards, glowPulse 3s ease-in-out infinite;
    animation-delay: 0.5s, 2s;
    filter: drop-shadow(0 0 8px #a3c586);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 8px #a3c586);
    }
    50% {
        filter: drop-shadow(0 0 16px #a3c586);
    }
}


.Quotes {
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

.Views {
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: center;
    background: #f2f8f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
}

.Views img {
    height: 50px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.Views p {
    padding: 0;
}

@media (max-width: 700px) {
    .Views img {
        margin-right: 15px;
    }
}

.cta {
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(images/banner-joreka.png);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
    font-size: 3rem; 
}

@media (max-width: 700px) {
    .cta h1 {
        font-size: 24px;
    }
}

.Statement {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.Statement h4 {
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 23px;
}

.Statement p {
    font-size: 15px;
    margin-top: 0.02%;
}


/*------THE COLLECTION-----*/
.benefits {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.advantage {
    display: block; /* Ensures blocks stack properly */
    text-align: center; /* Centers text inside each block */
    margin: 20px auto; /* Centers each block and adds spacing */
    width: fit-content; /* Shrinks the block to fit its content */
}

.advantage img {
    display: block; /* Treats the image as a block element */
    margin: 0 auto; /* Horizontally centers the image */
    border-radius: 10px;
    max-width: 100%;
    height : auto;
    max-height: 500px;
   
    object-fit: contain;
}
.brand-title {
    text-align: center;
    padding: 80px 20px;
}

.brand-title h1 {
    font-size: 64px;
    font-weight: 800;
    color: white; /* Default text color */
    font-family: 'Truculenta', sans-serif;
    margin: 0 auto;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.brand-title span {
    color: olive; /* Deep red for 'JOREKA' */
}

.benefits-title {
    font-size: 48px;
    font-weight: 800;
    color: black;
    margin-bottom: 10px;
    font-family: 'Truculenta', sans-serif;
    text-align: center;
}

.benefits-title .deep-red {
    color: black; /* Deep red */
}

.benefits-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: black;
    font-style: italic;
    margin-top: 0;
    text-align: center;
}

/* keep this for other paragraphs */
.benefits .advantage p {
    font-size: 18px;
    color: black;
}





@media(max-width: 700px){
    .sub-header h1{
        font-size: 30px;
    }
    .advantage h1{
        font-size:25px;
    }   
    .advantage p{
        font-size: 18px;
    }
}
