/* ==========================================================================
   TABLE OF CONTENTS
   01. View Transitions
   02. Global Layout & Typography Standards
   03. Header & Navigation
   04. Home Page Components
   05. Video Components
   06. Shop & WooCommerce (Grid, Product, Checkout)
   07. Resume Page
   08. Hire Page (Contact Form 7)
   09. Links Page
   10. Footer
   ========================================================================== */


/* ==========================================================================
   01. VIEW TRANSITIONS
   ========================================================================== */

/* Enable the native browser crossfade */
@view-transition {
  navigation: auto;
}

/* Control the speed of the crossfade */
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}


/* ==========================================================================
   02. GLOBAL LAYOUT & TYPOGRAPHY STANDARDS
   ========================================================================== */

body {
  line-height: 1.0;
}

/* Force Light Outfit styles on Justified Text, Skills Lists, and Woo Descriptions */
.text.justify p,
.text.justify p span,
p[style*="text-align: justify"],
p[style*="text-align: justify"] span,
p.text-align-justify,
p.text-align-justify span,
.text ul li,
.text ul li span,
.text ol li,
.text ol li span,
.item-description-wrap,
.item-description-wrap p,
.item-description-wrap ul,
.item-description-wrap ol,
.item-description-wrap li,
.item-description-wrap span,
.item-description-wrap div {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 300 !important;
  font-size: 17px !important;
  color: #555 !important;
  line-height: 29px !important;
}

/* Ensure bold text inside descriptions/paragraphs is protected from the 300 weight */
p b, p strong, 
.text b, .text strong,
.item-description-wrap b, 
.item-description-wrap strong {
  font-weight: 600 !important; 
}

/* Ensure italics function normally */
p i, p em,
.text i, .text em,
.item-description-wrap i, 
.item-description-wrap em {
  font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: unset;
}

p {
  margin-bottom: unset;
  line-height: 1.6;
}

/* Layout Utilities */
section + br {
  display: none !important;
}

.col,
.columns,
.gallery-item {
  margin: 0;
  padding: 0 15px 0;
  position: relative;
  width: 100%;
}

.section-title-container {
  margin-top: 0;
  margin-bottom: 15px;
}

section {
  padding-left: 40px;		
  padding-right: 40px;					
}

.white, 
.light {
  padding: 35px 40px 30px 40px;
}

section.nopad {
  padding-left: 0;			
  padding-right: 0;					
}

.circle {
  border-radius: 500px;
}

/* Lightbox Enhancements */
.lightbox-content {
  background-color: transparent;
}

.mfp-bg, 
.LIGHTBOX-TINT {
  background: rgba(0, 0, 0, 0.98) !important;
}

.mfp-bg.mfp-ready { 
  background-color: #000 !important;
  opacity: 0.8;
}


/* ==========================================================================
   03. HEADER & NAVIGATION
   ========================================================================== */

/* Menu Hover & Layout */
.header-main .header-nav-main.nav.nav-left {
  position: relative;
  display: flex;
  gap: 0;
  align-items: center;
  --pill-height: 44px;
  --pill-radius: 8px;
  --pill-color: #212121;
  --text-color: #fff;
}

.header-main .header-nav-main.nav.nav-left > .rxw-slider-bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
  height: var(--pill-height);
  width: 0;
  background: #323232;
  border-radius: var(--pill-radius);
  opacity: 1;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(.25,.8,.25,1), width 0.4s cubic-bezier(.25,.8,.25,1);
  z-index: 0;
}

.header-main .header-nav-main.nav.nav-left > li {
  margin: 0 !important;
}

.header-main .header-nav-main.nav.nav-left > li > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--pill-height);
  padding: 0 16px;
  border-radius: 8px;
  color: #fff !important;
  font-weight: 600;
  letter-spacing: .2px;
  text-decoration: none;
  transition: color .18s;
}

.header-main .header-nav-main.nav.nav-left > li > a:before {
  content: none !important;
}

.header-main .header-nav-main.nav.nav-left > li.current-menu-item > a {
  color: var(--text-color);
}

.header-main .header-nav-main.nav.nav-left::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: rgba(255, 255, 255, 0); 
}

.stuck .header-main .nav > li > a {
  line-height: unset;
}

