:root {
  /* CULORI */
  --primary-color: #231F1E;
  --white: #ffffff;
  --accent-color: #f39200;
  --black: #000000;

  /* FONTURI */
  --title-font: 'Bajern', serif;
  --text-font: 'LondonTwo', sans-serif;

  --radius: 14px;
  --gap: 24px;
}

@font-face {
  font-family: 'Bajern';
  src: url('RESURSE/FONTS/Bajern.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'LondonTwo';
  src: url('RESURSE/FONTS/LondonTwo.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}


  html {
    scroll-behavior: smooth;
  }
  

body {
  margin: 0;
  font-family: 'LondonTwo', sans-serif;
  
  color: var(--white);
}

header {
  background-color: var(--primary-color);
  padding: 20px 40px;
}

.logo img {
  width: 52.8px;
  height: 52.8px;
  position: absolute;
  left: 76.8px;
  top: 0px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-line {
  position: absolute;
  bottom: 0;
  left: 180px;
  width: 85%;
  border: none;
  border-top: 2px solid var(--white);
  margin: 0;
  top: 22px;
}

.hero {
  text-align: center;
  padding: 120px 20px;
  background-color: var(--primary-color);
}

.hero img {
  width: 380px; /* sau orice dimensiune dorești */
  max-width: 100%;
  display: block;
  margin: 0 auto; /* centrează imaginea pe orizontală */
  margin-top: -30px;
}

/*.hero-button {
  background-color: var(--accent-color); /* accent color 
  color: var(--white);
  font-family: 'LondonTwo', sans-serif;
  border: none;
  padding: 12px 24px;
  margin-top: 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #d87f00;
}*/

.hero-button {
  background: rgba(243, 146, 0, 0.9);
  /*-webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);*/
  color: var(--white);
  font-family: 'LondonTwo', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.2); /* soft light border */
  padding: 12px 24px;
  margin-top: 20px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* soft shadow */
}

.hero-button:hover {
  background: rgba(243, 146, 0, 0.7);
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

#hero {
  cursor: url('RESURSE/images/icons8-tattoo-32-white.cur'), auto;
}

/*------ PAGINA SERVICII ------*/

#servicii {
  cursor: url('RESURSE/images/icons8-tattoo-32-black.cur'), auto;
}

#servicii h2:hover{
  cursor: url('RESURSE/images/icons8-tattoo-32-white.cur'), auto;
}

#servicii .note:hover{
  cursor: url('RESURSE/images/icons8-tattoo-32-white.cur'), auto;
}

.servicii {
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  gap: 20px;
  font-family: 'LondonTwo', sans-serif;
  color: var(--primary-color);
  position: relative;
  }
  
  .side-banner img {
    width: 198.4px;
    height: 629px;
    display: flex;
    justify-content: center;
    position: absolute;
  }

  .left-banner img {
    left: 63.1px;
    top: 51px;
  }

  .right-banner img {
    right: 63.1px;
    bottom: 51px;
  }
    
  .pricing {
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
    display: flex;
    gap: 60px;
    color: var(--primary-color);
    font-family: 'LondonTwo', sans-serif;
    background-color: var(--white);
    padding: 40px;
    margin-top: -40px;
    margin-left: -250px;
  }
  
  .left-column,
  .right-column {
    width: 60%;
  }
  
  .right-column {
    margin-left: -200px;
    margin-top: 20px;
  }

  .left-column {
    margin-left: 130px;
    margin-top: -30px;
  }

  h2 {
    font-family: 'Bajern', serif;
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
    margin-left: 200px;
  }
  
  .category {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
    margin-left: 150px;
  }
  
  .category .icon {
    width: 65px;
    height: auto;
    margin-top: 10px;
  }
  
  .text-columns {
    flex: 1;
  }
  
  .text-columns h3 {
    font-family: 'LondonTwo', sans-serif;
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--primary-color);
  }
  
  .columns {
    display: flex;
    gap: 20px;
  }
  
  .columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 220px;
  }
  
  .columns li {
    font-family: 'LondonTwo', sans-serif;
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 2px;
  }

  .note {
    background-color: #231F1E;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'LondonTwo', sans-serif;
    width: fit-content;
    margin-top: 30px;
    margin-left: 160px;
  }

  .mobile-only {
    display: none;
  }
