/*
Theme Name: Ozana Style1
Author: Gemini
Version: 2.0
*/

body {
    margin: 0;
    padding: 0;
    direction: rtl;
    font-family: 'Assistant', 'Segoe UI', sans-serif;
    background-color: #000; /* רקע כהה כמו במתחרה */
    color: #fff;
}

/* Header & Top Bar */
.top-bar {
    background: #fff;
    color: #000;
    padding: 8px 5%;
    display: flex;
    justify-content: flex-start;
    font-weight: bold;
    font-size: 14px;
}

header {
    background: #000;
    padding: 20px 0 0 0;
    border-bottom: 1px solid #333;
}

.logo-area {
    text-align: center;
    margin-bottom: 20px;
}

.logo-area h1 {
    font-size: 45px;
    letter-spacing: 12px;
    margin: 0;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
}

.logo-area span {
    display: block;
    font-size: 12px;
    letter-spacing: 5px;
    color: #aaa;
}

/* תפריט ניווט */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover { color: #aaa; }
.header-contact-link {
    color: #ffffff;
    padding: 8px 18px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: solid 1px #646464;
    border-top: solid 1px #646464;
}

/* מעטפת לאייקון שיוצרת את האפקט */
.icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #c5a059; /* צבע האייקון - ניתן לשנות לכחול או אדום */
    color: white;
    border-radius: 50%;
    margin-right: 10px; /* רווח מהטקסט */
}
.ozana-main {
    margin-top: 150px;
}
/* אפקט הפעימה (הטבעת החיצונית) */
.icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #c5a059 ;
    opacity: 0.7;
    animation: pulse-animation 1.5s infinite;
}
article{max-width:1000px;font-size:19px;}
.header-right-col,.header-left-col{width:25%;}
@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* אנימציית רטט לאייקון עצמו */
.header-contact-link:hover .fas {
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

.catalog-header h2 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}
.catalog-header {
    background: #000;
    color: #fff;
    text-align: center;
    background-attachment: fixed;
    padding: 160px 0;
    border-bottom: 1px solid #333;
    background-size: 100%;
    background-position: center;
}
/* גריד קטגוריות - העתק מדויק מהצילום */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 עמודות בדיוק */
    gap: 4px;
    background: #000;
}

.category-item {
    position: relative;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.category-item .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.category-item h2 {
    position: absolute;
    color: #fff;
    z-index: 2;
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.category-item:hover img { transform: scale(1.05); }


/* גריד הקטגוריות */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 עמודות כמו שביקשת */
    gap: 4px; /* רווח דק מאוד בין התמונות */
    background: #000;
}

.category-item {
    position: relative;
    height: 480px; /* גובה מרשים */
    overflow: hidden; /* חובה כדי שהזום לא יצא מהמסגרת */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #111;
}

/* התמונה במצב רגיל */
.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease, filter 0.5s ease; /* אנימציה חלקה וארוכה */
}

/* הטקסט במצב רגיל */
.category-item h2 {
    position: absolute;
    color: #fff !important;
    z-index: 10;
    font-size: 32px;
    font-weight: 400;
    transition: opacity 0.6s ease, transform 0.6s ease; /* אנימציה להעלמה */
    text-shadow: 0 0 15px rgba(0,0,0,0.6);
}

/* --- האפקט כשעומדים על התמונה (Hover) --- */

/* 1. התמונה מתקרבת (Zoom In) */
.category-item:hover img {
    transform: scale(1.15); /* עוצמת הזום */
}

/* 2. הטקסט נעלם לאט (Fade Out) */
.category-item:hover h2 {
    opacity: 0;
    transform: translateY(-10px); /* מוסיף תנועה קלה למעלה בזמן ההעלמה */
}

/* 3. שכבת כהות עדינה ברקע */
.category-item .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
    transition: background 0.5s ease;
}

