.nav__link a {
    color: #333333;
}

.nav__link a:hover {
    color: #4d4d4d;
}

.nav__link a:hover .d-toggle {
    fill: #4d4d4d;
}


.d-toggle {
    fill: #333333;
}

.header-btn{
    background: #334097;
    padding: 0.9vw 1.5vw;
    color: #fcf6f6;
    outline: none;
    font-family: "Altone Trial", sans-serif;
    font-size: 1.1vw;
    border: 0.1vw solid #fff;
    border-radius: 1vw;
    z-index: 2;
    height: 100%;
    position: relative;
    cursor: pointer;
}

/* Story intro */

.story-header {
    position: relative;
    width: 100%;
    height: 25vw; /* Adjust height as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.196); /* Semi-transparent overlay */
    z-index: 1;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.story-content {
    position: relative;
    z-index: 2; /* Ensures content appears above overlay */
    text-align: center;
    color: #fff;
    padding: 0 1vw;
}

.story-title {
    font-size: 2.5vw;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.story-subtitle {
    font-size: 1.2vw;
    font-weight: 300;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .story-header {
        height: 40vw;
    }

    .story-title {
        font-size: 4vw;
    }

    .story-subtitle {
        font-size: 2vw;
    }
}

/* Introduction to our story */

.story-introduction {
    background-color: #F5F5F5;
    padding: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.story-introduction .container {
    width: 45vw;
}

.story-introduction h2 {
    font-size: 3.5vw;
    width: 17ch;
    line-height: 1.5;
    margin-bottom: 1vw;
}

.story-introduction p {
    font-size: 1.3vw;
    color: #daa520;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 0.5vw;
}

.img-container {
    width: 40vw;
    height: 40vw;
    border-radius: 1.5vw;
    border: 0.5vw solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1vw;
}

/* Story details */

.first-story{
    padding: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.story-details{
    width: 45vw;
    color: #333;
}

.story-details p{
    text-align: left;
    line-height: 1.5;
}