/*------------ Artisti ------------*/
  
#artisti {
  cursor: url('RESURSE/images/icons8-tattoo-32-white.cur'), auto;
}

.artisti {
  background-color: var(--primary-color);
  padding: 80px 40px;
}

.artisti-layout {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 40px;
  position: relative;
}

.artisti-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 200px;
  justify-content: center;
}

.artist-card {
  width: 300px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1); /* darker frosted glass */
  /*-webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);*/
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1); /* soft light border */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* soft dark shadow */
  transition: all 0.3s ease;
}

.artist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.artist-card img {
  width: 100%;
  border-radius: 12px;
}

.artist-card h3 {
  font-family: 'Bajern', serif;
  font-size: 60px;
  margin-top: 5px;
  color: var(--white);
}

.artist-card .rol {
  font-family: 'LondonTwo', sans-serif;
  font-size: 22px;
  color: var(--accent-color);
  margin-top: -50px;
}

.contact-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 5px;
}

.contact-line i {
  font-size: 20px;
  color: var(--accent-color);
}

.artist-card a {
  color: var(--white);
  text-decoration: none;
  font-weight: lighter;
}

.artist-card a:hover {
  text-decoration: underline;
}

.artisti-banner {
  width: 100%;
  overflow: hidden;
  background-color: var(--primary-color);
  border-top: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  margin-bottom: 60px;
  margin-top: -40px;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  animation: scrollInfinite 25s linear infinite;
  will-change: transform;
}

.scrolling-text span {
  font-family: 'Bajern', serif;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 4px;
  white-space: nowrap;
  padding-right: 50px;
  line-height: 1;
}

/* Animație fluentă și fără restart */
@keyframes scrollInfinite {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*------------ Portofoliu ---------*/

#portfolio {
  cursor: url('RESURSE/images/icons8-tattoo-32-black.cur'), auto;
}

.portfolio {
  background-color: var(--white);
}

.gallery {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
}

/* toate imaginile sunt opace când .dimmed e activ */
.gallery.dimmed .gallery-item {
  opacity: 0.4;
}

/* imaginea activă e clară și iese în față */
.gallery.dimmed .gallery-item.active {
  opacity: 1;
  transform: scale(1.1);
  z-index: 2;
}

.gallery.dimmed .gallery-item.active img {
  border: 1.5px solid var(--primary-color); /* culoarea accentului tău */
  border-radius: 70px;
  transition: transform 0.3s ease, opacity 0.3s ease, border 0.3s ease;
}

.gallery img {
  width: 350px;
  height: 350px;
  border-radius: 70px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}


/*----------- Contact -------------*/

#contact {
  cursor: url('RESURSE/images/icons8-tattoo-32-white.cur'), auto;
}

#contact img:hover {
  cursor: url('RESURSE/images/icons8-tattoo-32-black.cur'), auto;
}

.contact-section {
  background: var(--primary-color);
  color: var(--white);
  padding: 40px 20px;
  font-family: 'LondonTwo', sans-serif;
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: -70px;
}

.section-title {
  font-family: 'Bajern', serif;
  font-size: 80px;
  color: var(--white);
  text-align: end;
  margin-bottom: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 350px; /* Adăugat spațiu între coloane */
  align-items: start;
}

/* Coloana 1: Locație */
.map-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-column .info-box {
  padding: 10px !important;
}

.contact-address {
  font-size: 16px;
}