.category-item:hover .overlay {
    background: rgba(0,0,0,0.5); /* הכהיה קלה בזמן הזום */
}
/* Header & Navigation HD */
.top-bar { background: #fff; padding: 12px 0; border-bottom: 1px solid #eee; text-align: left; }
.top-contact { font-weight: bold; font-size: 14px; margin-left: 5%; border: 1px solid #000; display: inline-block; padding: 5px 15px; }

.site-header { background: #000; text-align: center; padding-top: 30px; }
.logo-text-hd h1 { color: #fff; font-size: 55px; letter-spacing: 15px; margin: 0; font-weight: 300; }
.logo-text-hd span { color: #fff; display: block; letter-spacing: 5px; font-size: 12px; margin-top: 5px; opacity: 0.7; }

.main-nav-hd { background: #000; border-top: 1px solid #333; margin-top: 30px; }
.main-nav-hd .container-wide { display: flex; justify-content: center; align-items: center; position: relative; }
.main-nav-hd ul { list-style: none; display: flex; padding: 18px 0; margin: 0; gap: 35px; }
.main-nav-hd ul li a { color: #fff; text-decoration: none; font-weight: 600; font-size: 14px; text-transform: uppercase; }
.search-icon-nav { color: #fff; position: absolute; left: 5%; cursor: pointer; }




/* מבנה כללי */


.catalog-header h2 {
    font-size: 40px;
    letter-spacing: 5px;
    font-weight: 300;
}

/* הגריד */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 עמודות */
    gap: 4px; /* רווח דק כמו אצל המתחרה */
    background: #000;
}

.service-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    text-decoration: none;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease; /* אנימציית זום ארוכה ויוקרתית */
}

.service-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.35); /* כהות התחלתית */
    transition: background 0.6s ease;
    z-index: 1;
}

.service-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    width: 100%;
    z-index: 2;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* אפקטים במעבר עכבר (Hover) */
.service-card:hover .service-image img {
    transform: scale(1.12); /* זום פנימה */
}

.service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.55); /* הכהיה חזקה יותר */
}

.service-card:hover .service-title {
    opacity: 0; /* העלמת הטקסט כפי שביקשת */
    transform: translate(-50%, -60%); /* תנועה קלה למעלה בזמן ההעלמה */
}

/* רספונסיביות לנייד */
@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; }
}









/* How It Works HD Section */
.how-it-works-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
    direction: rtl;
}

.title-main {
    font-size: 45px;
    letter-spacing: 8px;
    font-weight: 300;
    margin-bottom: 20px;
}

.subtitle {
    color: #666;
    margin-bottom: 60px;
    font-size: 18px;
}

.steps-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    border: 1px solid #e0e0e0;
    padding: 40px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 350px;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* עיצוב האייקון השחור */
.icon-holder {
    background: #000;
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.step-card h3 {
    font-size: 19px;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* המספר השחור בתחתית */
.step-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    z-index: 5;
}

/* התאמה לנייד */
@media (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
        padding: 0 20px;
        gap: 50px;
    }
}





/* Responsive */

.trust-steps {
    padding: 120px 0;
    background: #f9f9f9;
    direction: rtl;
    font-family: 'Assistant', sans-serif;
}

.header-center {
    text-align: center;
    margin-bottom: 80px;
}

.gold-label {
    font-size: 12px;
    letter-spacing: 4px;
    color: #c5a059; /* זהב יוקרתי מאופק */
    font-weight: 700;
    text-transform: uppercase;
}

.header-center h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 15px 0;
    color: #1a1a1a;
}

.divider {
    width: 40px;
    height: 1px;
    background: #c5a059;
    margin: 0 auto;
}

.grid-luxury {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
}

.card-luxury {
    background: #fff;
    padding: 50px 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.5s ease;
    border-top: 2px solid transparent;
}

.card-luxury:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-top: 2px solid #1a1a1a; /* קו שחור חזק ב-hover משדר סמכות */
}

.icon-wrap {
    width: 45px;
    height: 45px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.number-tag {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #c5a059;
    display: block;
    margin-bottom: 15px;
}

.card-luxury h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.card-luxury p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

/*footer*/
.site-footer {
    background: #000;
    color: #fff;
    padding: 80px 0 30px;
    direction: rtl;
    font-family: 'Assistant', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    padding: 0 40px;
}

/* הקו הלבן מעל הכותרת - בדיוק כמו באתר JANOR */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-top: 20px;
}