/* Cart Badge Notification */
[data-icon-label]::after {
  background-color: var(--fs-color-primary);
  border-radius: 99px;
  box-shadow: 1px 1px 3px 0 rgba(0,0,0,.3);
  color: #fff;
  content: attr(data-icon-label);
  font-family: Arial, Sans-serif !important;
  font-size: 11px;
  font-style: normal;
  font-weight: bolder;
  height: 17px;
  letter-spacing: -.5px;
  line-height: 17px;
  min-width: 17px;
  opacity: .9;
  padding: 0 2px;
  position: absolute;
  right: -10px;
  text-align: center;
  top: -10px;
  transition: transform .2s;
  z-index: 1;
}


/* ==========================================================================
   04. HOME PAGE COMPONENTS
   ========================================================================== */

/* Hero Background */
.homehero .section-bg :is(img, picture, video) {
  min-height: 1047px;
}

.light {
  background-image: url(https://robxwallace.com/wp-content/uploads/2024/10/BG4-tile-8297h.webp);
  background-repeat: repeat !important;
  background-size: auto !important;
  background-attachment: fixed !important;
  background-color: #E9E9E9;
}

/* Home Section Wrappers */
.roundwhite .col-inner {
  border-radius: 47px !important;
  background-color: #fff !important;
  box-shadow: -5px -14px 59px -24px rgba(0,0,0,0.32);
  -webkit-box-shadow: -5px -14px 59px -24px rgba(0,0,0,0.32);
  -moz-box-shadow: -5px -14px 59px -24px rgba(0,0,0,0.32);
}

.roundwhite .col-inner .col-inner {
  background-color: transparent !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  border-radius: 0 !important;
}

.noshadow .col-inner {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
}

/* Home Photo / Store Display */
.box-excerpt {
  font-size: 0.8em !important;
  line-height: 1.0em !important;
  text-transform: uppercase;
  color: #777;
  font-weight: 400;
  font-style: normal;
  margin-top: .8em !important;
}

.homephoto .gallery-col a + a,
.homephoto .gallery-col p {
  display: none !important;
}

.photogal .box-text {
  display: none;
}

.section-title b {
  background-color: currentColor;
  display: block;
  flex: 1;
  height: 3px;
  opacity: .3;
}

/* Website Portfolios */
.top .image-cover img {
  object-position: 50% 0% !important;
}

.web .bar img {
  border-radius: 10px 10px 0 0; 
  margin-bottom: 0;
}

.web .top img {
  border-radius: 0 0 10px 10px; 
  margin-top: 0;
}


/* ==========================================================================
   05. VIDEO COMPONENTS
   ========================================================================== */

/* Music Video Popup */
.musicvideopopup {
  background-color: #000;
}

/* Video Previews & Hovers */
.video-hover-wrap {
  position: relative;
  overflow: hidden;
  -webkit-touch-callout: none; 
  user-select: none; 
}

.video-hover-wrap .static-thumb,
.video-hover-wrap .hover-video {
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  object-fit: cover;
}

.video-hover-wrap .hover-video {
  opacity: 0; 
  transition: opacity 0.3s ease-in-out;
  z-index: 2; 
  pointer-events: none; 
}

/* Video Page Items */
.videowrap .img:not(:last-child) {
  margin-bottom: 0;
}
		
.videowrap .itemtitle,
.videowrap .itemtitlex {
  color: #000 !important;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1.0em;
  margin-top: 14px;
  margin-bottom: 4px;
}

.videowrap .itemsubtitle {
  color: #777 !important;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.8em;
  line-height: 1.0em;
}


/* ==========================================================================
   06. SHOP & WOOCOMMERCE 
   ========================================================================== */

/* General & Checkout Overrides */
.woocommerce, 
.woolentor-checkout__box, 
.woolentor-checkout__container {
  min-height: 100vh;
  background-color: #fff;
}

.woolentor-checkout__right-sidebar {
  background-color: #f5f5f5;
}

.woolentor-checkout__container {
  max-width: 1570px;
}

#order_comments_field {
  display: none;
}

/* Shop Search Bar */
.searchgallery {
  background-color: #fff;
  border-radius: 90px;
}

.searchgallery input {
  height: 70px;
  line-height: 70px;
  padding: 0 35px;
}

