/* 
   רוני בן המוריה - עיצוב אתר
   צבעים מהלוגו:
   - כחול כהה: #2c3e50
   - ורוד/מג'נטה: #c2185b
   - ירוק: #7cb342
   - חום/כתום: #bf8040
   - רקע חם: #faf7f2
*/

:root {
    --primary-blue: #2c3e50;
    --accent-pink: #c2185b;
    --accent-green: #7cb342;
    --accent-brown: #bf8040;
    --bg-warm: #faf7f2;
    --bg-light: #fff9f0;
    --text-main: #3a3a3a;
    --text-light: #6a6a6a;
}

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

body {
    font-family: 'Heebo', sans-serif;
    background: var(--bg-warm);
    min-height: 100vh;
    color: var(--text-main);
}

/* ========== HEADER ========== */
.site-header {
    background: white;
    padding: 15px 40px;
    box-shadow: 0 2px 15px rgba(44, 62, 80, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--accent-green);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section img {
    height: 70px;
    width: auto;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, #d81b60 100%);
    padding: 12px 28px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    direction: ltr;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.35);
}

/* ========== MAIN CONTENT ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-title p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.page-title .stars {
    color: var(--accent-brown);
    font-size: 1.4rem;
    margin: 12px 0;
    letter-spacing: 8px;
}

/* ========== CATEGORY ========== */
.category {
    margin-bottom: 50px;
}

.category-title {
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-green);
}

.category-title h2 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 500;
}

/* ========== TESTIMONIAL CARDS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-right: 4px solid var(--accent-green);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 62, 80, 0.1);
}

.testimonial-card.special-card {
    grid-column: 1 / -1;
    background: linear-gradient(145deg, #ffffff 0%, var(--bg-light) 100%);
    border-right: 4px solid var(--accent-pink);
}

.testimonial-header {
    margin-bottom: 18px;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 4px;
}

.reviewer-info .date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.rating {
    color: var(--accent-brown);
    font-size: 0.95rem;
    margin-top: 3px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-main);
}

.highlight {
    background: linear-gradient(120deg, #e8f5e9 0%, #e8f5e9 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 90%;
    font-weight: 500;
}

.result-highlight {
    background: linear-gradient(120deg, #c8e6c9 0%, #c8e6c9 100%);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    margin: 5px 0;
}

.source-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 18px;
    background: var(--bg-light);
    color: var(--text-light);
    border: 1px solid #e0d8d0;
}

/* ========== CERTIFICATES ========== */
.certificates-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.certificate-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.06);
    border-right: 4px solid var(--accent-green);
}

.certificate-item img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.certificate-info {
    padding: 20px 25px;
    border-top: 1px solid #f0ebe3;
}

.certificate-info h3 {
    font-size: 1.15rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 600;
}

.certificate-info p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ========== LINKS SECTION ========== */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.link-card {
    background: white;
    border-radius: 12px;
    padding: 18px 22px;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: 0 3px 15px rgba(44, 62, 80, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #f0ebe3;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.1);
    border-color: var(--accent-green);
}

.link-card h4 {
    color: var(--primary-blue);
    margin-bottom: 3px;
}

.link-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.link-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #8bc34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ========== VIDEO SECTION ========== */
.video-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.video-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.06);
    text-align: center;
}

.video-card h3 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 500;
}

.video-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--primary-blue);
    color: white;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
}

.site-footer p {
    margin-bottom: 8px;
}

.site-footer a {
    color: #b8d4b8;
    text-decoration: none;
}

.site-footer a:hover {
    color: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .header-content {
        justify-content: center;
        text-align: center;
    }
    
    .logo-section img {
        height: 55px;
    }
    
    .contact-btn {
        padding: 10px 22px;
        font-size: 1rem;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 22px;
    }
    
    .site-header {
        padding: 12px 20px;
    }
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--bg-light);
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--text-main);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    background: var(--accent-green);
    color: white;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hamburger Menu - Fixed Position */
.hamburger-menu {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1001;
    background: var(--accent-green);
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #f5efe6 0%, var(--bg-warm) 100%);
    z-index: 1000;
    transition: bottom 0.4s ease;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    padding: 30px 20px;
    max-height: 70vh;
    overflow-y: auto;
    border-radius: 20px 20px 0 0;
}

.mobile-nav.active {
    bottom: 0;
}

.mobile-nav a {
    display: block;
    padding: 14px 20px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(93, 122, 93, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 5px;
}

.mobile-nav a:hover, .mobile-nav a.active {
    background: var(--accent-green);
    color: white;
    border-bottom: 1px solid var(--accent-green);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-nav-overlay.active {
    display: block;
}

@media (max-width: 900px) {
    .hamburger-menu {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
}