.footer-title::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px; /* אורך הקו */
    height: 4px; /* עובי הקו */
    background: #fff;
}

/* רשימות וניווט */
.footer-details, .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-details li, .footer-nav ul li {
    font-size: 15px;
    margin-bottom: 12px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: #fff;
}

/* לוגו הפוטר */
.footer-logo-wrap {
    text-align: left;
}

.footer-logo {
    max-width: 200px;
    filter: brightness(0) invert(1); /* הופך לוגו שחור ללבן */
}

.logo-text-footer .brand {
    display: block;
    font-size: 35px;
    letter-spacing: 8px;
    font-weight: 300;
}

.logo-text-footer .sub-brand {
    font-size: 10px;
    letter-spacing: 4px;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 60px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
}



/* אזור יצירת קשר מעל הפוטר */
.footer-contact-area {
    position: relative;
    padding: 100px 0;
    background-image: url('https://ozanagroup.co.il/wp-content/uploads/2026/05/whats-up-2026.jpg'); /* כאן תעלה את התמונה שלך */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* אפקט פראלקס יוקרתי */
    color: #fff;
    text-align: center;
    direction: rtl;
}

.contact-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75); /* הכהיה חזקה של התמונה */
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* עיצוב הטופס - קווים נקיים */
.luxury-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.footer-details a{color:#fff;}
.luxury-form input, .luxury-form textarea {
    font-family: 'Assistant', 'Segoe UI', sans-serif;
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.luxury-form input:focus, .luxury-form textarea:focus {
    border-bottom-color: #fff;
}

.luxury-form textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 30px;
}

.luxury-form button {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 60px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
}

.luxury-form button:hover {
    opacity: 0.9;
}

/* התאמת הפוטר (המשך מהקוד הקודם) */
.site-footer {
    background: #000;
    border-top: 1px solid #333;
    padding: 60px 0;
}

.footer-title::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 150px;
    height: 3px;
    background: #fff; /* הקו הלבן הבולט מהצילום */
}






/* עמוד הפוסטים הראשי */
.posts-page {
    background-color: #fcfcfc;
    padding-top: 150px; /* התאמה לגובה ההדר */
}

.page-header-luxury {
    text-align: center;
    margin-bottom: 60px;
}

.page-header-luxury h1 {
    font-size: 48px;
    font-weight: 200;
    color: #1a1a1a;
    margin: 10px 0;
}

/* גריד הפוסטים */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

/* כרטיס פוסט יוקרתי */
.post-card-luxury {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.post-card-luxury:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.post-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    height: 250px;
}

.post-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-card-luxury:hover .post-image-link img {
    transform: scale(1.1);
}

.post-date {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #000;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
}

.post-content-wrap {
    padding: 30px;
    direction: rtl;
}

.post-category {
    font-size: 11px;
    color: #c5a059; /* זהב יוקרתי */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.post-content-wrap h3 {
    font-size: 22px;
    margin: 15px 0;
}

.post-content-wrap h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.post-content-wrap p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 300;
}

.read-more-gold {
    display: inline-block;
    margin-top: 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border-bottom: 1px solid #c5a059;
    padding-bottom: 3px;
}





/*post*/
/* --- עיצוב פוסט פרימיום אוזנה - גרסה יציבה --- */

.ozana-premium-post {
    direction: rtl;
    color: #ffffff !important;
    line-height: 1.8;
    max-width: 850px;
    margin: 40px auto;
    padding: 20px;
    text-align: right;
}

