@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'ProximaNova';
  src: url('/assets/fonts/ProximaNova.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Imager';
  src: url('/assets/fonts/imager.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #111;
  background-color: #f9f8f6;
}

h1, h2 {
  font-family: 'Inter', serif;
  color: #111;
}

h3, h4, a {
  font-family: 'Inter', sans-serif;
  color: #111;
}

a {
  text-decoration: none;
}

.site-title {
  font-size: 6.5rem;
  font-family: 'Imager', serif;
  margin: 0 auto;
  padding: 1rem 0;
  text-align: center;
}

.hero-img img {
  width: 100vw;
  display: block;
}

/* NAV TOGGLE + OVERLAY MENU */
.navbar-toggle {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 2001;
}

.navbar-toggle span {
  display: block;
  height: 2px;
  background:floralwhite;
  
  margin: 6px 0;
  transition: 0.4s ease all;
}

.navbar-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.open span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

#post-28 > header {
    display:none!important;
}




/* NAV OVERLAY */
.main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(197,130,193,0.875);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.4s ease;
}

.main-navigation.active {
  display: flex;
}

.main-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.main-navigation ul li {
  margin: 1rem 0;
}

.main-navigation ul li a {
  font-family: 'ProximaNova', sans-serif;
  font-size: 1.5rem;
  color: floralwhite!important;
  text-decoration: none;
  transition: color 0.3s;
}

.logo-container {
    position:absolute;
    left:40px;
    top:40px;
    z-index:9999999;
}

.logo-container svg {
height:100px;
width:auto;
}

.st0 {
    stroke:white;
}

.st1 {
    fill:white;
}

.main-navigation ul li a:hover {
  color: #666;
}

#post-20 > header > h1 {
    display:none!important;
}

#post-20 > div > figure > img {
    margin:0;
    padding:0;
    width:100vw;
}



/* Banner overlay */
.banner-overlay {
  position: relative;
  width: 100%;
  background: #f9f8f6;
  font-family: 'ProximaNova', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-transform: lowercase;
  border-top: 2px solid #111;
  border-bottom: 2px solid #111;
  text-align: center;
  padding: 0.5rem 0;
}

.banner-text {
  display: inline-block;
  animation: scroll-left 45s linear infinite;
}

.banner-text em {
  font-style: italic;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Section coloring */
.section-brown {
  background-color: #d8c6af;
}

/* Asymmetric grid */
.asym-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 6vw;
}

.asym-grid.reverse {
  direction: rtl;
}

.asym-grid.reverse > * {
  direction: ltr;
}

/* Typography */
h1.display-4 {
  font-size: 2.75rem;
}

blockquote {
  border-left: 4px solid #aaa;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
}

.blockquote-footer {
  font-size: 0.9rem;
  color: #666;
}

.btn {
  font-family: 'ProximaNova', sans-serif;
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
}

.btn-outline-dark {
  border: 1px solid #111;
  color: #111;
}

.btn-outline-dark:hover {
  background-color: #111;
  color: #fff;
}

/* AOS fade-in */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* Layout */
.site-header {
  background-color: transparent;
  position: relative;
  z-index: 1000;
}

/* === FOOTER === */
.site-footer {
  background-color: #f9f8f6;
  border-top: 1px solid #000;
  padding-top: 4rem;
  padding-bottom: 3rem;
  font-family: 'ProximaNova', sans-serif;
}

.footer-heading {
  font-family: 'Imager', serif;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #111;
}

.site-footer .nav-link {
  color: #111;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.site-footer .nav-link:hover {
  color: #666;
  text-decoration: none;
}

.footer-logo img {
  max-height: 90px;
  height: auto;
  width: auto;
}

.custom-logo-link img {
    max-height:150px;
}

.site-footer .small {
  font-size: 0.8rem;
  color: #444;
  margin-top: 2rem;
}


/* === AOS Animation Defaults === */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-out;
  will-change: opacity, transform;
}