.gallerypagesearch .form-flat input:not([type="submit"]), 
.gallerypagesearch .form-flat select, 
.form-flat textarea {
  background-color: rgba(0,0,0,.03);
  border-color: rgba(0,0,0,.20);
  border-radius: 150px;
  box-shadow: none;
  color: currentColor !important;
  border-width: 2px;
}

/* Shop Grid Item (Custom Wrapper) */
.prodwrap .col-inner .box, 
.prodwrap .col-inner .box img {
  background-color: #fff;	
  border-radius: 15px;
}

.prodwrap .col-inner .box-text.text-center {
  padding: 0 33px 50px 33px;
}

/* Flexbox Field Reordering */
.prodwrap .box-text-products,
.products .box-text-products {
  display: flex; 
  flex-direction: column; 
}

.prodwrap .title-wrapper,
.products .title-wrapper {
  order: 1; 
  margin-bottom: 5px !important;
}

.prodwrap .box-excerpt,
.products .box-excerpt {
  order: 2; 
  margin-bottom: 15px !important;
}

.prodwrap .price-wrapper,
.products .price-wrapper {
  order: 3; 
  margin-bottom: 0 !important;
}

/* Grid Typography Overrides */
.prodwrap .col-inner .box .title-wrapper,
.prodwrap .col-inner .box .title-wrapper a,
.woocommerce-loop-product__title a {
  color: #000 !important;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.4em !important;
  line-height: 1.0em !important;
}

.prodwide .col-inner .box .title-wrapper {
  margin-top: -30px;		
}

.prodsq .col-inner .box .title-wrapper {
  margin-top: 0;		
}

.prodwrap .col-inner .box .price-wrapper,
.price-wrapper {
  color: #000 !important;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.0em !important;
  line-height: 1.0 !important;
}

/* Single Product Page */
.xxxxsingle_add_to_cart_button,
.xxxxxwoocommerce-variation-add-to-cart-enabled > button:nth-child(2) {
  background-color: var(--fs-color-primary);
}

.product .product-breadcrumb-container {
  margin-bottom: 20px;
}

.product .product-title-container h1 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 2.7em !important;
  letter-spacing: -0.025em !important;
  font-weight: 800 !important; 
  color: #000 !important;
  margin-bottom: 20px;
  line-height: 1.1em; 
}

.product .product-price-container {
  margin-bottom: 20px;
}

.product .product-price-container .amount {
  color: #777 !important;
  font-weight: 400;
}

/* Single Product Description & Accordion */
.item-description-wrap p {
  margin-bottom: 13px;
  text-align: justify;
}

.item-description-wrap h3 {
  color: #000;
}

.item-description-wrap strong {
  color: #000;
  font-weight: bold;
}

.accordion .toggle {
  border-radius: 999px;
  height: auto;
  left: 0;
  margin-right: 5px;
  position: absolute;
  top: 0 !important;
  transform-origin: 50% 47%;
  width: 2.3em;
}


/* ==========================================================================
   07. RESUME PAGE
   ========================================================================== */

.header-bottom {
  display: none;
}

.page-id-1882 .header-bottom {
  display: block;
}

.page-id-1882 .header-bottom a {
  margin-left: -3px; 
  margin-right: 8px;
}

.roundedge {
  border-radius: 6% !important;
}

/* Section Headers */
.secheadlarge {
  display: inline-block;
  color: #fff;
  font-weight: bolder;
  font-size: 2.7rem;
  line-height: 1.0;
}

.secheadsmall {
  display: inline-block;
  font-size: 1.2em; 
  color: #fff;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.0;
}

.dateid {
  width: 196px;
  color: #7F7F7F;
  background-color: #fff;
  padding: 15px 20px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 90px;
  text-align: center;
  float: right;
  line-height: 1.0;
}

/* Sub Headers */
.subdeskwrap {
  border-width: 0 0 3px 0;
  border-style: solid;
  border-color: #CBCBCB;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.subheadlarge {
  display: inline !important;
  color: #000;
  font-weight: 900;
  font-size: 2.0em;
  line-height: 1.0;
  padding: 0 0 10px 0 !important;
  margin: 0 !important;
}