/* כותרת משנית (זהב) */
.ozana-premium-post .gold-accent {
    color: #c5a059 !important;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

/* כותרת ראשית של הפוסט */
.ozana-premium-post h1 {
    font-size: clamp(32px, 5vw, 48px) !important;
    font-weight: 200 !important;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    margin-bottom: 30px;
    color: #fff !important;
}

/* בוקס פתיחה */
.ozana-premium-post .intro-box {
    font-size: 22px;
    border-right: 4px solid #c5a059;
    padding: 10px 20px;
    margin: 40px 0;
    color: #cccccc;
    background: rgba(197, 160, 89, 0.05);
}

/* ציטוט מעוצב */
.ozana-quote {
    background: #111111;
    padding: 40px 20px;
    font-size: 26px;
    text-align: center;
    border-radius: 4px;
    margin: 50px 0;
    font-weight: 300;
    border: 1px solid #222;
}

/* גריד כרטיסיות */
.ozana-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.feature-card {
    background: #0a0a0a;
    padding: 25px;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #c5a059;
    transform: translateY(-5px);
}

.feature-card h3 {
    color: #c5a059 !important;
    font-size: 20px !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
}

.feature-card p {
    font-size: 15px;
    color: #bbb;
    margin: 0;
}

/* תיבת הנעה לפעולה (CTA) */
.ozana-cta {
    background: #ffffff;
    color: #000000 !important;
    padding: 50px 20px;
    text-align: center;
    margin-top: 60px;
}

.ozana-cta h2 {
    color: #000 !important;
    font-size: 32px !important;
    margin-bottom: 10px !important;
}

.ozana-cta p {
    color: #333 !important;
    margin-bottom: 30px;
}

.cta-link {
    display: inline-block;
    background: #000;
    color: #fff !important;
    padding: 15px 45px;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 18px;
    transition: opacity 0.3s;
}

.cta-link:hover {
    opacity: 0.8;
}



















 .ozana-main{margin-top:150px;}
  .header-top{
      
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;

      
  }
.site-header {
    background: #000;
    padding: 0px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
}

.header-grid-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* חלוקה ל-3 עמודות: ימין, מרכז (לוגו), שמאל */
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    direction: rtl;
}

/* מרכוז הלוגו */
.header-center-col {
    display: flex;
    justify-content: center;
}

.hd-logo {
    height: 100px; /* תתאים לפי הצורך */
    width: auto;
  
}

/* צד שמאל: כפתור התקשרות */
.header-left-col {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
}


input[type="tel"] {
    text-align: right;
    direction: rtl;
}
/* צד ימין: כפתור המבורגר */
.header-right-col {
    display: flex;
    justify-content: flex-end;
}

.menu-toggle-button {
    background: none;
    border: none;
    color: #fff;font-size:19px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* הסתרת התפריט הרגיל והפיכתו לנפתח */
.main-nav-hd-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #111;
    transition: 0.4s ease;
    padding: 100px 30px;
}

/* כשהתפריט פתוח (מופעל ע"י JS) */
body.menu-open .main-nav-hd-overlay {
    right: 0;
}

.main-nav-hd-overlay ul {
    list-style: none;
    padding: 0;
}

.main-nav-hd-overlay ul li a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    display: block;
    margin-bottom: 25px;
    font-weight: 200;
}
/* תיקון רספונסיביות */
@media (max-width: 768px) {
    .ozana-premium-post h1 { font-size: 28px !important; }
    .ozana-quote { font-size: 20px; }
}

/* רספונסיביות */
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}





















/* רספונסיביות לנייד */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 50px;
    }
    .footer-title::before {
        right: 50%;
        transform: translateX(50%);
    }
    .footer-details li {
        justify-content: center;
    }
    .footer-logo-wrap {
        text-align: center;
    }
}


