/* Jewbilee.Tv - Modern One-Page Website */
/* Apple-style scrolling design */

/* Language crossfade transition */
[data-i18n].lang-crossfade-in {
    opacity: 0 !important;
}

[data-i18n].lang-crossfade-active {
    opacity: 1 !important;
    transition: opacity 500ms ease-out !important;
}

/* For buttons with backgrounds - fade text color to transparent instead of opacity */
.nav-cta.lang-crossfade-text {
    color: transparent !important;
}

.nav-cta.lang-crossfade-text-active {
    color: #1a365d !important;
    transition: color 500ms ease-out !important;
}

.lang-ghost-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
}

:root {
    --primary-dark: #003366;
    --primary-blue: #0066CC;
    --gold-accent: #D4AF37;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #1d1d1f;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 51, 102, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img,
.nav-logo svg,
.nav-logo-svg {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
    text-align: center;
    display: inline-flex;
    justify-content: center;
}

/* Fixed widths for nav links to prevent layout shift on language change */
.nav-links.viewer-nav a:nth-child(1) { flex: 0 0 75px; width: 75px; } /* Watch Now / צפה עכשיו */
.nav-links.viewer-nav a:nth-child(2) { flex: 0 0 55px; width: 55px; } /* Content / תוכן */
.nav-links.viewer-nav a:nth-child(3) { flex: 0 0 42px; width: 42px; } /* About / אודות */
.nav-links.viewer-nav a:nth-child(4) { flex: 0 0 55px; width: 55px; } /* Support / תמיכה */

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: var(--gold-accent);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
    flex: 0 0 130px;
    width: 130px;
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.nav-cta:hover {
    background: #e5c048;
    transform: scale(1.02);
}

/* View Toggle Button */
.view-toggle {
    background: transparent;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    white-space: nowrap;
    flex: 0 0 118px;
    width: 118px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.mobile-view-toggle {
    background: transparent;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.view-toggle:hover,
.mobile-view-toggle:hover {
    background: var(--gold-accent);
    color: var(--primary-dark);
}

.view-toggle.active,
.mobile-view-toggle.active {
    background: var(--gold-accent);
    color: var(--primary-dark);
}

/* Language Slider - stays in fixed position */
.lang-slider {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    margin-left: 8px;
    padding: 4px 8px;
    border-radius: 16px;
    transition: background-color 0.2s;
    direction: ltr !important;
    flex-shrink: 0;
}

.lang-slider:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-slider:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.lang-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
    user-select: none;
}

.lang-label.active {
    color: var(--white);
}

.lang-track {
    width: 32px;
    height: 18px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 9px;
    position: relative;
    transition: background-color 0.2s;
}

.lang-slider:hover .lang-track {
    background: rgba(255, 255, 255, 0.4);
}

.lang-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: var(--white);
    border-radius: 50%;
    transition: left 0.2s ease;
}

/* Hebrew active state - thumb moves to right */
.lang-slider[data-lang="he"] .lang-thumb {
    left: 16px;
}

.lang-slider[data-lang="he"] .lang-en {
    color: rgba(255, 255, 255, 0.5);
}

.lang-slider[data-lang="he"] .lang-he {
    color: var(--white);
}

.lang-slider[data-lang="en"] .lang-en,
.lang-slider:not([data-lang]) .lang-en {
    color: var(--white);
}

.lang-slider[data-lang="en"] .lang-he,
.lang-slider:not([data-lang]) .lang-he {
    color: rgba(255, 255, 255, 0.5);
}

.mobile-view-toggle {
    width: 100%;
    margin-top: 16px;
    padding: 12px 24px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 20px 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    padding: 8px 0;
}

.mobile-menu.active {
    display: flex;
}

.mobile-cta {
    background: var(--gold-accent);
    color: var(--primary-dark) !important;
    padding: 12px 24px;
    border-radius: 24px;
    text-align: center;
    font-weight: 600;
    margin-top: 8px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.btn-hero {
    display: inline-block;
    background: var(--gold-accent);
    color: var(--primary-dark);
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 80px;
}

.btn-hero:hover {
    background: #e5c048;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    margin: 12px auto 0;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* Section Base Styles */
.section {
    padding: 100px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-light {
    background: var(--light-gray);
}

.section-dark {
    background: var(--primary-dark);
}

.section-gradient {
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.7);
}

/* Platforms Section */
.platforms-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-item {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.platform-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.platform-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.platform-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.platform-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.platform-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.platform-btn {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.platform-btn:hover {
    background: var(--primary-dark);
}

.platform-btn.coming-soon {
    background: #9ca3af;
    cursor: default;
    pointer-events: none;
}

.platform-btn.in-review {
    background: #f59e0b;
    cursor: default;
    pointer-events: none;
}

.platform-badge {
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-badge img {
    height: 40px;
    width: auto;
    max-width: 135px;
}

/* TV Mockup */
.tv-mockup-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.tv-mockup {
    max-width: 800px;
    width: 100%;
}

.tv-bezel {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.tv-screen {
    background: #0a0a0a;
    border-radius: 6px;
    padding: 4px;
    position: relative;
}

.tv-screen-content {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    border-radius: 4px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.tv-screen-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%, rgba(255,255,255,0.02) 100%);
    pointer-events: none;
}

.tv-screen-content img,
.tv-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
}

.tv-placeholder {
    text-align: center;
    color: var(--white);
    padding: 40px;
}

.tv-placeholder-logo {
    width: 120px !important;
    height: auto !important;
    margin-bottom: 16px;
    object-fit: contain !important;
}

.tv-placeholder p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.tv-brand {
    text-align: center;
    padding: 12px 0 8px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666666;
    letter-spacing: 4px;
}

.tv-stand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tv-stand-neck {
    width: 80px;
    height: 30px;
    background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 100%);
}

.tv-stand-base {
    width: 200px;
    height: 12px;
    background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 100%);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Content Showcase Section */
.content-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.content-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-item.reverse {
    direction: rtl;
}

.content-item.reverse > * {
    direction: ltr;
}

.content-visual {
    aspect-ratio: 16/10;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    position: relative;
    overflow: hidden;
}

.content-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="rgba(255,255,255,0.1)"/></svg>') center/60% no-repeat;
}

/* Content TV Mockup Styles */
.content-tv-mockup {
    width: 100%;
    max-width: 600px;
}

.content-tv-bezel {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.content-tv-screen {
    background: #0a0a0a;
    border-radius: 4px;
    padding: 3px;
    position: relative;
}

.content-tv-screen-content {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    border-radius: 3px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.content-tv-screen-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%, rgba(255,255,255,0.02) 100%);
    pointer-events: none;
}

.content-tv-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
}

/* LG Crossfade Animation */
.lg-crossfade {
    position: relative;
}

.lg-crossfade .lg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.lg-crossfade .lg-slide.active {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .lg-crossfade .lg-slide {
        transition: none;
    }
}

.content-tv-brand {
    text-align: center;
    padding: 8px 0 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-tv-brand .brand-logo {
    width: 50px;
    height: auto;
    max-height: 16px;
    object-fit: contain;
}

/* TV Stand Styles */
.content-tv-stand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Sony style - two angular feet */
.content-tv-stand.sony {
    flex-direction: row;
    justify-content: center;
    gap: 200px;
}

.content-tv-stand.sony .content-tv-stand-foot {
    width: 40px;
    height: 50px;
    background: linear-gradient(180deg, #2a2a2a 0%, #0a0a0a 100%);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}

.content-tv-stand.sony .content-tv-stand-foot.right {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}

/* LG style - curved base */
.content-tv-stand.lg .content-tv-stand-base {
    width: 280px;
    height: 20px;
    background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 100%);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    margin-top: 8px;
}

/* TCL style - V-shaped feet */
.content-tv-stand.tcl {
    flex-direction: row;
    justify-content: center;
    gap: 280px;
}

.content-tv-stand.tcl .content-tv-stand-foot {
    width: 35px;
    height: 45px;
    background: linear-gradient(180deg, #404040 0%, #1a1a1a 100%);
}

.content-tv-stand.tcl .content-tv-stand-foot.left {
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 40% 0);
}

.content-tv-stand.tcl .content-tv-stand-foot.right {
    clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
}

/* Hisense style - center pedestal */
.content-tv-stand.hisense .content-tv-stand-base {
    width: 180px;
    height: 18px;
    background: linear-gradient(180deg, #383838 0%, #181818 100%);
    border-radius: 0 0 8px 8px;
    margin-top: 8px;
}

/* Roku style - simple wide feet */
.content-tv-stand.roku {
    flex-direction: row;
    justify-content: center;
    gap: 240px;
}

.content-tv-stand.roku .content-tv-stand-foot {
    width: 50px;
    height: 30px;
    background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 100%);
    border-radius: 0 0 4px 4px;
}

/* Vizio style - boomerang base */
.content-tv-stand.vizio .content-tv-stand-base {
    width: 320px;
    height: 16px;
    background: linear-gradient(180deg, #353535 0%, #151515 100%);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    margin-top: 8px;
}

.content-info {
    padding: 20px 0;
}

.content-tag {
    display: inline-block;
    background: var(--gold-accent);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.content-info h3 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.content-info p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* About Section */
.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.about-content h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-lead {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.about-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
    line-height: 1.7;
}

.values-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value {
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gold-accent);
}

.value h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.value p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.support-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.support-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.support-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.support-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.support-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-support {
    display: inline-block;
    background: var(--gold-accent);
    color: var(--primary-dark);
    padding: 14px 32px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-support:hover {
    background: #e5c048;
    transform: translateY(-2px);
}

.btn-support.outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-support.outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 24px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input:focus {
    border-color: var(--primary-blue);
}

.newsletter-form button {
    background: var(--primary-blue);
    color: var(--white);
    padding: 14px 24px;
    border: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    color: var(--white);
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    fill: var(--gold-accent);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-blue);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: var(--primary-blue);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 80px 24px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.footer-social a:hover {
    background: var(--gold-accent);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

/* ==================== CREATOR CONTENT STYLES ==================== */

/* Opportunities Grid */
.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.opportunity-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.opportunity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.opportunity-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.opportunity-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.opportunity-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.opportunity-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Why Jewbilee Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-item {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-accent);
    opacity: 0.5;
    margin-bottom: 16px;
    line-height: 1;
}

.why-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.why-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Contact Section - Creator Styles */
.contact-info.dark-text {
    color: var(--text-primary);
}

.contact-info.dark-text h2 {
    color: var(--primary-dark);
}

.contact-info.dark-text > p {
    color: var(--text-secondary);
}

.contact-item.dark-text {
    color: var(--text-primary);
}

.contact-item.dark-text svg {
    fill: var(--primary-blue);
}

.contact-note {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 24px;
    font-style: italic;
}

/* RTL Support for Hebrew */
html[dir="rtl"] {
    direction: rtl;
}

/* Keep navbar in LTR so it doesn't flip when switching languages */
html[dir="rtl"] .nav-container {
    direction: ltr;
}

/* But allow nav link text to be RTL for proper Hebrew rendering */
html[dir="rtl"] .nav-links a {
    direction: rtl;
}

html[dir="rtl"] .content-item.reverse {
    direction: ltr;
}

html[dir="rtl"] .content-item.reverse > * {
    direction: rtl;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .platforms-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .content-item {
        gap: 40px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .opportunities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta,
    .view-toggle,
    .lang-slider {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 24px 60px;
    }
    
    .hero-logo {
        width: 150px;
    }
    
    .section {
        padding: 60px 24px;
    }
    
    .platforms-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .platform-item {
        padding: 24px 16px;
    }
    
    .content-item,
    .content-item.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
        direction: ltr;
    }
    
    .content-tv-mockup {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .content-tv-stand.sony,
    .content-tv-stand.tcl,
    .content-tv-stand.roku {
        gap: 120px;
    }
    
    .content-showcase {
        gap: 60px;
    }
    
    .values-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .opportunities-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .platforms-showcase {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Logo Flame Animation - Gradient sweep is handled via JavaScript */
/* No CSS animation needed - gradient fill is animated via requestAnimationFrame */

/* Inline SVG Logo Styles */
.nav-logo svg,
.hero-logo-svg,
.footer-logo svg {
    height: 36px;
    width: auto;
}

.hero-logo-svg {
    width: 200px;
    height: auto;
    margin-bottom: 32px;
}