.subheadsmall {
  display: inline;
  font-size: 1.2em; 
  color: #747474;
  padding: 0 0 10px 0 !important;
  margin: 0 !important;
  line-height: 1.0;
}

.resumebreadcrumb {
  display: inline-block;
  font-size: 1.4em; 
  font-weight: 200;
  color: #747474;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.0;
}

/* Portfolio Resume Video Details */
.vidtitle {
  color: #000;
  font-weight: 700;
  text-decoration: none;
  display: block;
  font-family: Montserrat, 'Montserrat Fallback';
  font-size: 1.3em;
  text-align: center;
}

.vidsubtitle {
  text-transform: uppercase;
  display: block;
  text-decoration: none;
  color: #7E7E7E;
  font-size: .8em;
  text-align: center;
}

.roundvid img {
  border-radius: 6%;
}

.round4 img {
  border-radius: 8%;
}


/* ==========================================================================
   08. HIRE PAGE (Contact Form 7 Settings)
   ========================================================================== */

:root {
  --form-border-color: #e6e6e6;
  --form-label-color: #000000;        
  --form-text-color: #686868;         
  --form-focus-border: #bcdffb;       
  --form-button-bg: #ab0001;          
  --form-button-text: #ffffff;
  --select-arrow-size: 44px;          
  --select-arrow-right: 16px;         
}

/* Container & Spacing */
.floatingform { 
  width: 100% !important; 
}

.floatingform .wpcf7, 
.floatingform .wpcf7 * { 
  box-sizing: border-box; 
}

.floatingform .wpcf7, 
.floatingform .wpcf7-form, 
.floatingform .cf7-stack {
  width: 100% !important; 
  max-width: none !important; 
  margin: 0 !important;
}

.floatingform .wpcf7 p { 
  margin: 0 0 18px 0 !important; 
}

.floatingform .form-floating {
  position: relative !important; 
  margin: 0 0 20px 0 !important; 
  width: 100% !important;
}

/* Unified Inputs */
.floatingform :is(input.wpcf7-form-control, textarea.wpcf7-form-control, select.wpcf7-form-control):not(.wpcf7-submit) {
  display: block !important;
  width: 100% !important;
  height: 76px !important;
  padding: 32px 18px 12px 18px !important;    
  font-size: 20px !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  color: var(--form-text-color) !important;
  background-color: #fff !important;
  border: 1px solid var(--form-border-color) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  transition: border-color .2s !important;
  -webkit-appearance: none !important; 
  appearance: none !important;
}

.floatingform textarea.wpcf7-form-control {
  height: auto !important; 
  min-height: 160px !important; 
  padding-top: 32px !important;
}

/* Custom Select Dropdowns */
.floatingform .form-floating select.wpcf7-form-control {
  cursor: pointer !important;
  line-height: normal !important;
  -webkit-appearance: none !important; 
  -moz-appearance: none !important; 
  appearance: none !important;
  padding-right: calc(var(--select-arrow-size) + var(--select-arrow-right) + 12px) !important;
  background-color: #fff !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M7 10l5 5 5-5z'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right var(--select-arrow-right) center !important;
  background-size: var(--select-arrow-size) var(--select-arrow-size) !important;
}

.floatingform .form-floating select.wpcf7-form-control::-ms-expand { 
  display: none !important; 
}

.floatingform .form-floating select.wpcf7-form-control option {
  font-size: 20px !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  color: #000 !important;
  background: #fff !important;
}

/* Hover & Focus States */
.floatingform .form-floating select.wpcf7-form-control:hover {
  border-color: #d6d6d6 !important;
}

.floatingform .wpcf7-form-control:focus {
  border-color: var(--form-focus-border) !important;
  box-shadow: 0 0 0 3px rgba(30,167,253,.10) !important;
  outline: none !important;
}

/* Pinned Labels */
.floatingform .form-floating label {
  position: absolute !important; 
  top: 12px !important; 
  left: 18px !important;
  margin: 0 !important; 
  font-size: 12px !important; 
  letter-spacing: .02em !important;
  font-weight: 700 !important; 
  text-transform: uppercase !important;
  color: var(--form-label-color) !important; 
  pointer-events: none !important;
}

