html, body {
    overflow: hidden;
    height: 100%;
}

/* General Body Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #4a5568;
    background-color: #f7fafc;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.english {
    direction: ltr;
    text-align: left;
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;600;700&family=Heebo:wght@300;400;500;700&display=swap');

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    padding: 40px 0;
    text-align: center;
    min-height: 100vh;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    direction: ltr !important;
}
.language-switcher #enBtn {
    order: 1;
}
.language-switcher #heBtn {
    order: 2;
}
.lang-btn {
    background: none;
    border: 1px solid #cbd5e0;
    padding: 8px 16px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 20px;
    font-weight: 500;
    color: #4a5568;
    transition: all 0.3s ease;
}
.lang-btn.active, .lang-btn:hover {
    background-color: #b79460;
    color: #ffffff;
    border-color: #b79460;
}

/* Logo Section */
.logo-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    min-height: 100px;
}
.logo {
    position: absolute;
    right: calc(50% - 250px); /* Position logo to the right of centered title in Hebrew */
    top: 50%;
    transform: translateY(-50%);
}
.english .logo {
    right: auto;
    left: calc(50% + 200px); /* Position logo to the right of centered title in English */
}
.brand-info {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Center the title with logo on the right for Hebrew */
body:not(.english) .logo-section {
    flex-direction: row;
}

/* Center the title with logo on the left for English */
body.english .logo-section {
    flex-direction: row-reverse;
}

.logo img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.brand-info h1 {
    font-family: 'Heebo', sans-serif;
    font-size: 2.5rem;
    color: #1a365d;
    margin: 0;
    font-weight: 700;
    white-space: nowrap;
}

.english .brand-info h1 {
    font-family: 'Playfair Display', serif;
}
.brand-info h2 {
    font-family: 'Assistant', sans-serif;
    font-size: 1.1rem;
    color: #718096;
    margin: 0;
    font-weight: 400;
}
.english .brand-info h2 {
    font-family: 'Inter', sans-serif;
}

/* Messages */
.success-message {
    font-family: 'Heebo', sans-serif;
    font-size: 1.5rem;
    color: #b79460;
    font-weight: 600;
    margin-bottom: 20px;
}
.english .success-message {
    font-family: 'Playfair Display', serif;
}
.message {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 1.05rem;
    color: #2d3748;
}

/* Main Content Layout */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 35px;
}

/* Section Titles */
.section-title {
    font-family: 'Heebo', sans-serif;
    font-size: 1.4rem;
    color: #1a365d;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}
.english .section-title {
    font-family: 'Playfair Display', serif;
}
body:not(.english) .section-title {
    text-align: right;
}
body.english .section-title {
    text-align: left;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #b79460;
}
body:not(.english) .section-title::after {
    right: 0;
}
body.english .section-title::after {
    left: 0;
}

/* Platform & Social Grids */
.platforms-grid, .social-grid, .playlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

/* Platform & Playlist Buttons */
.platform-btn, .playlist-btn, .social-btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.platform-btn:hover, .playlist-btn:hover, .social-btn-large:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.platform-btn .icon, .playlist-btn .icon, .social-btn-large .icon {
    font-size: 1.125rem;
}

/* Individual Icon Colors */
.spotify .icon { color: #1DB954; }
.apple .icon { color: #000000; }
.youtube .icon { color: #FF0000; }
.facebook .icon { color: #1877F2; }
.instagram .icon { color: #E4405F; }
.twitter .icon { color: #1DA1F2; }
.tiktok .icon { color: #000000; }
.telegram .icon { color: #0088CC; }

/* Share Pe4ch Section */
.share-pe4ch-section {
    margin-bottom: 30px;
    background: rgba(183, 148, 96, 0.08);
    border-radius: 10px;
    padding: 18px 24px;
    text-align: center;
}
.share-pe4ch-section h3 {
    color: #1a365d;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.share-pe4ch-section p {
    margin: 0 0 15px;
    color: #2d3748;
    font-size: 0.98rem;
}
.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2d9c3;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.share-btn i {
    font-size: 1.1rem;
    color: #1a365d;
    transition: all 0.3s ease;
}
.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-color: #b79460;
}
.share-btn.telegram:hover i { color: #0088cc; }
.share-btn.whatsapp:hover i { color: #25d366; }
.share-btn.facebook:hover i { color: #1877f2; }
.share-btn.linkedin:hover i { color: #0077b5; }
.share-btn.twitter:hover i { color: #1da1f2; }
.share-btn.instagram:hover i { color: #e4405f; }
.share-btn.email:hover i { color: #dc3545; }

/* Bottom Section */
.bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

/* Contact Section */
.contact-section {
    text-align: center;
    background: transparent;
    padding: 20px 0;
}
.contact-title {
    font-family: 'Heebo', sans-serif;
    font-size: 1.2rem;
    color: #1a365d;
    font-weight: 600;
    margin-bottom: 15px;
}
.english .contact-title {
    font-family: 'Playfair Display', serif;
}
.contact-items {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.contact-item:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.contact-item .icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
}
.whatsapp-icon { background: #25d366; }
.email-icon { background: #dc3545; }

/* Watch Section */
.watch-section {
    text-align: center;
}
.watch-section h4 {
    font-family: 'Heebo', sans-serif;
    color: #1a365d;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.english .watch-section h4 {
    font-family: 'Playfair Display', serif;
}
.watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}
.watch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.4);
}
.watch-btn .icon {
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .bottom-section {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 25px 0;
    }
    .logo-section {
        flex-direction: column;
        min-height: unset;
    }
    .logo {
        position: static;
        transform: none;
        order: -1; /* Logo appears above title on mobile */
        margin-bottom: 10px;
        left: unset !important;
        right: unset !important;
    }
    
    /* Override RTL/LTR flex direction on mobile for consistent layout */
    body:not(.english) .logo-section,
    body.english .logo-section {
        flex-direction: column;
    }
    
    .brand-info h1 {
        font-size: 2rem;
    }
    .success-message {
        font-size: 1.3rem;
    }
    .platforms-grid, .social-grid, .playlists-grid {
        grid-template-columns: 1fr;
    }
    .contact-items {
        flex-direction: column;
        align-items: stretch;
    }
    .share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0 10px;
    }
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    .brand-info h1 {
        font-size: 1.8rem;
    }
    .success-message {
        font-size: 1.15rem;
    }
    .message {
        font-size: 0.95rem;
    }
    .section-title {
        font-size: 1.25rem;
    }
    .platform-btn, .playlist-btn, .social-btn-large, .contact-item {
        padding: 12px 15px;
        font-size: 0.8rem;
    }
    .share-pe4ch-section {
        padding: 15px;
    }
    .share-pe4ch-section h3 {
        font-size: 1.1rem;
    }
} 