/* Page Stylesheet for index.blade.php */

.about-section {
    padding: 46px 0 60px 0;
    background: radial-gradient(1200px 600px at 10% 0%, rgba(200, 155, 60, 0.10), transparent 55%),
        radial-gradient(900px 500px at 90% 10%, rgba(90, 20, 20, 0.08), transparent 55%);
}

.about-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.about-title {
    font-weight: 800;
    letter-spacing: 0.2px;
    margin: 0;
    font-size: clamp(1.5rem, 2.2vw, 2.15rem);
}

.about-divider {
    height: 3px;
    width: 70px;
    border-radius: 3px;
    background: var(--color-primary-500);
    opacity: 0.9;
}

.about-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #374151;
}

.about-content p {
    margin-bottom: 18px;
    text-align: justify;
}

@media (max-width: 768px) {
    .about-content {
        font-size: 1rem;
        line-height: 1.75;
    }
}

/* Language Selector styling */
.lang-selector-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.lang-dropdown-btn {
    background-color: #fff;
    border: 1px solid var(--color-border);
    color: var(--color-ink-primary);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    outline: none;
}

.lang-dropdown-btn:hover,
.lang-dropdown-btn:focus,
.lang-dropdown-btn:active {
    background-color: var(--color-surface-elevated);
    border-color: var(--color-secondary-hover);
    color: var(--color-ink-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.lang-dropdown-btn::after {
    margin-left: 0.5em;
    vertical-align: 0.15em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.show>.lang-dropdown-btn::after {
    transform: rotate(180deg);
}

.lang-menu {
    border-radius: 12px;
    border: 1px solid rgba(200, 155, 60, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 6px;
    min-width: 160px;
    margin-top: 8px !important;
}

.lang-item {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-item:hover {
    background-color: var(--color-surface-elevated);
    color: var(--color-ink-primary);
}

.lang-item.active {
    background-color: var(--color-secondary);
    color: #fff !important;
}

/* Bilingual Content Transitions */
.lang-content {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: none;
}

.lang-content.show-block {
    display: block;
}

.lang-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Beautiful styled text elements */
.about-story-block {
    margin-bottom: 35px;
}

.about-story-block:last-child {
    margin-bottom: 0;
}

.about-story-heading {
    color: var(--color-ink-primary);
    font-size: clamp(1.25rem, 1.8vw, 1.6rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.about-footer-info {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 20px;
    margin-top: 30px;
    font-style: italic;
    color: #6b7280;
    font-weight: 600;
    font-size: 1rem;
}