/* When element enters view */
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* Specific effect: fade-up */
[data-aos="fade-up"] {
  transform: translateY(20px);
}
[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

/* fade-left */
[data-aos="fade-left"] {
  transform: translateX(-30px);
}
[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

/* fade-right */
[data-aos="fade-right"] {
  transform: translateX(30px);
}
[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

.pb5rem {
    padding-bottom:5rem;
}

/* Asymmetric large image positioning */
.asym-grid--large-left,
.asym-grid--large-right {
  grid-template-columns: 3fr 2fr;
}

.asym-grid--large-right {
  direction: rtl;
}
.asym-grid--large-right > * {
  direction: ltr;
}

/* Wrapping multiple stacked images */
.asym-img-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  direction: ltr; /* override inherited rtl */
}


.asym-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  align-self: flex-start; /* ensures no centering artifacts */
}


/* ABOUT ME */

.text-center img {
    width:400px;
}

/* About Me Page: Masonry Grid */
.masonry-gallery .masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

.masonry-gallery .masonry-grid img {
  width: 100%;
  margin-bottom: 1.5rem;
  break-inside: avoid;
  border-radius: 4px;
}

.about-me-heading {
  font-family: 'Imager', serif;
  font-size: 3rem;
  margin-bottom: 2rem;
}

.about-hero {
  flex-wrap: wrap;
}

.about-portrait {
  max-width: 260px;
}

.about-name h3 {
  font-family: 'ProximaNova', sans-serif;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.about-name p {
  font-family: 'ProximaNova', sans-serif;
  font-size: 0.95rem;
  color: #444;
}

.bio-section {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
    
#primary > section.hero-img.position-relative.aos-init.aos-animate > div > div > a:nth-child(3) {
    margin-top:15px!important;
}

  .bio-section {
    flex-direction: row;
    align-items: flex-start;
  }
}

.bio-img-wrapper {
  max-width: 320px;
  flex-shrink: 0;
}

.bio-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.bio-text {
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.7;
}

/* ========== MASONRY GRID STYLES ========== */
.masonry-grid {
  column-count: 2;
  column-gap: 1.5rem;
}

.masonry-grid img {
  width: 100%;
  margin-bottom: 1.5rem;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  break-inside: avoid;
}

/* ====== RESPONSIVE BREAKPOINTS ====== */
@media (max-width: 991.98px) {
  .masonry-grid {
    column-count: 1;
    column-gap: 1rem;
  }
}

@media (min-width: 1200px) {
  .masonry-grid {
    column-count: 3;
    column-gap: 2rem;
  }
}

/* ===== CF7: Two-Column Responsive Form Grid ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-group--full {
    grid-column: 1 / -1;
  }
}

.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: black;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-family: 'ProximaNova', sans-serif;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: #000;
  background-color: #fff;
  outline: none;
}

/* GYROTONIC */

/* Maintain 1:1 square for stacked image */
.square-box {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.square-box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Match the vertical image appearance */
.object-cover {
  object-fit: cover;
}

.py-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* ========== Accordion Styles ========== */

.accordion-item {
  font-family: 'ProximaNova', sans-serif;
  border: none !important;
  border-bottom: 1px solid #212529 !important;
  border-radius: 0 !important;
  padding: 15px;
}

.accordion-item:first-child {
  border-top: 1px solid #212529 !important;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1.05rem;
  color: #212529;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.accordion-header:hover {
  color: darkgray;
}

.accordion-header .icon {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(180deg);
}

/* Content Block */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px; /* Tweak if needed */
}

.accordion-content p {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
  color: #000;
  font-size: 0.95rem;
  line-height: 1.6;
  font-family:"Roboto";
}

.pricing-list {
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 0;
}

.pricing-list li {
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .pricing-list li {
    font-size: 1.05rem;
  }
}

@media (max-width: 767px) {
    
    
    #post-28 > div > div > div.elementor-element.elementor-element-4e0dc55.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
        background-image:url(/assets/img/landing-mobile.webp)!important;
    }
    
    .site-title {
        font-size:2rem;
        margin-top:15px;
    }
    
    .navbar-toggle {
        top:1.25rem;
        right:25px;
    }
    
    .hero-content-overlay {
        margin:0 25px;
    }
    
    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.7);
    padding-left: calc(var(--bs-gutter-x) * 0.7);
    margin-right: auto;
    margin-left: auto;
}

    img.w-100 {
        width:90%!important;
        margin-left:5%!important;
    }
    
    #primary > section.hero-img.position-relative.aos-init.aos-animate > img {
        width:100%!important;
        margin-left:0!important;
    }
    
    #primary > section.py-7.section-light.aos-init.aos-animate > div > div > div.bio-img-wrapper.text-center.mb-4.mb-md-0.flex-shrink-0 {
        max-width:100%!important;
    }
    
    nav#site-navigation ul {
  padding-inline-start: 0 !important;
  text-align: center;
}

