/************************************************************************************
RESET
*************************************************************************************/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
article, aside, details, figcaption, figure,
footer, header, main, nav, section {
    display: block;
}

/************************************************************************************
HEADER
*************************************************************************************/
#pagewrap { 
    max-width: 1800px; 
    margin: 0 auto; 
    padding: 0 1rem; 
}

#contentHeader {
    position: relative;
    width: 100%;
    aspect-ratio: 36/7;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    overflow: hidden;
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

#site-logo,
#site-description,
.desktop-nav,
.nav-toggle {
    position: relative;
    z-index: 3;
}
.desktop-g-nav,
.nav-toggle {
    position: relative;
    z-index: 3;
}

#site-logo {
    position: absolute;
    top: 0.3%;
    left: 0.5%;
    font-size: 2vw;
    font-weight: bold;
    color: #fff;
}

#site-description {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.6vw;
    font-style: italic;
    font-family: "Times New Roman", Times, serif;
    color: #f2d721;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.7);
}


#site-turbosquid {
    position: absolute;
    bottom: 2%;   /* adjust placement relative to banner height */
    right: 1%;    /* adjust placement relative to banner width */
    z-index: 1000;
}

#site-turbosquid img {
    width: 4vw;     /* scales with viewport width */
    max-width: 40px; /* don’t let it get too big */
    min-width: 20px;  /* don’t let it get too small */
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

#site-turbosquid img:hover {
    opacity: 0.8; /* hover effect */
}

/* Hide on small screens */
@media (max-width: 600px) {
    #site-turbosquid {
        display: none;
    }
}




/************************************************************************************
MAIN CONTENT
*************************************************************************************/
#content { 
    background: #fff; 
    width: 100%; 
    margin: 5px 0 0 0; 
    padding: 10px 20px; 
    border-radius: 8px; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.4); 
}

#content > *:last-child {
  margin-bottom: 0 !important;
}
.post-title { 
    font-size: 24px; 
    margin-bottom: 1px; 
}
.post-meta { 
    font-size: 90%; 
    margin-bottom: 10px; 
}

/* Default left alignment for all <p> tags */
p {
    text-align: left;
    margin-bottom: 1.0em; /* Consistent spacing below paragraphs */
	margin-top: 1.0em; /* Consistent spacing below paragraphs */
}

/* New class for centered <p> tags 
p.text-center {
    text-align: center;
}
p.text-center.text-italic {
    text-align: center;
    font-size: 0.85rem;
    font-style: italic;
}*/
/* Generic class that works on ANY tag (p, h1, h2, div, etc.) */
.text-center {
    text-align: center;
    width: 100%;
    display: block; /* Ensures it takes up the full width to allow centering */
}

/* Specific styling for italicized centered text */
.text-center.text-italic {
    text-align: center;
    /* This stays readable on all screens */
    font-size: clamp(0.85rem, 2vw, 1rem); 
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 20px;
}


/* Hide mobile-only text by default */
p.mobile-only-text {
    display: none; /* Hidden on all screens by default */
    text-align: center; /* Optional: center-align for consistency */
    font-size: 0.85rem; /* Matches p.text-center for mobile */
    color: #5e5d5d; /* Matches default <p> color */
}

/* Hide mobile-only text by default */
p.mobile-white-text {
    display: none; /* Hidden on all screens by default */
    text-align: center; /* Optional: center-align for consistency */
    font-size: 0.85rem; /* Matches p.text-center for mobile */
    color: #dbdbdb; /* Matches default <p> color */
}


:root {
    --primary-color: #026acb;
    --accent-color: #f2d721;
    --background-dark: #1c1c1c;
    --font-main: Arial, Helvetica, sans-serif;
    --font-heading: "Century Gothic", Arial, sans-serif;
}

#sidebar { display: block; margin: 5px 5px; } /* controls the outter edges of the block */


/************************************************************************************
Widget Container
*************************************************************************************/
.widget-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;                 /* space between widgets */
  justify-content: center;   /* center widgets in the container */
  margin: 0 auto;
  max-width: 2000px;         /* optional: sets the max total width */
  padding: 5px;
}

.widget-link {
    display: block;      /* Makes the link fill the widget area */
    text-decoration: none; /* Removes underlines from the text */
    color: inherit;      /* Keeps your original text colors */
    height: 100%;
}

.widget-link:hover {
    cursor: pointer;
    /* Optional: add a slight effect on hover, like: */
    /* opacity: 0.9; */
}

