/*
Theme Name: Allan Benoit Arts
Theme URI: https://allanbenoitstudios.com
Author: Bratt Systems
Description: Custom theme for Allan Benoit Arts — acrylic painter, Delray Beach FL
Version: 1.1
*/

/* ── RESET & FULL-WIDTH OVERRIDE ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #f5f0e8;
  font-family: 'Trebuchet MS', Trebuchet, sans-serif;
  cursor: none;
}

/* Kill ALL WordPress container width constraints */
.wp-site-blocks,
.wp-block-group,
.entry-content,
.site-content,
.site-main,
.content-area,
#content,
#primary,
#main,
main,
article,
.post,
.page,
.hentry,
.wp-block-post-content {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

/* Remove default body padding WP adds */
body.wp-admin-bar { margin-top: 0 !important; }
#wpadminbar { display: none !important; }

/* ── CUSTOM CURSOR ── */
#cursor {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #c8102e;
  border: 3px solid #111;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s, background 0.2s;
}

/* ── NAV ── */
nav.site-nav {
  background: #111;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 5px solid #c8102e;
  width: 100%;
}
.nav-logo {
  font-family: 'Brush Script MT', 'Segoe Script', 'Comic Sans MS', cursive;
  font-size: 34px;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
  text-decoration: none;
}
.nav-logo span { color: #f5c518; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Trebuchet MS', sans-serif;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links .current-menu-item a { color: #f5c518; }

/* ── HERO ── */
.hero {
  min-height: 91vh;
  background: #111;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 80px;
  gap: 60px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.hero::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: #1a3a6b;
  top: -120px; right: -80px;
  opacity: 0.35;
}
.hero::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: #c8102e;
  bottom: 50px; left: 40px;
  opacity: 0.2;
}
.hero-circle-accent {
  position: absolute;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: #f5c518;
  bottom: 120px; right: 420px;
  opacity: 0.12;
}
.hero-text { position: relative; z-index: 2; }
.hero-tag {
  display: inline-block;
  background: #c8102e;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 4px;
  border: 2.5px solid rgba(255,255,255,0.4);
  margin-bottom: 28px;
  font-family: 'Trebuchet MS', sans-serif;
}
.hero h1 {
  font-family: 'Brush Script MT', 'Segoe Script', 'Comic Sans MS', cursive;
  font-size: 80px;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}
