.rtrs-review-wrap {
    display: none !important;
}

.elementor-widget-site-title {
    display: none !important;
}
.site-branding,
.logo,
.header-logo {
    display: none !important;
}

.site-header {
    position: absolute;   
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;        
    background: transparent !important;
}

body.home .hero-image {
    background-image: url('https://wonkytimes.com/wp-content/uploads/2025/10/wonky-times-home.png');
    background-size: cover;
    background-position: center;
    height: 100vh;  
    width: 100%;
}
body.home .header-area,
body.home .site-header,
body.home .rt-sticky,
body.home .rt-sticky-menu {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: transparent !important;
  box-shadow: none !important;
  z-index: 9999;
}

/* Keep menu text visible over the image */
body.home .site-header .main-navigation nav ul li > a,
body.home .rt-topbar-menu .menu li a,
body.home .mean-container a.meanmenu-reveal {
  color: #030303 !important;   /* change to #000 if your hero is light */
}

/* Optional: hover color for contrast */
body.home .site-header .main-navigation nav ul li > a:hover {
  color: #ff00f2 !important;
}

/* If the header adds a solid bg when it becomes sticky on scroll, keep it transparent */
body.home.header-style-1 .site-header .rt-sticky-menu,
body.home.header-style-3 .site-header .rt-sticky-menu,
body.home.header-style-4 .site-header .rt-sticky-menu,
body.home .header-style-9 .rt-sticky {
  background: transparent !important;
  box-shadow: none !important;
}

body.home .hero-image {
    background-image: url('https://wonkytimes.com/wp-content/uploads/2025/10/wonky-times-home.png');
    background-size: cover;      /* Ensures it stretches across screen */
    background-position: center; /* Keeps it centered on any screen */
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;               /* 100% of the visible screen height */
}

/* Optional: make sure body/html don’t restrict it */
html, body {
    margin: 0;
    padding: 0;
}

body.home .header-area,
body.home .site-header,
body.home .rt-sticky,
body.home .rt-sticky-menu {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: transparent !important;
  box-shadow: none !important;
  z-index: 9999;
}

/* ALL OTHER PAGES: return header to normal flow */
body:not(.home) .header-area,
body:not(.home) .site-header,
body:not(.home) .rt-sticky,
body:not(.home) .rt-sticky-menu {
  position: relative !important;
  background: #fff !important;  
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  z-index: 10;
}

body.home .hero-image {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}


body.home .hero-image .elementor-container,
body.home .hero-image .container {
  max-width: none !important;
  width: 100% !important;
}


body.home .hero-image img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
}

/* Make Category Circles Bigger with a Shadow */
.woocommerce ul.products li.product-category a img {
    border-radius: 50% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    width: 350px !important; 
    height: 350px !important;
    margin: 0 auto !important;
    display: block !important;
    
    /* The Shadow: Horizontal Offset, Vertical Offset, Blur, Spread, Color */
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3) !important;
    
    /* Smooth transition for when we hover */
    transition: all 0.3s ease-in-out !important;
}

/* Optional: Make the shadow deeper when you hover over it */
.woocommerce ul.products li.product-category a img:hover {
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.4) !important;
    transform: translateY(-5px); /* Makes it look like it's lifting up */
}
/* Make Category Titles (Wonky Art / Merch) Bigger */
.woocommerce ul.products li.product-category .woocommerce-loop-category__title {
    font-size: 1.8em !important; /* Adjust this to go even bigger if you want */
    text-transform: uppercase;
    font-weight: 800 !important;
    letter-spacing: 2px;
    margin-top: 20px !important;
    line-height: 1.2;
    display: block;
    text-align: center;
}

/* Adjusting the count (the number in brackets) if you want it smaller than the title */
.woocommerce ul.products li.product-category .woocommerce-loop-category__title .count {
    font-size: 0.6em;
    vertical-align: middle;
    opacity: 0.7;
}
/* Force Shopping Cart to show on desktop for Neeon Theme */
@media (min-width: 992px) {
    .header-middlebar .header-cart, 
    .header-middlebar .cart-icon, 
    .header-middlebar .shop-cart {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
/* Force desktop cart visibility for Neeon theme */
@media (min-width: 992px) {
    .header-middlebar .header-cart, 
    .header-middlebar .cart-icon,
    .header-cart-wrapper,
    .rt-cart-icon {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: auto !important;
        height: auto !important;
        pointer-events: auto !important;
    }
}
/* Force all images in posts to display normally */
.entry-content img, 
.post-content img,
.single-post img {
    filter: invert(0%) !important;
    -webkit-filter: invert(0%) !important;
}

/* 1. The Wrapper: Hidden by default, full-screen overlay */
#ufo-loader {
    display: none; /* JavaScript will change this to 'flex' when clicked */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999999; /* Ensure it sits on top of everything */
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

/* 2. The UFO Container */
.ufo-container {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    color: #000;
    letter-spacing: 2px;
}

/* 3. The Bouncing UFO */
.ufo {
    font-size: 60px;
    animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* 4. Text Stylings */
.ufo-container p {
    margin-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}
/* PORTFOLIO GRID */
.wt-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1260px;
  margin: 40px auto;
  padding: 0 20px;
}

/* BASE CARD STYLES */
.wt-portfolio-card {
  position: relative;
  display: block;
  width: 100%;
  height: 380px; /* Adjust height to your liking */
  border-radius: 22px; /* Perfect contour match */
  overflow: hidden;
  text-decoration: none;
  border: none;
  background: #111;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Background Zoom Effect */
.wt-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

/* Dynamic Hover States */
.wt-portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(239, 67, 255, 0.25); /* Neon pink shadow */
}

.wt-portfolio-card:hover .wt-card-bg {
  transform: scale(1.05);
}

/* Overlay & Typography */
.wt-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.wt-card-title {
  color: #fff;
  font-family: inherit; /* Inherits your Wonky Times font */
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 15px;
  letter-spacing: 0.05em;
  text-align: center;
}

/* Interactive Play Icon */
.wt-play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #ef43ff; /* Neon Pink */
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(239, 67, 255, 0.4);
  transform: scale(0.9);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.wt-portfolio-card:hover .wt-play-icon {
  transform: scale(1);
  background: #5cab1b; /* Swaps to neon green on hover! */
  box-shadow: 0 4px 15px rgba(92, 171, 27, 0.5);
}

/* --- LIGHTWEIGHT POPUP MODAL STYLES --- */
.wt-video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.wt-video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.wt-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.wt-modal-container {
  position: relative;
  width: 90%;
  max-width: 960px;
  background: #000;
  border-radius: 22px; /* Matching rounded corners */
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  z-index: 10;
}

.wt-video-modal.is-open .wt-modal-container {
  transform: scale(1);
}

.wt-modal-video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 widescreen ratio */
  height: 0;
}

.wt-modal-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.wt-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  z-index: 12;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s, transform 0.15s;
}

.wt-modal-close:hover {
  background: #ef43ff;
  transform: scale(1.05);
}

/* RESPONSIVE LAYOUT (MOBILE) */
@media (max-width: 900px) {
  .wt-portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .wt-portfolio-card {
    height: 280px;
  }
}

@media (max-width: 959px) {
    header, .site-header, .mobile-header {
        display: none !important;
    }
}