/* Workrocks AI Nadlan — Main CSS v14.1 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gold:      #c9a96e;
    --gold-lt:   #e8d9b8;
    --dark:      #0d0d1a;
    --dark2:     #141428;
    --navy:      #1a1a3e;
    --text:      #f0ede8;
    --text-dim:  #8a8070;
    --font:      'Heebo', 'Open Sans Hebrew', sans-serif;
    --serif:     'Cormorant Garamond', Georgia, serif;
    --radius:    14px;
}

body {
    font-family: var(--font);
    background: var(--dark);
    color: var(--text);
    direction: rtl;
    line-height: 1.7;
    min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── HEADER ── */
.wr-header {
    background: rgba(13,13,26,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,169,110,.15);
    position: sticky;
    top: 0;
    z-index: 200;
    height: 64px;
    display: flex;
    align-items: center;
}
.wr-header-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wr-logo {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: .08em;
}
.wr-logo span { color: var(--gold); }
.wr-nav a {
    color: rgba(255,255,255,.65);
    font-size: .85rem;
    margin-right: 1.8rem;
    transition: color .2s;
}
.wr-nav a:hover { color: var(--gold); }

/* ── HERO ── */
.wr-hero {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,169,110,.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(26,26,62,.6) 0%, transparent 70%),
        var(--dark);
    text-align: center;
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.wr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .5;
}
.wr-hero-inner {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
}
.wr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid rgba(201,169,110,.35);
    color: var(--gold);
    font-size: .78rem;
    letter-spacing: .18em;
    padding: 6px 22px;
    border-radius: 30px;
    text-transform: uppercase;
    background: rgba(201,169,110,.05);
}

/* ── HEADLINE ── */
.wr-hero-title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: .01em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .1em;
}
.wr-hero-white { color: #ffffff; }
.wr-hero-gold  { color: var(--gold); }

.wr-hero-sub {
    color: var(--text-dim);
    font-size: clamp(.9rem, 2.5vw, 1.1rem);
    max-width: 560px;
    line-height: 1.8;
}

/* ── CTAs ── */
.wr-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    justify-content: center;
    margin-top: .5rem;
}
.wr-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .8rem 1.9rem;
    border-radius: 30px;
    font-family: var(--font);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity .18s, transform .12s, box-shadow .2s;
    text-decoration: none;
    white-space: nowrap;
}
.wr-btn:hover  { opacity: .87; }
.wr-btn:active { transform: scale(.96); }
.wr-btn-gold    { background: var(--gold); color: #000; box-shadow: 0 4px 24px rgba(201,169,110,.28); }
.wr-btn-gold:hover { box-shadow: 0 6px 32px rgba(201,169,110,.45); opacity:1; }
.wr-btn-outline { background: transparent; color: var(--gold); border: 1.5px solid rgba(201,169,110,.5); }
.wr-btn-ghost   { background: rgba(255,255,255,.06); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.1); }

/* ── STUDIO SECTION ── */
.wr-studio-section {
    background: #0b0b0b;
    border-top: 1px solid rgba(201,169,110,.1);
}
.wr-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── FOOTER ── */
.wr-footer {
    background: #060610;
    border-top: 1px solid rgba(201,169,110,.1);
    text-align: center;
    padding: 2rem;
    font-size: .8rem;
    color: rgba(255,255,255,.3);
}
.wr-footer a { color: rgba(201,169,110,.6); }

/* ── WHATSAPP ── */
.wr-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    background: #25d366;
    color: #fff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    transition: transform .2s;
    text-decoration: none;
}
.wr-whatsapp:hover { transform: scale(1.1); color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .wr-hero-title { font-size: 2.4rem; }
    .wr-hero-ctas { flex-direction: column; align-items: center; }
    .wr-nav { display: none; }
}
