/*
Theme Name: OMG Theme
Theme URI: http://yourwebsite.com
Author: omg#wow
Author URI: http://yourwebsite.com
Description: Custom OMG Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: omg-theme
*/

 /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: #000;
            background-color: #fff;
        }

        /* OMG Color Variables */
:root {
    /* אדום -> פוקסיה */
    --omg-red: #FF00FF;        /* ורוד פוקסיה חזק */
    --omg-red-dark: #C71585;   /* מג'נטה כהה */

    /* שחור -> סגול עמוק */
    --omg-black: #2E0854;      /* סגול עמוק */
    --omg-gray: #3B0A45;       /* סגול כהה נוסף */
    --omg-light-gray: #E6E6FA; /* לבנדר בהיר לרקעים עדינים */
}

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
        }

        .OMG-headline {
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            font-size: 2.5rem;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        .OMG-nav-item {
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .OMG-nav-item:hover {
            color: var(--omg-red);
        }

        /* Header Styles */
        .header {
            background-color: var(--omg-black);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .top-bar {
            background-color: var(--omg-red);
            padding: 8px 16px;
        }

        .top-bar-content {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: white;
            font-weight: 500;
        }

        .main-header {
            max-width: 1280px;
            margin: 0 auto;
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            color: var(--omg-red);
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: -0.05em;
        }

        .nav-menu {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .search-btn, .menu-btn {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .search-btn:hover, .menu-btn:hover {
            color: var(--omg-red);
        }

        /* Trending Stories */
        .trending-section {
            background-color: var(--omg-black);
            padding: 32px 0;
        }

        .trending-grid {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
        }

        .trending-item {
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .trending-item:hover {
            transform: translateY(-4px);
        }

        .trending-image {
            width: 100%;
            height: 128px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 12px;
        }

        .trending-title {
            color: white;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .trending-item:hover .trending-title {
            color: var(--omg-red);
        }

        /* Article Header */
        .article-header {
            background-color: white;
            padding: 24px 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .article-header-content {
            max-width: 1024px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .article-breadcrumb {
            font-size: 14px;
            color: #6b7280;
            margin-bottom: 16px;
        }

        .article-title {
            margin-bottom: 24px;
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .article-badges {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .exclusive-badge {
            background-color: var(--omg-red);
            color: white;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .social-buttons {
            display: flex;
            gap: 8px;
        }

        .social-btn {
            padding: 6px 12px;
            border: none;
            border-radius: 4px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
        }

        .facebook-btn {
            background-color: #1877f2;
        }

        .twitter-btn {
            background-color: #000;
        }

        .reddit-btn {
            background-color: #ff4500;
        }

        .article-info {
            font-size: 14px;
            color: #6b7280;
        }

        /* Main Content */
        .main-content {
            max-width: 1024px;
            margin: 0 auto;
            padding: 32px 16px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 32px;
        }

        .article-content {
            background-color: white;
        }

        .article-image {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 32px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .image-caption {
            font-size: 14px;
            color: #6b7280;
            text-align: center;
            margin-top: 8px;
        }

        .article-text {
            font-size: 16px;
            line-height: 1.7;
        }

        .article-text p {
            margin-bottom: 20px;
        }

        .article-text p:first-child {
            font-size: 18px;
            font-weight: 500;
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-section {
            padding: 16px;
            border-radius: 8px;
        }

        .most-popular {
            background-color: var(--omg-black);
            color: white;
        }

        .related-stories {
            background-color: var(--omg-light-gray);
            color: black;
        }

        .sidebar-title {
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--omg-red);
        }

        .sidebar-item {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
        }

        .sidebar-item:last-child {
            margin-bottom: 0;
        }

        .sidebar-image {
            width: 80px;
            height: 64px;
            background-color: #4b5563;
            border-radius: 4px;
            flex-shrink: 0;
        }

        .sidebar-text {
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-link {
            display: block;
            color: black;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .related-link:hover {
            color: var(--omg-red);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
            }
            
            .main-content {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .OMG-headline {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .trending-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .OMG-headline {
                font-size: 1.75rem;
            }
            
            .logo {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .trending-grid {
                grid-template-columns: 1fr;
            }
            
            .main-header {
                padding: 12px;
            }
            
            .article-header-content,
            .main-content {
                padding: 16px;
            }
        }
        .sidebar-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.sidebar-image img {
    width: 80px;
    height: 64px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.sidebar-text a {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    color: white; /* או שחור, תלוי רקע */
}

.sidebar-text a:hover {
    color: var(--omg-red);
}
