/*
Theme Name: Blank Tailwind
Theme URI: https://nubienecreations.com
Author: Nubiene Creations
Description: Minimal blank theme for custom HTML and Tailwind builds.
Version: 1.0
Text Domain: blank-tailwind
*/

html { scroll-behavior: smooth; }

body {
  background-image: url("https://www.nubienecreations.com/wp-content/uploads/2026/02/BACKGROUND-MARBLE-BEIGE-scaled.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(243,232,214,0.85);
  z-index: -1;
}

/* WordPress content spacing */
.entry-content { width: 100%; }
.entry-content > * { max-width: 100%; }

/* Menu dropdown support for nested items */
.nc-nav .menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 2rem; align-items: center; }
.nc-nav .menu > li { position: relative; }
.nc-nav .menu a { text-decoration: none; }
.nc-nav .menu .sub-menu { 
  list-style: none; 
  margin: 0; 
  padding: 0.5rem 0; 
  position: absolute; 
  left: 0; 
  top: 100%; 
  min-width: 14rem; 
  opacity: 0; 
  visibility: hidden; 
  transform: translateY(6px); 
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease; 
  z-index: 9999;
}
.nc-nav .menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}