nav#site-navigation ul li {
  display: block;
  text-align: center;
}

html, body {
    overflow-x:hidden!important;
}

#colophon > div > div.row > div:nth-child(1) {
    flex-wrap:nowrap;
    justify-content:flex-start;
}

#colophon > div > div.row > div:nth-child(1), #colophon > div > div.row > div:nth-child(2) {
    width:50%!important;
}

.hero-img img {
    width: 100%;
    padding: 3rem 6vw 1rem 6vw;
    display: block;
}

#gyrotonic > div > div.row.gx-5.align-items-start.pt-5, #eldoa > div > div.row.gx-5.align-items-start.pt-5 {
    margin-top:-90px;
}

#gyrotonic > div > div.row.gx-5.align-items-start.pt-5 > div.col-md-6.d-flex.flex-column.justify-content-start > div > a, #eldoa > div > div.row.gx-5.align-items-start.pt-5 > div.col-md-6.d-flex.flex-column.justify-content-start > div > a {
    display:none;
}

#eldoa > div > div.row.gx-5.align-items-start.pt-5 > div:nth-child(2) > img {
    padding:0!important;
}

#gyrokinesis {
    margin-top:-60px;
}

#primary > section:nth-child(6) > div > div > div.col-md-5.mt-4.mt-md-0 > h2 {
    text-align:center;
    margin-bottom:30px;
}

#primary > section:nth-child(6) > div > div > div.col-md-5.mt-4.mt-md-0 > h4 {
    margin-bottom:15px;
}

}

.video-wrapper {
  width: 100%;
  max-width: 100%;
}

.timesnew {
    font-family:"Times New Roman"!important;
    font-weight:bold!important;
    text-transform:uppercase;
}


/* Shared Gallery Grid Layout */
.paintings-block-gallery,
.prints-block,
.tote-bags-block-gallery {
    display: grid;
    gap: 20px;
}

/* Shared Grid Column Classes */
.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-cols-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* Responsive adjustments for both galleries */
@media (max-width: 1024px) {
    .grid-cols-4,
    .grid-cols-5,
    .grid-cols-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-cols-3,
    .grid-cols-4,
    .grid-cols-5,
    .grid-cols-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4,
    .grid-cols-5,
    .grid-cols-6 {
        grid-template-columns: 1fr !important;
    }
}

/* Shared Item Base Styling */
.paintings-block-gallery-item,
.prints-block-item,
.tote-bags-block-gallery-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prints-block-item {
    padding-bottom:75px;
}

.paintings-block-gallery-item:hover,
.prints-block-item:hover,
.tote-bags-block-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Shared Image Container Styling */
.paintings-block-gallery-item-image,
.prints-block-item-image,
.tote-bags-block-gallery-item-image {
    position: relative;
    overflow: hidden;
}

.paintings-block-gallery-item-image img,
.prints-block-item-image img,
.tote-bags-block-gallery-item-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.paintings-block-gallery-item:hover .paintings-block-gallery-item-image img,
.prints-block-item:hover .prints-block-item-image img,
.tote-bags-block-gallery-item:hover .tote-bags-block-gallery-item-image img {
    transform: scale(1.05);
}

/* Shared Text Content Styling */
.paintings-block-gallery-item-title,
.prints-block-item-title,
.tote-bags-block-gallery-item-title {
    font-size: 1.2em;
    font-weight: 600;
    margin: 15px 15px 10px 15px;
    color: #333;
}

.paintings-block-gallery-item-prix,
.prints-block-item-prix,
.tote-bags-block-gallery-item-prix {
    font-size: 1.1em;
    font-weight: 500;
    margin: 0 15px 15px 15px;
    color: #666;
}

