/* איפוס הגדרות בסיסיות */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Assistant', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* באנר עליון ותחתון */
.top-banner, .bottom-banner {
    background-color: #111111;
    color: #ffffff;
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
}

.bottom-banner {
    margin-top: 60px;
    padding: 15px 20px;
}

/* תפריט ניווט עליון (Header) */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.header-side {
    flex: 1;
}

.text-left {
    text-align: left;
}

/* עיצוב הלוגו */
.header-logo {
    flex: 1;
    text-align: center;
}

.logo-img {
    max-height: 55px; /* גובה מותאם ללוגו יוקרתי */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

/* כפתורים מעוצבים */
.nav-btn {
    display: inline-block;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 0px; /* קצוות חדים למראה מודרני ונקי */
}

.btn-primary {
    background-color: #111111;
    color: #ffffff;
    border: 1px solid #111111;
}

.btn-primary:hover {
    background-color: #c5a059; /* גוון זהב יוקרתי בטקסט/רקע */
    border-color: #c5a059;
}

.btn-secondary {
    background-color: transparent;
    color: #111111;
    border: 1px solid #111111;
}

.btn-secondary:hover {
    background-color: #111111;
    color: #ffffff;
}

/* גוף הטקסט של התקנון */
.terms-container {
    max-width: 850px;
    margin: 60px auto;
    padding: 0 25px;
}

.terms-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    color: #111111;
}

.terms-subtitle {
    font-size: 15px;
    color: #777777;
    text-align: center;
    font-weight: 300;
    margin-bottom: 20px;
}

.terms-meta {
    text-align: center;
    font-size: 12px;
    color: #999999;
    margin-bottom: 40px;
}

.luxury-divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin-bottom: 50px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

/* סעיפי התקנון */
.terms-section {
    margin-bottom: 45px;
}

.terms-section h2 {
    font-family: 'Assistant', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
}

.terms-section p {
    font-size: 15px;
    color: #444444;
    margin-bottom: 15px;
    text-align: justify;
}

.terms-section ul {
    margin-right: 25px;
    margin-bottom: 15px;
}

.terms-section li {
    font-size: 15px;
    color: #444444;
    margin-bottom: 8px;
}

/* פוטר (Footer) */
.main-footer {
    background-color: #f9f9f9;
    border-top: 1px solid #f0f0f0;
    padding: 50px 20px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.footer-info p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 6px;
}

.footer-info a {
    color: #111111;
    text-decoration: none;
    font-weight: 600;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-link {
    color: #111111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #c5a059;
}

.footer-btn {
    display: inline-block;
    background-color: #25D366; /* צבע וואטסאפ רשמי כדי שיבלוט */
    color: #ffffff;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer-btn:hover {
    background-color: #1ebd58;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #999999;
}

/* התאמה למובייל (Responsive) */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-side.text-left {
        text-align: center;
    }
    
    .nav-btn {
        width: 100%;
        text-align: center;
    }
    
    .terms-title {
        font-size: 28px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .footer-btn {
        width: 100%;
        text-align: center;
    }
}