/* =======================
   استایل اصلی سکشن
   ======================= */
.brand-story {
    position: relative;
    overflow: hidden;
    color: white;
}

/* تصویر بک‌گراند */
.brand-story img {
    width: 100%;
    height: auto;
    display: block;
}

/* container متن روی تصویر */
.brand-story .container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    /*padding: 0 15px;*/
    /*padding: 20px;*/
}

/* متن راست‌چین */
.brand-story-text {
    width: 100%;
    text-align: right;
    position: relative;
}

/* =======================
   باکس متن و دکمه
   ======================= */
.brand-story-box {
    display: inline-block; /* اندازه دقیق متن + دکمه */
    background: linear-gradient(to bottom, rgba(7,91,94,0.25), rgba(7,91,94,0.1));
    border-radius: 15px;
    padding: 20px;
    /*backdrop-filter: blur(8px); !* مات شدن پس‌زمینه پشت باکس *!*/
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* =======================
   تایپینگ عنوان و پاراگراف
   ======================= */
.typing-text, .typing-paragraph {
    display: block;
    white-space: pre-wrap;
    overflow: hidden;
    font-weight: bold;
}

.typing-text {
    border-right: 2px solid #1E6F5C;
    /*text-shadow: 2px 2px 6px rgba(0,0,0,0.5);*/
}

.typing-paragraph {
    border-right: none;
    /*text-shadow: 1px 1px 4px rgba(0,0,0,0.4);*/
}

/* =======================
   دکمه
   ======================= */
.story-btn {
    /*border: 2px solid #1E6F5C;*/
    color: white;
    text-decoration: none;
    border-radius: 50px;
    padding: 8px 20px;
    transition: all 0.4s;
    font-size: clamp(9px, 1.5vw, 16px);
    background-color: rgba(0,0,0,.5);
}

.story-btn:hover {
    background-color: #075B5E;
    border-color: #075B5E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(7,91,94,0.2);
}

/* =======================
   فونت واکنش‌گرا با clamp
   ======================= */
.brand-story-text h2 {
    font-size: clamp(14px, 2vw, 25px);
    line-height: 1.2;
    color: #1E6F5C;
}

.brand-story-text p {
    font-size: clamp(9px, 1.5vw, 16px);
    line-height: 1.5;
    color: #1E6F5C;
}

/* =======================
   موبایل
   ======================= */
@media (max-width: 768px) {
    .brand-story .container {
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        padding: 20px;
    }

    .brand-story-box {
        width: 100%;
        padding: 20px;
        border-radius: 10px;
    }

    .brand-story-text h2 {

    }

    .brand-story-text p {

    }

    .story-btn {
        padding: 7px 16px;
        /*font-size: 0.9rem;*/
    }
}
