/* Reset כללי */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    font-family: 'Rubik Vinyl', sans-serif;
    background: linear-gradient(to bottom right, #fdfcfb, #e2d1c3);
}

.about-section {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    padding: 40px 20px 80px;
    animation: fadeInUp 1s ease both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    gap: 60px;
    flex-wrap: wrap-reverse;
}

.left-side {
    flex: 1;
    text-align: right;
    max-width: 550px;
}

.right-side {
    flex: 1;
    text-align: center;
}

.about-title {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 120px;
}

.about-image {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.03);
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Rubik Vinyl', sans-serif;
    font-weight: 400;
}

.highlighted {
    color: #e63946;
    font-weight: bold;
    font-size: 20px;
}

.footer {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
}

.footer .contact-info span {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.footer .icons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer .icons a {
    width: 36px;
    height: 36px;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
}

.footer .icons img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.footer .icons a:hover img {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .left-side {
        margin: 0;
    }

    .about-title {
        font-size: 28px;
    }

    .about-text {
        font-size: 16px;
    }

    .footer .contact-info span {
        font-size: 16px;
    }
}

/* סרגל ניווט משולב */
header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    padding: 8px;
    display: flex;
    justify-content: space-between;  
    align-items: center;
    background-color: rgba(255, 255, 255, 0.4); 
    z-index: 10;
    transition: background-color 0.3s ease;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.6);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    max-height: 50px;
    transition: transform 0.3s ease;
}

nav {
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

nav ul li {
    position: relative;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

nav ul li:hover > a {
    color: #e63946;
}

.dropdown {
    display: none;
    position: absolute;
    top: 160%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.6);
    width: 200px;
    border: 2px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

nav ul li:hover .dropdown {
    display: block;
    pointer-events: auto;
    transform: translateY(10px);
    opacity: 1;
}

.dropdown a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.dropdown a:hover {
    background-color: #f1f1f1;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg/bg-camera.jpg');
    background-size: cover;
    background-position: center center;
    opacity: 0.1;
    z-index: -1;
}

/* =========================
   USP – Premium Upgrade
   ========================= */

.usp-section {
    margin-top: 90px;
    padding: 70px 20px;
    text-align: center;
}

.usp-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.usp-section p {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
    max-width: 1100px;
    margin: 0 auto;
}

.usp-grid div {
    position: relative;
    background: rgba(255,255,255,0.7);
    padding: 46px 24px 28px;
    border-radius: 22px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.65;
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* אייקון כוכב */
.usp-grid div::before {
    content: "★";
    position: absolute;
    top: 18px;
    right: 50%;
    transform: translateX(50%);
    font-size: 24px;
    color: #e63946;
}

.usp-grid div:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.2);
}

/* =========================
   Testimonials – Premium
   ========================= */

.testimonials-section {
    margin-top: 120px;
    padding: 70px 20px 110px;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.testimonials-section p {
    max-width: 720px;
    margin: 0 auto 60px;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255,255,255,0.75);
    padding: 36px 30px;
    border-radius: 26px;
    box-shadow: 0 20px 55px rgba(0,0,0,0.16);
    position: relative;
    font-size: 16px;
    line-height: 1.85;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* סימן ציטוט */
.testimonial::before {
    content: "❝";
    position: absolute;
    top: -22px;
    right: 22px;
    font-size: 64px;
    color: rgba(230,57,70,0.15);
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.22);
}

/* כוכבים */
.testimonial .stars {
    margin-top: 18px;
    font-size: 18px;
    letter-spacing: 4px;
    color: #f5b301;
}

/* שם לקוח */
.testimonial .client {
    margin-top: 20px;
    font-weight: 700;
    color: #444;
    font-size: 15px;
}

/* ===================================================
   Mobile polish
   =================================================== */

@media (max-width: 768px) {
    .usp-section h2,
    .testimonials-section h2 {
        font-size: 26px;
    }

    .testimonial {
        font-size: 15px;
    }
}

/* =========================
   About v3 – Premium Design
   ========================= */

.about-v3 {
    padding: 80px 70px;
    border-radius: 32px;
    background: rgba(255,255,255,0.78);
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

/* עמודת טקסט */
.about-content {
    max-width: 520px;
}

/* "קצת עליי" */
.about-eyebrow {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 18px;
    text-transform: uppercase;
}

/* כותרת - שם */
.about-heading {
    font-size: 48px;        /* הגדלתי מעט */
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;    /* פחות מרווח מתחת לכותרת */
    color: #111;
    text-align: right;      /* ימין, עברית */
}

/* קו הפרדה ארוך מתחת לשם */
.about-line {
    width: 300px;           /* קו ארוך */
    height: 4px;            /* עבה יותר */
    background: #000000;
    margin: 0 0 20px auto;  /* ממוקם לימין, עם מרווח מתחת */
    border-radius: 3px;
}

/* טקסט "צלמת" מתחת לקו */
.subtitle {
    display: block;
    font-size: 24px;
    font-weight: 300;
    color: #555;
    text-align: right;      /* ימין */
    margin-bottom: 30px;
}

/* פסקאות */
.about-content p {
    font-size: 17.5px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 22px;
}

/* הדגשות */
.about-content strong {
    font-weight: 700;
    color: #111;
}

/* חתימה */
.about-sign {
    margin-top: 42px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.about-sign span {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    font-weight: 400;
    color: #555;
}

/* אנימציית כניסה עדינה */
.about-content.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* מובייל */
@media (max-width: 768px) {
    .about-v3 {
        padding: 40px 26px;
    }

    .about-heading {
        font-size: 34px;
        text-align: center;
        margin-bottom: 8px;
    }

    .about-line {
        width: 200px;
        margin: 0 auto 15px auto; /* מרכז */
    }

    .subtitle {
        font-size: 18px;
        text-align: center;
        margin-bottom: 20px;
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }
}