/* File Upload Blocks */
.floatingform .file-wrap { 
  margin: 10px 0 22px !important; 
  width: 100% !important; 
}

.floatingform .file-wrap input[type="file"] {
  display: block !important; 
  width: 100% !important;
  padding: 16px 18px !important; 
  border: 1px dashed var(--form-border-color) !important;
  border-radius: 12px !important; 
  background: #fff !important;
}

.floatingform .file-wrap .file-help { 
  display: block !important; 
  margin-top: 6px !important; 
  font-size: 12px !important; 
  color: #777 !important; 
}

/* Submit Button */
.floatingform .wpcf7-submit {
  display: block !important; 
  width: 100% !important; 
  height: 64px !important;
  border: 0 !important; 
  border-radius: 10px !important;
  font-weight: 800 !important; 
  letter-spacing: .06em !important; 
  text-transform: uppercase !important;
  background: var(--form-button-bg) !important; 
  color: var(--form-button-text) !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: transform .02s, filter .2s !important;
}

.floatingform .wpcf7-submit:hover { 
  filter: brightness(.95) !important; 
}

.floatingform .wpcf7-submit:active { 
  transform: translateY(1px) !important; 
}

/* Form Success Message */
.floatingform .wpcf7 form.sent .wpcf7-response-output {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 76px !important;
  margin: 20px 0 0 0 !important;        
  padding: 24px 20px !important;        
  border: 2px solid #28a745 !important; 
  border-radius: 12px !important;       
  background-color: #f9fff9 !important; 
  font-size: 20px !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  color: #333 !important;
  text-align: center !important;
  box-shadow: none !important;
  line-height: 1.4 !important;          
}

/* Grid Override */
.floatingform .row, 
.floatingform .ux-row, 
.floatingform [class*="col-"] {
  width: 100% !important; 
  max-width: 100% !important; 
  padding-left: 0 !important; 
  padding-right: 0 !important;
}

/* Form Mobile Responsiveness */
@media (max-width: 480px) {
  .floatingform :is(input.wpcf7-form-control, textarea.wpcf7-form-control, select.wpcf7-form-control):not(.wpcf7-submit) {
    font-size: 18px !important; 
    height: 70px !important; 
    padding: 28px 16px 10px 16px !important;
  }
  
  .floatingform .form-floating select.wpcf7-form-control {
    background-size: 36px 36px !important;               
    background-position: right 14px center !important;
    padding-right: calc(36px + 14px + 10px) !important;   
  }
}

/* Hide Recaptcha Badge */
.grecaptcha-badge {
  bottom: -500px !important;
}


/* ==========================================================================
   09. LINKS PAGE
   ========================================================================== */

.page-template-page-links #header,
.page-template-page-links #footer {
  display: none;
}

.asphalt {
  background-image: url(https://robxwallace.com/wp-content/uploads/2025/06/grunge-wall-texture.webp);
  background-repeat: repeat !important;
  background-size: auto !important;
  background-attachment: fixed !important;
}

.asphalt .itemtitle {
  color: #fff !important; 
  text-shadow: 2px 2px #000;   
  font-size: 0.9em;
  line-height: 0.9em; 
  margin-bottom: 6px;
}

.asphalt .itemsubtitle {
  color: #fff !important; 
  opacity: 0.65; 
  font-size: 0.55em;
  line-height: 0.5em;
}

.defaultpic img {
  border-radius: 500px;
  box-shadow: rgba(0,0,0,1.0) 0 0 10px;
}


/* ==========================================================================
   10. FOOTER
   ========================================================================== */

/* Sub Footer Layout */
.subfootright .payment, 
.subfootright .copy {
  display: inline-block;
}

/* Footer Form Overrides */
.footerform label {
  text-transform: uppercase;
}

.footerform .wpcf7-text,
.footerform textarea,
.footerform .wpcf7-text:focus,
.footerform textarea:focus {
  background: rgba(255, 255, 255, 0.2);
  border-width: 0;
  color: #fff;
  padding: 14px;
  outline: none;
  box-shadow: none;
}

.footerform .wpcf7-submit {
  background: #000;
  border-width: 2px;
  border-color: #fff;
  color: #fff;
  padding: 0 14px !important;
  text-transform: uppercase;
}

.absolute-footer {
  display: none;
}