/* רספונסיביות */
@media (max-width: 1024px) { .grid-luxury { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-luxury { grid-template-columns: 1fr; } }













@media (max-width: 1024px) { .steps-grid-hd { grid-template-columns: repeat(2, 1fr); gap: 30px; } }
@media (max-width: 600px) { .steps-grid-hd { grid-template-columns: 1fr; } }
/* התאמה לנייד */
@media (max-width: 1000px) {
    .category-grid { grid-template-columns: 1fr; }
}





/* התאמות לניידים - מסכים קטנים מ-768 פיקסלים */
@media screen and (max-width: 768px) {
    
    /* מניעת גלילה רוחבית */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    /* הפיכת כל עמודות הגריד לעמודה אחת */
    .container, .content, .sidebar, .footer-widgets {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        float: none !important;
        display: block !important;
    }

    /* התאמת תמונות כדי שלא יחרגו מהמסך */
    img {
        max-width: 100%;
        height: auto;
    }

    /* הקטנת כותרות שעלולות "להישבר" לא יפה */
    h1 { font-size: 28px !important; }
    h2 { font-size: 24px !important; }
    h3 { font-size: 20px !important; }

    /* סידור תפריט הניווט - אם אין לך תפריט המבורגר, זה יערים אותם אחד תחת השני */
    nav ul li {
        display: block;
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    /* התאמה לאלמנטים של טפסים */
    input[type="text"], input[type="email"], textarea {
        width: 100% !important;
        box-sizing: border-box;
    }

    /* הסתרת אלמנטים מסוימים שמיותרים בנייד (אופציונלי) */
    .desktop-only {
        display: none !important;
    }
}
/* מבנה כללי של ה-Header */
.site-header {
   
    border-bottom: 1px solid #eee;
    direction: rtl; /* יישור לימין עבור עברית */
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
 .site-header .hamburger-bars {
        
        flex-direction: column !important;
        justify-content: center;
        gap: 5px !important;
        width: 25px;
        height: 20px;
    }
/* סידור הלוגו */
.logo-wrap {
    flex: 0 0 auto;
}

.hd-logo {
    max-height: 90px;
    width: auto;
}

/* כפתור המבורגר */
.menu-toggle-button {
    background: none;
   
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}


/* הסתרת התפריט כברירת מחדל בנייד */
.main-nav-hd {
    display: none;
    background: #000;
    width: 100%;
}

/* הצגת התפריט כשגוף האתר במצב פתוח */
body.menu-open .main-nav-hd {
    display: block;
}

.main-nav-hd ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav-hd li {
    border-bottom: 1px solid #eee;
}

.main-nav-hd a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
 .site-header .hamburger-bars span {
        display: block !important;
        width: 100% !important;
        height: 2px !important;
        background-color: #c5a059 !important; /* קווים בצבע זהב */
        border-radius: 2px;
        transition: 0.3s;margin:4px 0;
    }
/* התאמה לנייד (מתחת ל-768 פיקסלים) */
/* --- התאמות ספציפיות ל-Header בנייד --- */
/* --- עיצוב Header יוקרתי לנייד --- */
@media (max-width: 767px) {
    .ozana-contact-actions{min-width:auto!important;}
    .catalog-header {
    background: #000;
    color: #fff;
    text-align: center;
    background-attachment: fixed;
    padding: 48px 0;
    border-bottom: 1px solid #333;
    background-size: 100%;
    background-position: center;
}
   form#ozana-contact-form {
    padding: 0px 7px;
} 
    
    
    /* מיכל ראשי - רקע כהה כדי להתאים ללוגו */
   .main-nav-hd ul {
    list-style: none;
    display: flex;
    padding: 0px 0;
    margin: 0;
    gap: 0px;
    flex-direction: column;
}
    .site-header {
    background: #000;
    padding: 0px 0px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
}

article {
 
    max-width: 90%;
    margin: auto;
}

    .site-header .header-top {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 5px 15px !important;
        height: 80px !important;
    }

    /* אייקון טלפון - זהב */
  .site-header .icon-wrapper i {
    font-size: 16px !important;
    color: #fffbf4 !important;
}
.contact-text{display:none;}
    /* לוגו - הגדלה קלה ומרכז */
    .site-header .hd-logo {
        max-height: 90px !important;
        filter: brightness(1.1); /* הבהרה קלה */
    }
.ozana-home-premium{padding: 20px 20px!important;}
.ozana-main {
    margin-top: 100px;
}
    /* כפתור תפריט המבורגר */
    .site-header .menu-toggle-button {
        display: flex !important;
        align-items: center;
        gap: 8px;
        background: none !important;
        border: none !important;
        padding: 0 !important;
    }

    /* טקסט "תפריט" */
    .site-header .menu-text {
        color: #ffffff !important;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
    }

    /* תיקון הקווים שנעלמו */
   

   
}