/************************************************************************************
Widget
*************************************************************************************/
.widget {
  background: #0058a3;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  color: #fff;
  box-sizing: border-box;


  /* Default: 3 across */
  flex: 1 1 32%;    
  max-width: 32%;
}

.widget-image {
  position: relative;  /* anchor nav inside this */
  display: inline-block;
}

.widget-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/************************************************************************************
Responsive Breakpoints
*************************************************************************************/

/* Medium screens: 2 per row, filling full width */
@media (max-width: 1100px) {
  .widget {
    flex: 1 1 calc(50% - 20px); /* half width minus gap */
    max-width: calc(50% - 20px);
  }
}

/* Small screens: 1 per row */
@media (max-width: 600px) {
  .widget {
    flex: 1 1 100%;
    max-width: 100%;
  }
}




/************************************************************************************
Portfolio Widget Container
*************************************************************************************/
.portfolio-widget-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;               /* space between widgets */
  justify-content: center; /* center them in the row */
  margin: 0 auto;
  max-width: 2000px;
  padding: 5px;
}

/************************************************************************************
Portfolio Widget
*************************************************************************************/
.portfolio-widget {
  background: #0058a3;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  color: #fff;
  box-sizing: border-box;

  /* Default: max 2 per row */
  flex: 1 1 45%;      /* allows two per row */
  max-width: 45%;
}

/* Small screens: 1 per row */
@media (max-width: 600px) {
  .portfolio-widget {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


	
	
	


/************************************************************************************
Image in Widget (responsive)
*************************************************************************************/
.widget .post-imageLeft {
  float: left;
  margin: 0 10px 10px 0;
  position: relative; /* anchor for nav */
}

.widget .post-imageLeft img {
  display: block;
  width: auto;
  max-width: 100%;   /* never exceed natural width */
  height: auto;
  border-radius: 6px;
}

/* Make centered figure act as positioning context */
.widget .post-imageCenter {
  position: relative;   /* same as .post-imageLeft */
  margin: 0 auto;       /* center horizontally */
  text-align: center;   /* keep content centered */
  display: block;
}

.widget .post-imageCenter img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Make centered figure act as positioning context */
.portfolio-widget .post-imageCenter {
  position: relative;   /* same as .post-imageLeft */
  margin: 0 auto;       /* center horizontally */
  text-align: center;   /* keep content centered */
  display: block;
}

.portfolio-widget .post-imageCenter img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}


/************************************************************************************
Text wrapping fix
*************************************************************************************/
.widget p {
  margin: 0;
}


.portfolio-widget p {
  margin: 0;
}
/************************************************************************************
Responsive Tweaks for Float
*************************************************************************************/
/* On narrow screens, drop float so text flows below */
@media (max-width: 500px) {
  .widget .post-imageLeft {
    float: none;
    margin: 0 auto 10px auto;
    display: block;
    text-align: center;
  }

  .widget p {
    clear: both;  /* ensures text always sits below image */
  }
}

/************************************************************************************
FINAL FIXED WIDGET LABELS
*************************************************************************************/
/* Ensure the widget acts as the anchor for the label */
.widget, .portfolio-widget {
  position: relative !important; 
  overflow: hidden;
}

/* The black gradient bar */
.widget .desktop-g-nav, 
.portfolio-widget .desktop-g-nav {
  position: absolute !important;
  bottom: 5px !important; /* Forces it to stay at the bottom of the image */
  left: 0;
  width: 100%;
  display: flex !important;
  justify-content: flex-end;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 50%,
    rgba(0,0,0,1) 100%
  ) !important;
  pointer-events: none;
  z-index: 5;
}

.widget .desktop-g-nav ul,
.portfolio-widget .desktop-g-nav ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* The Label Text - This targets BOTH the new HTML and the old HTML */
.widget .desktop-g-nav li,
.widget .desktop-g-nav li a,
.portfolio-widget .desktop-g-nav li,
.portfolio-widget .desktop-g-nav li a {
  display: inline-block !important;
  padding: 0.15em 0.72em !important;
  font-size: 0.9vw !important; 
  color: #b6b6b6 !important;
  font-family: "Century Gothic", AppleGothic, sans-serif !important;
  letter-spacing: 1.2px !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

/* HOVER: Turns text gold when the cursor is ANYWHERE in the widget */
.widget:hover .desktop-g-nav li,
.widget:hover .desktop-g-nav li a,
.portfolio-widget:hover .desktop-g-nav li,
.portfolio-widget:hover .desktop-g-nav li a,
.widget-link:hover .desktop-g-nav li {
  color: #dca844 !important;
}

/************************************************************************************
Responsive Tweaks
*************************************************************************************/
@media (max-width: 1200px) {
  .widget .desktop-g-nav li a {
    font-size: 1.5vw;
  }
}

@media (max-width: 768px) {
  .widget {
    flex: 1 1 100%;
    max-width: 100%;
  }

   .widget .desktop-g-nav {
    display: none; /*hide nav on very small screens */
  }
}

/************************************************************************************
Desktop Navigation over Image portfolio-widget
*************************************************************************************/
.portfolio-widget .desktop-g-nav {
  position: absolute;
  bottom: 1%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;

  /* gradient spans entire width of image */
  background: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 50%,
    rgba(0,0,0,1) 100%
  );
}

