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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fb;
    color: #222;
    line-height: 1.4;
}

/* ---------------------------------------------------------
   HEADER & NAVIGATION (MOBILE-FIRST)
--------------------------------------------------------- */
.site-header {
    background: #f3f3f3;
    padding: 15px 20px;
    border-bottom: 1px solid #e1e1e1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-area {
    flex: 1;
    text-align: center;
}

.logo-area a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-main {
    font-size: 27px;
    font-weight: 800;
    color: #111;
}

.logo-sub {
    font-size: 13px;
    color: #666;
    margin-top: 3px;
}

/* HAMBURGER MENU */
.hamburger {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1101;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: #111;
    border-radius: 3px;
    transition: .3s;
}

#menu-toggle { display: none; }

/* Hamburger animation */
#menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
#menu-toggle:checked + .hamburger span:nth-child(2) { opacity: 0; }
#menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* SIDE MENU */
.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    padding: 80px 20px 40px;
    transition: .35s;
    overflow-y: auto;
    z-index: 1050;
}

#menu-toggle:checked ~ .side-menu { left: 0; }

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
    margin-bottom: 30px;
}

.menu-column h3 {
    font-size: 15px;
    font-weight: 700;
    border-bottom: 2px solid #111;
    padding-bottom: 4px;
    margin-bottom: 12px;
}

.menu-column a {
    display: block;
    padding: 5px;
    font-size: 15px;
    color: #111;
    border-radius: 4px;
    transition: .2s;
}

.menu-column a:hover {
    background: #0073aa;
    color: #fff;
}

/* Social inside side-menu */
.side-social {
    margin-top: 15px;
}

.side-social p {
    font-weight: 600;
    margin-bottom: 10px;
}

.social-row {
    display: flex;
    justify-content: space-between;
}

.social-row a {
    font-size: 15px;
    color: #0073aa;
    font-weight: 600;
}

/* Overlay for mobile menu */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    display: none;
    z-index: 1040;
}

#menu-toggle:checked ~ .overlay { display: block; }

/* Logo inside side-menu */
.side-menu-logo {
    text-align: center;
    margin-bottom: 25px;
}

.side-menu-logo img {
    width: 220px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
}

.menu-logo-sub {
    font-size: 12px;
    color: #666;
}

/* ---------------------------------------------------------
   MODERN NAVIGATION (DESKTOP)
--------------------------------------------------------- */
.nav-modern {
    width: 100%;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-weight: 700;
    border-bottom: 1px solid #000;
    padding: 12px 0;
}

.nav-modern ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 34px; /* desktop gap */
}

.nav-modern a {
    padding: 10px 12px;
    border-radius: 6px;
    background: ghostwhite;
    color: #333;
    transition: 0.25s ease;
}

.nav-modern a:hover { background: #ededed; }
.nav-modern a::after { display: none; }

/* ---------------------------------------------------------
   MOBILE ADJUSTMENTS FOR NAV
--------------------------------------------------------- */
@media (max-width: 768px) {
    .nav-modern ul {
        flex-wrap: wrap;       /* allows nav items to go to next line */
        gap: 2px;             /* smaller gap for mobile */
        justify-content: center;
        padding: 0 12px;       /* add some horizontal spacing */
    }

    .nav-modern a {
        font-size: 14px;
        padding: 8px 10px;     /* smaller padding for mobile */
        font-weight: 500;
    }
}


/* ---------------------------------------------------------
   SEARCH BAR
--------------------------------------------------------- */
.search-section {
    width: 100%;
    background: #f9f9f9;
    padding: 15px 0;
    display: flex;
    justify-content: center;
}

.search-form {
    width: 92%;
    max-width: 480px;
    display: flex;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    font-size: 15px;
    border: none;
    outline: none;
    background: transparent;
}

.search-form button {
    padding: 12px 18px;
    background: #111;
    color: #fff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.search-form button:hover { background: #ff4500; }

/* ---------------------------------------------------------
   SOCIAL HANDLES BAR
--------------------------------------------------------- */
.led {
  font-size: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
  color: #555;
}

.social-bar {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 6px 0;
    background: whitesmoke;
}

.social-bar .social-text {
    font-size: 14px;
    color: #777;
    margin-right: 6px;
}

.social-bar .social-link {
    font-size: 14px;
    margin: 0 5px;
    color: #888;
    font-weight: 600;
    transition: 0.3s ease;
}

.social-link.telegram:hover { color: #0088cc; }
.social-link.facebook:hover { color: #1877f2; }
.social-link.instagram:hover { color: #d62976; }
.social-link.twitter:hover  { color: #1da1f2; }

/* ---------------------------------------------------------
   SECTION TITLES
--------------------------------------------------------- */
.section-title-wrapper {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 15px;
    border-left: 5px solid #ff014f;
    background: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    border-radius: 6px;
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: #111;
    letter-spacing: 0.5px;
}

/* ---------------------------------------------------------
   V-CARD / LIST STYLING
--------------------------------------------------------- */
.latest-updates-list {
    width: 100%;
    max-width: 750px;
    background: white;
    margin: 0 auto;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.vcard-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.vcard-item:last-child { border-bottom: none; }

.vcard-thumb img {
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
}

.vcard-content {
    flex: 1;
}

.vcard-title {
    font-size: 18px;
    font-weight: 700;
    color: #40251A;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.vcard-title:hover { opacity: 0.8; }

.vcard-meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: #7a7a7a;
}

.v-meta i { margin-right: 5px; }

/* ---------------------------------------------------------
   MEDIA QUERIES (MOBILE ADJUSTMENTS)
--------------------------------------------------------- */
@media (max-width: 768px) {

    /* Header Logo */
    .logo-main { font-size: 22px; font-weight: 700; }
    .logo-sub { font-size: 11px; font-weight: 500; }

    /* Section titles */
    .section-title { font-size: 18px; font-weight: 600; letter-spacing: 0.3px; }

    /* V-Card titles */
    .vcard-title, .card-title { font-size: 15px; font-weight: 500; line-height: 1.35; }

    /* List news titles */
    .list-info h3 { font-size: 14px; font-weight: 500; line-height: 1.3; }

    /* Navigation items */
    .nav-modern a { font-size: 14px; font-weight: 500; }
}














































