.contact-address a {
  text-decoration: none;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-address i {
  color: var(--accent-color);
}

.map-box {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.map-image {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

/* Coloana 2: Contact + Program */
.details-column {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin-top: 40px;
}

/* Container contact */
/*.info-box {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--gap);
  border-radius: var(--radius);
}*/

.info-box {
  background: rgba(255, 255, 255, 0.1); /* lighter frosted glass */
  /*-webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);*/
  padding: var(--gap);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1); /* soft light border */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* soft dark shadow */
  transition: all 0.3s ease;
}

/* Stiluri liste contacte */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
}

.contact-list a {
  color: var(--white);
  text-decoration: none;
  font-weight: lighter;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-list i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

/* Container program */
.info-box h3 {
  font-weight: lighter;
}

.hours {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: lighter;
}

.hours strong {
  color: var(--accent-color);
}

/*------------- Footer ----------*/

#footer {
  cursor: url('RESURSE/images/icons8-tattoo-32-white.cur'), auto;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--primary-color);
  font-size: 14px;
  color: var(--white);
}

.footer-banner {
  width: 100%;
  overflow: hidden;
  background-color: var(--primary-color);
  border-top: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  margin-bottom: 60px;
  margin-top: -40px;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  animation: scrollInfinite 25s linear infinite;
  will-change: transform;
}

.scrolling-text span {
  display: inline-block;
  font-family: 'Bajern', serif;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 4px;
  white-space: nowrap;
  padding-right: 50px;
  line-height: 1; /* elimină spațiul vertical */
}

/* Animație fluentă și fără restart */
@keyframes scrollInfinite {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.category-overlay, .zoomed-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.3);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 9999;
  pointer-events: auto;
  transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}

/*------------ Mobil -----------*/

/* Mobile layout (up to 600px) */
@media (max-width: 600px) {
  .navbar {
    display: none;
  }
  .hero img {
    width: 80%;
  }
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 0 8px;
  }
  .gallery-item {
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  /*.gallery img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
  }*/
  .gallery.dimmed .gallery-item.active img {
    border: 1.5px solid var(--primary-color);
    border-radius: 30px;
    transition: transform 0.3s ease, opacity 0.3s ease, border 0.3s ease;
    pointer-events: auto;
    position: relative;
  }

  /*.zoomed-image {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90vw;
    height: 90vw;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 9999;
    border-radius: 80px;
    border: 2px solid var(--primary-color);
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.4s ease-out forwards;
  }*/
  
  @keyframes zoomIn {
    0% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.7);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(0.9);
    }
  }

  /*.zoomed-image img {
    width: 100%;
    height: 100%;
    border-radius: 80px;
  }  */

  .gallery img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08); /* slight frosted background */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); /* soft shadow */
    /*-webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);*/
    object-fit: cover;
    transition: all 0.4s ease;
  }
  
  .zoomed-image {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90vw;
    height: 90vw;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 9999;
    border-radius: 80px;
    background: rgba(255, 255, 255, 0.1); /* light glass background */
    border: 2px solid rgba(255, 255, 255, 0.25); /* soft white border */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); /* deeper soft shadow */
    /*-webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);*/
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.4s ease-out forwards;
  }
  
  .zoomed-image img {
    width: 100%;
    height: 100%;
    border-radius: 80px;
    object-fit: cover;
  }  

  /*.zoomed-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4); /* 40% dark 
    z-index: 9998;
    transition: opacity 0.3s ease;
  }  */

  .zoomed-image.zoom-in,
.expanded-clone.zoom-in {
  animation: zoomIn 0.3s ease forwards;
}

.zoomed-overlay.fade-in,
.category-overlay.fade-in {
  animation: fadeIn 0.3s ease forwards;
}

.zoomed-image.closing,
.expanded-clone.closing {
  animation: zoomOut 0.3s ease forwards;
}

.zoomed-overlay.closing,
.category-overlay.closing {
  animation: fadeOut 0.3s ease forwards;
}