.portfolio-widget .desktop-g-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* TARGET THE LI DIRECTLY for Portfolio */
.portfolio-widget .desktop-g-nav li {
  display: inline-block;
  padding: 0.15em 0.72em;
  font-size: 1.0vw;
  color: #b6b6b6;
  font-family: "Century Gothic", AppleGothic, sans-serif;
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* This ensures the hover works for BOTH standard and portfolio widgets */
.widget-link:hover .desktop-g-nav li,
.portfolio-widget:hover .desktop-g-nav li {
  color: #dca844;
}

/************************************************************************************
Responsive Tweaks
*************************************************************************************/
@media (max-width: 1200px) {
  .widget .desktop-g-nav li, 
  .portfolio-widget .desktop-g-nav li {
    font-size: 1.5vw;
  }
}

@media (max-width: 768px) {
  .portfolio-widget {
    flex: 1 1 100%;
    max-width: 100%;
  }

   .portfolio-widget .desktop-g-nav {
    display: none; /*hide nav on very small screens */
  }
}




/************************************************************************************
BODY
*************************************************************************************/
body {
    background: #1c1c1c;
    color: #666;
    line-height: 1.3;
}

a {
    color: #026acb;
    text-decoration: none;
}
a:hover { 
    color: #8c895c;
    text-decoration: none; 
}

/* Responsive heading scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading, 'Roboto', Arial, Helvetica, sans-serif);
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 0.1em;
}

/* Sizes scale with screen width */
h1 { 
    font-size: clamp(2rem, 4vw + 1rem, 1rem); 
    color: #8c895c; /* gold only for h1 */
}
h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem); color: #000; }
h3 { font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem); color: #000; }
h4 { font-size: clamp(1.25rem, 2vw + 0.25rem, 1.5rem); color: #000; }
h5 { font-size: clamp(1.1rem, 1.5vw + 0.25rem, 1.25rem); color: #000; }
h6 { font-size: clamp(1rem, 1vw + 0.2rem, 1.1rem); color: #666; }



.goldHead {
    font-family: Haettenschweiler, Tahoma;
    color: #8c895c !important;
}

.blueHead {
    font-family: Haettenschweiler, Tahoma;
    color: #0058a3;
    font-size: 20px;
    line-height: 1.2;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: normal;
    display: inherit;
    font-style: normal;
}

/* Base gray text */
.gray,
.widget p.gray {
  font-family: 'Roboto', Tahoma, sans-serif;
  color: #c8c8c8;
  font-size: clamp(14px, 2vw, 20px); /* scales with screen, min 14px, max 22px */
  line-height: 1.2;
  font-weight: normal;
  font-style: normal;
  margin: 0; /* reset default */
}

p.gray.intro-text {
	font-size: 1.0rem;
    margin-bottom: 1em; /* adjust space between paragraphs */
}


/* Yellow links inside .intro-text paragraphs */
.gray.intro-text a {
    color: #f2d721;       /* bright yellow */
    text-decoration: none; /* remove underline if desired */
    transition: color 0.3s ease;
}

.gray.intro-text a:hover {
    color: #fbdc08;       /* lighter yellow on hover */
    text-decoration: underline; /* optional */
}


p.gray.intro-text.text-italic {

    font-style: italic;
}

/************************************************************************************
FOOTER
*************************************************************************************/
#footer { 
    clear: both; 
    padding: 2px 0; 
    color: #ccc; 
    text-align: center; 
    font-size: 85%; 
	margin-top: 0;   /* ensures footer itself adds no space */
  	/*padding-top: 10px;  optional small controlled spacing */
}
#footer a { 
    color: #fff; 
}
#footer a:hover { 
    color: #beb750;
    text-decoration: none; 
}

