/* TLV Personals - Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Amiri', serif;
    background-color: #FCF9D2;
    color: #000000;
    line-height: 1.6;
    min-height: 100vh;
}

/* Header & Language Toggle */
header {
    position: fixed;
    top: 0;
    right: 0;
    padding: 1rem;
    z-index: 100;
}

.lang-toggle {
    font-family: 'Amiri', serif;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 1px solid #8B4513;
    color: #8B4513;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background-color: #8B4513;
    color: #FCF9D2;
}

/* Main Container */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 1.5rem 2rem;
}

/* Site Title */
.site-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #000;
}

.tagline {
    text-align: center;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

/* Navigation */
.nav-links {
    text-align: center;
    margin-bottom: 1rem;
}

.nav-links a {
    color: #8B4513;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #000;
}

.nav-links a.active {
    font-weight: 700;
}

.nav-separator {
    margin: 0 0.75rem;
    color: #8B4513;
}

/* Content Sections (About page) */
.content-section {
    margin-bottom: 1.5rem;
}

.content-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 2rem;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

/* Decorative Divider */
.divider {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.divider svg {
    width: 200px;
    height: 30px;
}

/* Profile Cards */
.profile {
    margin-bottom: 1rem;
}

.profile-image-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border: 2px solid #8B4513;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: #8B4513;
    background-color: rgba(139, 69, 19, 0.05);
}

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

.profile-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.profile-details {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.profile-bio {
    font-size: 1rem;
    text-align: justify;
    line-height: 1.8;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Language visibility */
[data-lang="he"] {
    display: none;
}

[data-lang="en"] {
    display: inline;
}

/* RTL Support for Hebrew */
html[dir="rtl"] [data-lang="he"] {
    display: inline;
}

html[dir="rtl"] [data-lang="en"] {
    display: none;
}

html[dir="rtl"] .container {
    direction: rtl;
}

html[dir="rtl"] .profile-bio {
    text-align: justify;
}

html[dir="rtl"] .content-section p,
html[dir="rtl"] .faq-answer {
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 600px) {
    .site-title {
        font-size: 2rem;
    }

    .container {
        padding: 3.5rem 1rem 1.5rem;
    }

    .profile-title {
        font-size: 1.1rem;
    }

    .profile-image-placeholder {
        width: 120px;
        height: 120px;
    }

    .profile-bio {
        font-size: 0.95rem;
        text-align: left;
    }

    html[dir="rtl"] .profile-bio {
        text-align: right;
    }
}