/* Static background */
.category-overlay,
.zoomed-overlay {
  background: rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.9);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

  .info-box {
    padding: 16px;
    font-size: 14px;
    width: 80%;
    max-width: 90vw;
  }
  .contact-list li {
    font-size: 14px;
  }
  .hours {
    font-size: 14px;
  }
  .section-title {
    font-size: 40px;
  }
  .contact-grid {
    gap: 24px;
    align-items: center;
  }
  .map-box iframe,
  .map-image {
    width: 100%;
    max-width: 90vw;
    height: auto;
  }

  .artisti-grid {
    gap: 40px;
  }
  
  .pricing {
    display: none;
  }
  
  .pricing-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 8px;
  }

  .pricing-mobile-wrapper {
    background: #EEEEEE; /* transparent light gray */
    border-radius: 24px;
    padding: 10px;
    margin: 20px 12px;
  }  

  .pricing-columns {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    width: fit-content;
  }

  .pricing-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
  }

  .category {
    width: 130px;
    height: 130px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    /*-webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);*/
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    padding: 0;
    margin: 0;
  }  

  .category .icon {
    width: 60px;
    height: auto;
    margin-top: -10px;
    margin-bottom: -60px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .category h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    text-align: center;
    width: 100%;
  }

  .category .text-columns {
    display: none;
    opacity: 0;
    padding-top: 12px;
    transition: all 0.3s ease;
  }

  .category.expanded {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 340px;
    height: auto;
    background: rgba(255, 255, 255, 0.12); /* slightly stronger but still soft */
    border-radius: 24px; /* rounder corners when expanded */
    border: 1px solid rgba(255, 255, 255, 0.25); /* same soft border */
    /*-webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);*/
    padding: 24px 16px;
    z-index: 1000;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12); /* bigger, softer shadow */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.4s ease;
  }  

  .category.expanded h3 {
    margin-top: 30px;
    font-size: 18px;
  }

  .category.expanded .icon {
    width: 100px;
    height: auto;
  }

  .category.expanded .text-columns li {
    display: block;
    opacity: 1;
    color: var(--primary-color);
    font-size: 16px;
    text-align: left;
  }

  .pricing-note {
    font-size: 12px;
    color: #ffffff; /* white text */
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8); /* black but semi-transparent */
    /*-webkit-backdrop-filter: blur(10px); /* glassy blur 
    backdrop-filter: blur(10px);*/
    border: 1px solid rgba(255, 255, 255, 0.15); /* soft white-transparent border */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* soft black shadow */
    border-radius: 20px;
    padding: 10px 20px;
    margin-top: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  

  .side-banner img {
    display: none;
  }

  .category.expanded-clone {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    max-width: 340px;
    height: auto;
    background: rgba(245, 245, 245, 0.9);
    border-radius: 20px;
    padding: 24px 16px;
    z-index: 1000;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    display: flex;
  }

  .category.expanded-clone .text-columns {
    display: block;
    opacity: 1;
    color: var(--primary-color);
    font-size: 13px;
    text-align: center;
  }

  body.category-expanded .pricing-mobile {
    opacity: 0.4;
  }

  .category-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 999;
  }

  .category.expanded,
.category.expanded-clone {
  animation: scaleIn 0.3s ease-out forwards;
}

.category.expanded-clone.closing {
  animation: scaleOut 0.25s ease-in forwards;
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes scaleOut {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
  }
}
  
.contact-section .section-title {
  margin-left: 0px;
}

.mobile-only {
  display: block !important;
}

/*.floating-navbar {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  width: 90vw;
  max-width: 310px;
  background: rgba(35, 31, 30, 0.75); /* slightly transparent 
  -webkit-backdrop-filter: blur(10px);        /* THIS is the blur 
  backdrop-filter: blur(10px); /* for Safari 
  padding: 12px 24px;
  border-radius: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  justify-content: center;
}*/