#footer p {
  text-align: center;
}
#footer * {
  margin-left: auto;
  margin-right: auto;
}

/************************************************************************************
IMAGES
*************************************************************************************/
img {
    max-width: 100%;
    height: auto;
}

.post-imageLeft img {
    float: left;
    margin: 5px 2px;
    max-width: 40%;
    height: auto;
}

.post-imageCenter img {
    display: block;
    margin: 0 auto;
}

.post-imageRight img {
    float: right;
    margin: 5px 2px;
    max-width: 60%;
    height: auto;
}

/************************************************************************************
ART GALLERY (art.html)
*************************************************************************************/
.art-gallery-wrapper {
    overflow-x: auto;
    padding-bottom: 12px;
}

.art-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0 0 0;
	margin-bottom: 0 !important;
}

.art-item {
    text-align: center;
}

.art-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.art-item img:hover {
    transform: scale(1.05);
}

.art-caption {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #8e8e8e;
}

.art-caption a.art-buy {
    display: block;
    margin-top: 2px;
    color: #0263c3;
    text-decoration: none;
}

.art-caption a.art-buy:hover {
    text-decoration: underline;
}

.art-caption-Inline {
    margin-top: 0.5rem;
    font-size: 1.25rem;
    color: #666;
    
    font-family: 'Roboto', Times, serif;
    line-height: 1.1;
    text-align: center;
}

.art-caption-Inline a.art-buy {
    margin-top: 2px;
    color: #0263c3;
    text-decoration: none;
}

.art-caption-Inline a.art-buy:hover {
    text-decoration: underline;
}

/* Small Gallery Buttons - Fixed Centering Version */
.btn-buy-sm {
  display: inline-flex;
  align-items: center;      
  justify-content: center;  
  
  margin-top: 8px;
  min-height: 30px;         /* Increased for better hit-area and centering */
  min-width: 120px;         /* Slightly wider to prevent text crampedness */
  padding: 0 12px;
  
  background-color: #0263c3; 
  color: #e1e1e1 !important;
  
  text-decoration: none;
  font-weight: bold;
  font-size: 11px;
  border-radius: 4px;
  border: 1px solid #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  
  /* Critical for centering consistency */
  line-height: 1;           
  vertical-align: middle;
  box-sizing: border-box;   /* Includes border in the height calculation */
  
  transition: background-color 0.2s ease, transform 0.1s ease;
}

/* Ensure the text stays centered and white on hover */
.btn-buy-sm:hover {
  background-color: #007bd0; /* Slightly lighter blue */
  color: #ffffff !important;
  text-decoration: none;
  transform: scale(1.01); /* Subtle lift effect */
}





@media (max-width: 768px) {
    .art-gallery {
        display: flex;
        flex-wrap: nowrap;
    }

    .art-item {
        min-width: 180px;
        margin-right: 12px;
    }
	
	    /* Show mobile-only text on screens <= 480px */
    p.mobile-only-text {
        display: block; /* Visible only on small screens */
    }
	
		    /* Show mobile-only text on screens <= 480px */
    p.mobile-white-text {
        display: block; /* Visible only on small screens */
    }

}


/************************************************************************************
mobile-only caption: hidden by default (desktop
*************************************************************************************/

.widget .post-imageCenter .mobile-only-caption {
  display: none;
  width: 100%;
  margin: 0 auto;        /* helps center block-level caption */
  text-align: center;    /* center the text inside */
  font-size: 1rem;       /* adjust as needed */
  line-height: 1.4;
  color: #ccc;           /* optional */
  padding: 0 2px;        /* small horizontal padding so text doesn't hit edges */
}

/* On small screens stack image + caption and add spacing */
@media (max-width: 768px) {
  /* make the figure stack its children vertically */
  .widget .post-imageCenter {
    display: flex;
    flex-direction: column; /* stack vertically */
    align-items: center;    /* center horizontally */
  }

  /* add spacing under the image so caption isn't glued to it */
  .widget .post-imageCenter img {
    margin-bottom: 14px; /* controls spacing between image and caption */
    max-width: 98%;      /* keep some breathing room on very small screens */
    height: auto;
  }

  /* reveal and space the caption */
  .widget .post-imageCenter .mobile-only-caption {
    display: block;
    margin-top: 0.5px;   /* extra vertical gap */
  }
}

/* extra tweak for very small phones */
@media (max-width: 480px) {
  .widget .post-imageCenter img {
    margin-bottom: 4px;
  }
  .widget .post-imageCenter .mobile-only-caption {
    margin-top: 0.5px;
    font-size: 0.95rem;
  }
}