.paintings-block-gallery-item-prix strong,
.prints-block-item-prix strong,
.tote-bags-block-gallery-item-prix strong {
    color: #333;
}

/* Paintings and Prints Gallery Specific Styling */
.paintings-block-gallery-item-dim,
.paintings-block-gallery-item-medium,
.paintings-block-gallery-item-inspiration,
.prints-block-item-dim,
.prints-block-item-medium,
.prints-block-item-inspiration {
    font-size: 0.95em;
    margin: 0 15px 8px 15px;
    color: #666;
    line-height: 1.4;
}

.paintings-block-gallery-item-dim strong,
.paintings-block-gallery-item-medium strong,
.paintings-block-gallery-item-inspiration strong,
.prints-block-item-dim strong,
.prints-block-item-medium strong,
.prints-block-item-inspiration strong {
    color: #333;
}

/* Shared Image Count Badge */
.paintings-gallery-count,
.prints-gallery-count,
.tote-bags-gallery-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    pointer-events: none;
    z-index: 2;
}

/* Shared Sold Overlay Styling */
.paintings-sold-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.paintings-sold-text {
    color: #ff0000;
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(-45deg);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 8px;
    opacity: 0.9;
}

/* Responsive sold overlay text */
@media (max-width: 768px) {
    .paintings-sold-text {
        font-size: 40px;
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .paintings-sold-text {
        font-size: 30px;
        letter-spacing: 2px;
    }
    
    .paintings-block-gallery-item {
        padding-bottom:40px;
    }
}

/* Ensure proper spacing for paintings and prints gallery extra fields */
.paintings-block-gallery-item .paintings-block-gallery-item-prix,
.prints-block-item .prints-block-item-prix {
    margin-bottom: 15px;
}

/* Prints Block - Two Dimensions/Prices Styling */

/* Dimension and Price Line Styling */
.prints-block-item-dim1,
.prints-block-item-dim2 {
    font-size: 0.95em;
    margin: 0 15px 8px 15px;
    color: #666;
    line-height: 1.4;
}

.prints-block-item-dim1 strong,
.prints-block-item-dim2 strong {
    color: #333;
}

/* Ensure proper spacing after the second dimension/price line */
.prints-block-item .prints-block-item-dim2 {
    margin-bottom: 15px;
}

/* Optional: Add visual separation between dimension/price pairs */
.prints-block-item-dim1 {
    padding-bottom: 5px;
}

/* Optional: Style for better visual hierarchy */
.prints-block-item-dim1,
.prints-block-item-dim2 {
    font-size: 0.95em;
    line-height: 1.6;
}

/* Optional: Responsive adjustments */
@media (max-width: 768px) {
    .prints-block-item-dim1,
    .prints-block-item-dim2 {
        font-size: 0.9em;
    }
} 

/* Override styles for Vendu tag - Clean top-left badge design */

/* Keep the overlay but adjust positioning for the text */
.paintings-sold-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.4) !important; /* Slightly lighter overlay */
    pointer-events: none !important;
    display: block !important; /* Change from flex to block */
    align-items: unset !important;
    justify-content: unset !important;
    z-index: 3 !important;
}

/* Create a clean badge-style tag in top-left corner */
.paintings-sold-text {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    color: #ffffff !important; /* White text */
    background-color: #000000 !important; /* Black background */
    font-size: 14px !important; /* Much smaller, readable size */
    font-weight: 600 !important; /* Semi-bold instead of bold */
    text-transform: capitalize !important; /* "Vendu" instead of "VENDU" */
    transform: none !important; /* Remove rotation */
    text-shadow: none !important; /* Remove text shadow */
    letter-spacing: 0.5px !important; /* Minimal letter spacing */
    opacity: 1 !important; /* Full opacity */
    padding: 6px 16px !important; /* Add padding for tag appearance */
    margin: 0 !important;
    border-bottom-right-radius: 4px !important; /* Slight rounded corner on bottom right */
    z-index: 10 !important; /* Ensure it's above the overlay */
}