.hero h1 .y { color: #f5c518; display: block; }
.hero h1 .b { color: #5db8e0; display: block; }
.hero-desc {
  color: #bbb;
  font-size: 17px;
  line-height: 1.75;
  max-width: 420px;
  margin: 24px 0 40px;
  font-family: 'Trebuchet MS', sans-serif;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  background: #f5c518;
  color: #111;
  border: 3px solid #111;
  padding: 14px 34px;
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 26px;
  border-radius: 50px;
  cursor: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 4px 4px 0 #111;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 #111; }

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 3px solid rgba(255,255,255,0.5);
  padding: 14px 34px;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: none;
  transition: transform 0.15s, border-color 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover { border-color: #fff; transform: translate(-2px,-2px); }

.btn-white {
  background: #fff;
  color: #111;
  border: 4px solid #111;
  padding: 16px 44px;
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 5px 5px 0 #111;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: none;
  white-space: nowrap;
}
.btn-white:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 #111; }

/* ── HERO ART CARDS ── */
.hero-art {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
  height: 540px;
}
.art-card {
  position: absolute;
  border-radius: 18px;
  border: 5px solid #fff;
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.55);
  transition: transform 0.3s, z-index 0s;
}
.art-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.art-card:nth-child(1) { width: 255px; height: 255px; transform: rotate(-9deg) translate(-85px,35px); z-index: 1; }
.art-card:nth-child(2) { width: 255px; height: 255px; transform: rotate(6deg) translate(85px,-25px); z-index: 2; }
.art-card:nth-child(3) { width: 285px; height: 285px; transform: rotate(-2deg) translate(0,55px); z-index: 3; border-color: #f5c518; }
.art-card:hover { z-index: 10; transform: rotate(0deg) scale(1.06) !important; }

/* ── MARQUEE ── */
.marquee-strip {
  background: #f5c518;
  border-top: 5px solid #111;
  border-bottom: 5px solid #111;
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.marquee-inner { display: inline-block; animation: marquee 20s linear infinite; }
.marquee-inner span {
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 28px; color: #111; margin: 0 28px;
}
.marquee-inner .dot {
  display: inline-block; width: 13px; height: 13px;
  background: #c8102e; border-radius: 50%;
  border: 2.5px solid #111; vertical-align: middle; margin: 0 14px;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── GALLERY SECTION ── */
.gallery-section { padding: 80px 60px; background: #f5f0e8; width: 100%; }
.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.section-title {
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 68px; color: #111; line-height: 1;
}
.section-title span { color: #c8102e; }
.section-sub {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 16px; color: #666;
  max-width: 260px; text-align: right; line-height: 1.6;
}
.gallery-scatter {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 14px;
}
.g-item {
  border-radius: 16px; overflow: hidden;
  border: 4px solid #111;
  position: relative; cursor: none;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 5px 5px 0 #111;
}
.g-item:hover { transform: translate(-3px,-3px) rotate(-1deg); box-shadow: 9px 9px 0 #111; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-item .tb {
  position: absolute; bottom: 10px; left: 10px;
  background: #fff; border: 2.5px solid #111; border-radius: 20px;
  padding: 4px 16px;
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 18px; color: #111;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
}
.g-item:hover .tb { opacity: 1; transform: translateY(0); }
.g-item:nth-child(1) { grid-column: 1/5; grid-row: 1/3; }
.g-item:nth-child(2) { grid-column: 5/9; grid-row: 1/2; }
.g-item:nth-child(3) { grid-column: 9/13; grid-row: 1/3; }
.g-item:nth-child(4) { grid-column: 5/7; grid-row: 2/4; }
.g-item:nth-child(5) { grid-column: 7/10; grid-row: 2/4; }
.g-item:nth-child(6) { grid-column: 10/13; grid-row: 3/4; }
.g-item:nth-child(7) { grid-column: 1/5; grid-row: 3/4; }

/* ── ABOUT SECTION ── */
.about-section {
  background: #1a3a6b;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.about-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: #c8102e;
  top: -200px; right: -150px;
  opacity: 0.08;
}
.about-text h2 {
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 64px; color: #fff; line-height: 1.1;
  margin-bottom: 24px;
}
.about-text h2 span { color: #f5c518; }
.about-text p {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 17px; line-height: 1.8; color: #ccc;
  margin-bottom: 16px;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px;
}
.about-img-wrap {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 16px;
}
.about-img-card {
  border-radius: 20px;
  border: 5px solid rgba(255,255,255,0.15);
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.4);
}
.about-img-card img { width: 100%; display: block; object-fit: cover; }
.about-img-card:nth-child(1) { transform: rotate(-2deg); }
.about-img-card:nth-child(2) { transform: rotate(1.5deg); }
.about-stat-row {
  display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap;
}
.a-stat {
  border: 3px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 16px 24px;
  text-align: center; flex: 1; min-width: 100px;
  background: rgba(255,255,255,0.05);
}
.a-stat .n {
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 42px; color: #f5c518; line-height: 1;
}
.a-stat .l {
  font-size: 11px; font-weight: 700;
  color: #aaa; letter-spacing: 1px; text-transform: uppercase;
}

/* ── CONTACT STRIP ── */
.contact-strip {
  background: #111;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 5px solid #c8102e;
  border-bottom: 5px solid #c8102e;
  width: 100%;
}
.contact-item {
  padding: 32px 40px;
  display: flex; flex-direction: column; gap: 6px;
  border-right: 2px solid #222;
}
.contact-item:last-child { border-right: none; }
.contact-label {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: #666;
}
.contact-value { font-size: 18px; font-weight: 700; }
.contact-value a { color: #f5c518; text-decoration: none; }
.contact-value a:hover { color: #fff; }

/* ── CTA SECTION ── */
.cta-section {
  background: #c8102e;
  padding: 70px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 5px solid #111;
  border-bottom: 5px solid #111;
  width: 100%;
}
.cta-section h2 {
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 58px; color: #fff; line-height: 1.05;
}
.cta-section h2 span { color: #111; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 17px; margin-top: 10px; }

/* ── FOOTER ── */
footer.site-footer {
  background: #111;
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 5px solid #c8102e;
  width: 100%;
}
.footer-logo {
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 34px; color: #fff;
}
.footer-logo span { color: #f5c518; }
.footer-center { text-align: center; color: #666; font-size: 13px; line-height: 1.7; }
.footer-right { display: flex; gap: 16px; }
.footer-right a {
  width: 40px; height: 40px;
  border-radius: 50%; border: 2.5px solid #444;
  display: flex; align-items: center; justify-content: center;
  color: #aaa; text-decoration: none;
  font-weight: 700; font-size: 15px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-right a.ig { border-color: #c8102e; color: #c8102e; }
.footer-right a:hover { border-color: #f5c518; color: #f5c518; }

/* ── INNER PAGES: BANNER ── */
.page-banner {
  background: #111;
  padding: 60px 80px 50px;
  border-bottom: 5px solid #c8102e;
  position: relative; overflow: hidden;
  width: 100%;
}
.page-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: #1a3a6b;
  top: -80px; right: -60px; opacity: 0.35;
}
.page-banner h1 {
  font-family: 'Brush Script MT', 'Segoe Script', 'Comic Sans MS', cursive;
  font-size: 80px; color: #fff; line-height: 1;
  position: relative; z-index: 2;
}
.page-banner h1 span { color: #f5c518; }

/* ── PAGE CONTENT WRAPPER ── */
.page-content-wrap { padding: 60px 80px; background: #f5f0e8; width: 100%; }

/* ── ABOUT PAGE ── */
.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  max-width: 1200px; margin: 0 auto; padding: 80px 0;
}
.about-left h2 {
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 56px; color: #111; line-height: 1.1; margin-bottom: 24px;
}
.about-left h2 span { color: #c8102e; }
.about-left p { font-family: 'Trebuchet MS', sans-serif; font-size: 17px; line-height: 1.8; color: #333; margin-bottom: 20px; }
.about-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.stat-box {
  border: 4px solid #111; box-shadow: 5px 5px 0 #111;
  border-radius: 16px; padding: 20px 28px;
  background: #fff; text-align: center; min-width: 120px;
}
.stat-box .num { font-family: 'Brush Script MT', 'Segoe Script', cursive; font-size: 48px; color: #c8102e; line-height: 1; }
.stat-box .label { font-family: 'Trebuchet MS', sans-serif; font-size: 12px; font-weight: 700; color: #666; letter-spacing: 1px; text-transform: uppercase; }
.about-right {
  background: #1a3a6b; border-radius: 24px;
  border: 5px solid #111; box-shadow: 8px 8px 0 #111;
  padding: 40px; color: #fff;
}
.about-right h3 { font-family: 'Brush Script MT', 'Segoe Script', cursive; font-size: 38px; color: #f5c518; margin-bottom: 20px; }
.about-right p { font-family: 'Trebuchet MS', sans-serif; font-size: 16px; line-height: 1.75; color: #ccc; margin-bottom: 16px; }
.medium-tag {
  display: inline-block; background: #c8102e; color: #fff;
  font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px; margin: 4px 4px 4px 0;
}

/* ── GALLERY PAGE ── */
.gallery-page-wrap { padding: 60px 60px 80px; width: 100%; }
.gallery-page-wrap .section-title { font-family: 'Brush Script MT', 'Segoe Script', cursive; font-size: 68px; color: #111; line-height: 1; margin-bottom: 8px; }
.gallery-page-wrap .section-title span { color: #c8102e; }
.gallery-page-wrap .section-sub { font-family: 'Trebuchet MS', sans-serif; font-size: 16px; color: #666; margin-bottom: 48px; }

/* ── COMMISSION PAGE ── */
.commission-wrap { max-width: 900px; margin: 0 auto; padding: 80px 0; }
.commission-wrap h2 { font-family: 'Brush Script MT', 'Segoe Script', cursive; font-size: 56px; color: #111; margin-bottom: 16px; }
.commission-wrap h2 span { color: #c8102e; }
.commission-wrap p { font-family: 'Trebuchet MS', sans-serif; font-size: 17px; line-height: 1.8; color: #444; margin-bottom: 20px; }
.commission-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0; }
.step-card { border: 4px solid #111; box-shadow: 5px 5px 0 #111; border-radius: 16px; padding: 28px 24px; background: #fff; }
.step-num { font-family: 'Brush Script MT', 'Segoe Script', cursive; font-size: 52px; color: #f5c518; line-height: 1; border-bottom: 3px solid #111; margin-bottom: 12px; padding-bottom: 8px; }
.step-card h3 { font-family: 'Trebuchet MS', sans-serif; font-weight: 700; font-size: 15px; color: #111; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: #555; line-height: 1.6; margin: 0; }
.commission-cta-box {
  background: #111; border-radius: 24px;
  border: 5px solid #111; box-shadow: 8px 8px 0 #c8102e;
  padding: 48px; text-align: center;
}
.commission-cta-box h3 { font-family: 'Brush Script MT', 'Segoe Script', cursive; font-size: 48px; color: #fff; margin-bottom: 12px; }
.commission-cta-box p { color: #aaa; font-size: 16px; margin-bottom: 28px; }

/* ── SHOP / WOOCOMMERCE ── */
.shop-intro { max-width: 700px; margin-bottom: 48px; }
.shop-intro h2 { font-family: 'Brush Script MT', 'Segoe Script', cursive; font-size: 56px; color: #111; margin-bottom: 12px; }
.shop-intro h2 span { color: #c8102e; }
.shop-intro p { font-family: 'Trebuchet MS', sans-serif; font-size: 16px; color: #555; line-height: 1.7; }

.woocommerce ul.products li.product { border: 4px solid #111 !important; box-shadow: 5px 5px 0 #111 !important; border-radius: 16px !important; overflow: hidden !important; background: #fff !important; transition: transform 0.2s, box-shadow 0.2s !important; }
.woocommerce ul.products li.product:hover { transform: translate(-3px,-3px) !important; box-shadow: 9px 9px 0 #111 !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: 'Brush Script MT', 'Segoe Script', cursive !important; font-size: 26px !important; color: #111 !important; }
.woocommerce ul.products li.product .price { color: #c8102e !important; font-weight: 700 !important; font-size: 18px !important; }
.woocommerce ul.products li.product .button { background: #f5c518 !important; color: #111 !important; border: 3px solid #111 !important; font-weight: 700 !important; border-radius: 50px !important; box-shadow: 3px 3px 0 #111 !important; font-family: 'Trebuchet MS', sans-serif !important; }
.woocommerce ul.products li.product .button:hover { background: #c8102e !important; color: #fff !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 40px 40px 60px; min-height: auto; }
  .hero-art { height: 360px; margin-top: 40px; }
  .about-section { grid-template-columns: 1fr; padding: 60px 40px; gap: 40px; }
  .about-wrap { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
}
@media (max-width: 768px) {
  nav.site-nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
  .page-banner { padding: 40px 24px 32px; }
  .page-banner h1 { font-size: 56px; }
  .page-content-wrap { padding: 40px 24px; }
  .hero { padding: 40px 24px 60px; }
  .hero h1 { font-size: 56px; }
  .gallery-section { padding: 48px 20px; }
  .gallery-scatter { grid-template-columns: repeat(6, 1fr); }
  .cta-section { flex-direction: column; gap: 28px; text-align: center; padding: 48px 24px; }
  footer.site-footer { flex-direction: column; gap: 16px; text-align: center; padding: 24px; }
  .commission-steps { grid-template-columns: 1fr; }
}