/************************************************************************************
LIGHTBOX (art.html)
*************************************************************************************/
.lightbox {
    display: none;
    position: fixed;
    z-index: 11000;
    padding-top: 5%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.9);
}

.lightbox-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

#lightbox-caption {
    margin: 1rem auto;
    text-align: center;
    font-size: 1.1rem;
    color: #ccc;
}

.lightbox-close {
    position: fixed;
    top: 10px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 11001;
}

.lightbox-close:hover {
    color: #dca844;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: #f1f1f1;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s;
    user-select: none;
    z-index: 11001;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #dca844;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 5px;
        right: 20px;
        font-size: 36px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 36px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .lightbox-close {
        top: 5px;
        right: 20px;
        font-size: 32px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 32px;
        padding: 10px;
    }
}



/************************************************************************************
Back to Top Chevron
*************************************************************************************/
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    z-index: 10999;
    cursor: pointer;
}

#back-to-top img {
    width: 40px;
    height: auto;
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.6));
    transition: filter 0.3s ease;
}



/************************************************************************************
DESKTOP NAV
*************************************************************************************/
.desktop-nav { 
    position: absolute; 
    bottom: 1%; 
    left: 0; 
    display: flex; 
    gap: 0; 
}
.desktop-nav ul { 
    display: flex; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}
.desktop-nav li a {
    display: block;
    padding: 0.15em 0.72em;
    font-size: 1.0vw; /* control for header links text size */
    color: #b6b6b6;
   background: rgba(0,0,0,0.5);
	  /*  gradient background from fully transparent → semi-opaque 
  background: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.5) 100%
  );*/
    font-family: "Century Gothic", Arial, sans-serif;
    letter-spacing: 1.2px;
    border-radius: 0;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}
.desktop-nav li a:hover { 
    color: #dca844; 
    background: rgba(0,0,0,0.7);
    text-decoration: none; 
}


@media (max-width: 1200px) {
    .desktop-nav li a { font-size: 1.5vw; }
}
@media (max-width: 768px) {
    .desktop-nav li a { font-size: 0; }
}

/************************************************************************************
DESKTOP NAV - gradient
*************************************************************************************/
.desktop-g-nav { 
    position: absolute; 
    bottom: 1%; 
    left: 0; 
    display: flex; 
    gap: 0; 
}
.desktop-g-nav ul { 
    display: flex; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}
.desktop-g-nav li a {
    display: block;
    padding: 0.15em 0.72em;
    font-size: 0.9vw;
    color: #b6b6b6;
   /* background: rgba(0,0,0,0.5);
	   gradient background from fully transparent → semi-opaque */
  background: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.5) 100%
  );
    font-family: "Century Gothic", Arial, sans-serif;
    letter-spacing: 1.2px;
    border-radius: 0;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}
.desktop-g-nav li a:hover { 
    color: #dca844; 
    background: rgba(0,0,0,0.7);
    text-decoration: none; 
}


@media (max-width: 1200px) {
    .desktop-g-nav li a { font-size: 1.0vw; }
}
@media (max-width: 768px) {
    .desktop-g-nav li a { font-size: 0; }
}


/************************************************************************************
MOBILE NAV
*************************************************************************************/
.nav-toggle { 
    display: none; 
    position: fixed; 
    top: 15px; 
    right: 20px; 
    font-size: 28px; 
    color: #fff; 
    background: transparent; 
    border: none; 
    cursor: pointer; 
    z-index: 10000; 
    text-shadow: 2px 2px 2px rgba(0,0,0,0.7); 
}
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; 
    right: 0;
    width: 50%;
    max-height: 100vh;
    overflow-y: auto;
    background: rgba(0,0,0,0.95);
    border-radius: 8px;
    z-index: 9999;
    padding-top: 5px;
}
.mobile-nav ul {
    list-style: none;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
}
.mobile-nav li { 
    width: 100%; 
    text-align: center; 
}
.mobile-nav li a {
    display: block;
    width: 100%;
    padding: 20px;
    font-size: 24px;
    color: #b6b6b6;
    text-decoration: none;
    border-bottom: 1px solid #333;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.mobile-nav li a:hover { 
    color: #e8e565; 
    background-color: rgba(255,255,255,0.1); 
}
.mobile-nav.active { 
    display: block; 
}