/* Alternative rounded badge style (comment out the above .paintings-sold-text and uncomment this for a different look) */
/*
.paintings-sold-text {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    color: #ffffff !important;
    background-color: #000000 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: capitalize !important;
    transform: none !important;
    text-shadow: none !important;
    letter-spacing: 0.3px !important;
    opacity: 1 !important;
    padding: 5px 14px !important;
    margin: 0 !important;
    border-radius: 20px !important;
    z-index: 10 !important;
}
*/

/* Responsive adjustments - keep the badge consistent size */
@media (max-width: 768px) {
    .paintings-sold-text {
        font-size: 13px !important;
        padding: 5px 14px !important;
    }
}

@media (max-width: 480px) {
    .paintings-sold-text {
        font-size: 12px !important;
        padding: 4px 12px !important;
    }
}

/* Ensure the badge works well with image hover effects */
.paintings-block-gallery-item:hover .paintings-sold-overlay,
.prints-block-item:hover .paintings-sold-overlay,
.tote-bags-block-gallery-item:hover .paintings-sold-overlay {
    background: rgba(0,0,0,0.5) !important; /* Slightly darker on hover */
}

/* Optional: Add a subtle border to make the badge stand out more */
.paintings-sold-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-bottom-right-radius: 4px;
    pointer-events: none;
} 

.gradient-overlay {
  position: absolute;  /* or fixed/relative as needed */
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(
    to bottom,
    rgba(128, 128, 128, 0.5) 0%,
    rgba(128, 128, 128, 0.15) 100%
  );
  pointer-events: none; /* optional: allow clicks to pass through */
}

.footer-credit-wrapper {
    width:92vw;
    display:flex;
    justify-content:end;
    align-items:center;
    margin:5px 4vw;
}

@media (max-width:600px) {
    .footer-credit-wrapper {
        justify-content:center;
    }
}

.footer-credit {
  font-size: 0.9rem;
  color: #333; /* adjust as needed */
  text-align: center;
}

.footer-credit a {
  font-size: 0.85rem;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}


@media (min-width:760px) {
    .gradient-overlay {
        height:100%!important;
        background: linear-gradient(
    to bottom,
    rgba(128, 128, 128, 0.25) 0%,
    rgba(128, 128, 128, 0.15) 100%
  );
    }
}

/* Acheter Button Styles */
.paintings-acheter-button {
    position: absolute;
    bottom: 230px;
    right:25px;
    background: #3C4142;
    color: white !important;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    z-index: 2000;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



/* Responsive adjustments */
@media (max-width: 850px) {
    .paintings-acheter-button {
        font-size: 12px;
        padding: 6px 10px;
        bottom: 8px;
        right: 8px;
    }
    
    .paintings-block-gallery-item {
        padding-bottom:40px;
    }
}

@media (max-width: 480px) {
    .paintings-acheter-button {
        font-size: 11px;
        padding: 5px 8px;
        bottom: 5px;
        right: 5px;
        letter-spacing: 0.3px;
    }
}




/* TOTE BAGS ACHETER BUTTON */


.tote-bags-acheter-button {
    position: absolute;
    bottom: 20px;
    right:25px;
    background: #3C4142;
    color: white !important;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    z-index: 2000;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .tote-bags-acheter-button {
        font-size: 12px;
        padding: 6px 10px;
        bottom: 8px;
        right: 8px;
    }
}

@media (max-width: 480px) {
    .tote-bags-acheter-button {
        font-size: 11px;
        padding: 5px 8px;
        bottom: 5px;
        right: 5px;
        letter-spacing: 0.3px;
    }
}

/* PRINTS  ACHETER BUTTON */


.prints-acheter-button {
    position: absolute;
    bottom: 10px;
    right:25px;
    background: #3C4142;
    color: white !important;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    z-index: 2000;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .prints-acheter-button {
        font-size: 12px;
        padding: 6px 10px;
        bottom: 8px;
        right: 8px;
    }
}

@media (max-width: 480px) {
    .prints-acheter-button {
        font-size: 11px;
        padding: 5px 8px;
        bottom: 5px;
        right: 5px;
        letter-spacing: 0.3px;
    }
}



.paintings-block-gallery-item, .tote-bags-block-gallery-item, .prints-block-item {
    position:relative;
}

