:root {
  --primary-red: #a50024;
  --red-dark: #821930;
  --red-light: #c9284b;
  --white: #FFFFFF;
  --gray-light: #F5F5F7;
  --gray-dark: #333333;
  --gray-darker: #2c3e50;/*#1a1a1a*/
  --accent-blue: #0066CC;
  --accent-gold: #D4AF37;
  --success-green: #2E8B57;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-small: 6px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--gray-light);
  color: var(--gray-dark);
}

h2{
  font-family: "Playball", cursive;
  font-weight: 400;
  font-style: normal;
}

h3{
  font-family: "Playball", cursive;
  font-weight: 250;
  font-style: normal;
  font-size: 2rem;
}


a[href*="joompolitan.com"] {
 display: none !important;
}

.modal-content, .ph-si-feed, .pg-item-box-info {
  display: none;
}


/* Modern Navigation */
nav {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-light) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  gap: 40px;
  box-shadow: var(--shadow);
  position: relative;
  backdrop-filter: blur(10px);
}

nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d98899, transparent);
}

/* Modern Footer */
footer {
  background: linear-gradient(135deg, var(--gray-dark) 0%, #000 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 20px;
  gap: 40px;
  color: var(--white);
  margin-top: 40px;
}

/* Modern Menu Styles */
nav ul.mod-menu {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

/* Modern Menu Links */
nav ul.mod-menu li a {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 8px 16px;
  display: inline-block;
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

nav ul.mod-menu li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

nav ul.mod-menu li a:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

nav ul.mod-menu li a:hover::before {
  left: 100%;
}

nav ul.mod-menu li.current a,
nav ul.mod-menu li.active a {
  background: white;
  color: #a50024;
  font-weight: 700;
  transform: none;
}

.page-header {
  display: none;
}

/* Modern Logo */
nav a img {
  max-height: 50px;
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

nav a:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}


/* Responsive improvements */
@media (max-width: 1000px) {
  nav {
    flex-direction: column;
    gap: 20px;
    padding: 16px 20px;
  }
  
  nav ul.mod-menu {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  nav ul.mod-menu li a {
    font-size: 14px;
    padding: 6px 12px;
  }
}

/* Add some modern micro-interactions */
nav ul.mod-menu li a:active {
  transform: translateY(0);
  transition: transform 0.1s;
}

/* Modern focus states for accessibility */
nav ul.mod-menu li a:focus {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* Smooth scrolling for modern browsers */
html {
  scroll-behavior: smooth;
}

/* Add a subtle animation to the footer */
footer {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pg-item-box {
  border: 0px;
}

.pg-msnr-container > :first-child {
  display: none;
}

.pagination {
  display: none;
}

.pg-categories-items-box {
  justify-content: center;
}

.pg-category-box-image 
{
  border: 0px;
}

.ph-si-category {
  display:none;
}
.delete-cookie-btn {
  background: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: inline-block;
}

.delete-cookie-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.delete-cookie-btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow);
}

.delete-cookie-btn:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Social Media Sidebar Styles */
.social-sidebar {
  backdrop-filter: blur(50px);
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px 0 0 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    transition: all 0.3s ease;
    transform: translateX(0); /* visible by default */
}

.social-sidebar:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
}

.social-sidebar.hidden {
  transform: translateX(100%); /* slide out */
}

.social-logo {
    display: block;
    margin: 10px 0;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.social-logo:hover {
    transform: scale(1.1);
}

.social-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .social-sidebar {
        padding: 5px 3px;
    }
    
    .social-logo {
        width: 35px;
        height: 35px;
        margin: 8px 0;
    }
}

.category-box-image {
	border: none;
}

.pg-category-box {
	border: 0px;
}

.pg-category-box-title {
	padding: 0.2em 0.5em 0.2em 0.5em;
}

/* --- Hamburger button --- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

.logo-mobile {
  display: none;
}
  .logo-desktop {
  display: block;
}

/* --- Mobile only --- */
@media (max-width: 1000px) {
.logo-mobile {
  display: block;
}
  .logo-desktop {
  display: none;
}
  .nav-toggle {
    display: block;
    margin-bottom: 10px;
  }

  /* hide menus by default */
  nav ul.mod-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  /* show menus when hamburger is open */
  nav.open ul.mod-menu {
    display: flex;
  }
}