/************************************************************************************
MEDIA QUERIES
*************************************************************************************/
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .nav-toggle { display: block; }
    #content { width: 100%; margin: 20px 0; }
	
    #site-logo {
        left: 1%;
        font-size: 3vw;
    }
    #site-description {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 2.5vw;
        text-align: center;
    }
    h1.goldHead {
        color: #8c895c !important; /* Existing rule */
        font-size: 1.5rem; /* Reduced size for mobile */
    }
    /* Reduce font size for all <p> tags */
    p {
        font-size: 0.9rem; /* Smaller text for mobile */
    }
    /* Reduce font size for centered <p> tags */
    p.text-center {
        font-size: 0.85rem; /* Slightly smaller for centered text */
    }
	p.text-centerItalic {
        font-size: 0.85rem; /* Slightly smaller for centered text */
		font-style: italic;
    }
	
    /* Reduce font size for .art-caption-Inline */
    .art-caption-Inline {
        font-size: 1rem; /* Reduced from 1.25rem for smaller screens */
    }
    .lightbox-close {
        top: 5px;
        right: 20px;
        font-size: 36px;
    }
    .lightbox-prev,
    .lightbox-next {
        font-size: 36px;
        padding: 12px;
    }
    /* Further reduce space between <p> and .art-gallery-wrapper on mobile */
    p.text-center + .art-gallery-wrapper {
        margin-top: -0.75em; /* Tighter spacing on smaller screens */
    }
}
@media (max-width: 480px) {
	#content { width: 100%; margin: 8px 0;
	    margin: 5px 0; 
    	padding: 1px 10px; }
    #site-logo {
        left: 1%;
        font-size: 3.6vw;
    }
    #site-description {
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        font-size: 3vw;
        text-align: center;
        border-radius: 4px;
        padding: 0.15em 0.72em;
        background: rgba(0,0,0,0.3);
    }
    .mobile-nav li a { font-size: 1.2rem; padding: 0.8rem; }
    h1.goldHead {
    color: #8c895c !important; /* Explicitly enforce gold for .goldHead */
	font-size: 1.2rem; /* Reduced size for mobile */
  }
  
  /* Show mobile-only text on screens <= 480px and reduce vertical spacing */
    p.mobile-only-text {
        display: block; /* Visible only on small screens */
        margin-top: 0.3em; /* Reduced from 1.0em */
        margin-bottom: 0.3em; /* Reduced from 1.0em */
    }
	
	  /* Show mobile-only text on screens <= 480px and reduce vertical spacing */
    p.mobile-white-text {
        display: block; /* Visible only on small screens */
        margin-top: 0.3em; /* Reduced from 1.0em */
        margin-bottom: 0.3em; /* Reduced from 1.0em */
    }
	




  
 /* Further reduce space between <h1 class="post-title goldHead"> and <p class="text-center"> on mobile */
    h1.post-title.goldHead + p.text-center {
        margin-top: -0.2em; /* Tighter spacing on mobile */		
    } 
		
	  /* Reduce space between p.text-center and .art-caption-Inline */
    p.text-center + .art-caption-Inline {
        margin-top: -0.5rem; /* Reduced from 0.5rem */
		margin-bottom: -0.5rem; /* Reduced from 0.5rem */
    }	
	

	
	/* Further reduce space on mobile */
     p.text-center +  p.mobile-only-text {
        margin-top: -0.4em; /* Tighter spacing on mobile */
    }

	/* Further reduce space on mobile */
     p.text-center +  p.mobile-white-text {
        margin-top: -0.4em; /* Tighter spacing on mobile */
    }
  
  /* Mobile Spacing Fix */
@media (max-width: 600px) {
  /* Tighten the gap for all paragraphs in the content area */
  #content p {
    margin-top: 2px !important;
    margin-bottom: 5px !important;
  }

  /* Target the button container specifically */
  .art-caption-Inline {
    margin: 5px 0 !important; /* Minimal gap above and below the button */
    padding: 0 !important;
    text-align: center;
  }

  /* If the button itself feels too "tall", we shrink the internal padding */
  .art-buy {
    padding: 8px 16px !important; /* Smaller button on mobile */
    font-size: 0.9em;
  }
}


	
}
@media (max-width: 768px) {
    /* Completely remove the desktop labels and their background bars */
    .desktop-nav, 
    .desktop-g-nav,
    .widget .desktop-g-nav,
    .portfolio-widget .desktop-g-nav {
        display: none !important;
    }

    /* Ensure the list items specifically are hidden if they are being called elsewhere */
    .desktop-g-nav ul, 
    .desktop-g-nav li {
        display: none !important;
    }
}