.floating-navbar {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 310px;
  background: rgba(0, 0, 0, 0.5); /* dark translucent background */
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  justify-content: center;
}

.floating-navbar.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/*.floating-navbar.white-bg {
  background: rgba(255, 255, 255, 0.75) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}*/

.floating-navbar.white-bg {
  background: rgba(255, 255, 255, 0.5); /* softer white glass */
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* still a bit of shadow */
  transition: all 0.4s ease, transform 0.4s ease, background 0.3s ease;
}

/*.floating-navbar.white-bg .floating-menu a {
  color: var(--primary-color);
  background: #EEEEEE;
}

.floating-navbar.white-bg .floating-menu a:hover {
  color: var(--primary-color);
  background-color: var(--accent-color);
}*/

.floating-navbar.white-bg .floating-menu a {
  /*background: transparent; /* ❗ absolutely no background initially */ 
  background: rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: var(--primary-color); /* dark text */
  transition: all 0.3s ease;
}

.floating-navbar.white-bg .floating-menu a:hover {
  background: rgba(0, 0, 0, 0.1); /* on hover, slight darkening */
  transform: scale(1.05);
}


.floating-navbar .floating-logo {
  cursor: pointer;
}

.floating-logo img {
  width: 42px;
  height: 42px;
  display: block;
  margin: 0 auto;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.floating-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-top: 12px;
  opacity: 0;
  max-height: 0;
  overflow: visible;
  transition: opacity 1s ease, max-height 1s ease;
  animation: menuOut 1s ease forwards;
}

.floating-navbar.open .floating-menu {
  opacity: 1;
  max-height: 200px;
  animation: menuIn 0.3s ease forwards;
}

@keyframes menuIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.floating-menu a {
  display: block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.floating-menu a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.floating-navbar.hidden-during-expand {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateX(-50%) translateY(-20px) !important;
}

.scrolling-text span {
  font-size: 14px; /* or 16px if you prefer slightly bigger */
  letter-spacing: 2px; /* tighter spacing for mobile */
  padding-right: 30px; /* reduce padding so it loops more smoothly */
}

}

/* iPad Air (820px) */
@media (max-width: 820px) {
  .pricing {
    flex-direction: column;
    gap: 32px;
    padding: 24px;
  }
  .left-column,
  .right-column {
    width: 100%;
    margin: 0 auto;
  }
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 0 16px;
  }
  .contact-grid {
    flex-direction: column;
    display: flex;
    gap: 32px;
  }
  .map-column,
  .details-column {
    width: 100%;
  }
  h2,
  .section-title {
    font-size: 52px;
    text-align: left;
    width: 100%;
  }
  .side-banner img {
    display: none !important;
  }
  .category {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 16px;
  }
  .text-columns h3,
  .columns li,
  .note,
  .tattoo-note,
  .category p {
    font-size: 16px !important;
    width: 100%;
  }
  .header-line {
    display: none;
  }
}

/* iPad Pro (1024px) */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .category {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
  h2,
  .section-title {
    font-size: 56px;
    text-align: left;
    width: 100%;
  }
  .side-banner img {
    display: none !important;
  }
  .servicii {
    justify-content: center;
  }
}

@media (min-width: 1100px) and (max-width: 1400px) {
  .side-banner img {
    display: none !important;
  }
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
}

/* Global Mobile Tweaks */
@media (max-width: 600px) {
  .navbar {
    padding: 12px 16px;
  }
  .logo img {
    left: 16px;
    width: 40px;
    height: 40px;
  }
  .artist-card {
    width: 90%;
  }
  .columns ul {
    width: 100%;
    padding: 0;
  }
  .note,
  .tattoo-note {
    font-size: 12px;
  }
  .hero-button {
    font-size: 14px;
  }
  h2,
  .section-title {
    font-size: 46px;
    text-align: left;
    width: 100%;
  }
  .header-line {
    display: none;
  }
}








