/*--------------------------------
   Start Preloader & General Styling
----------------------------------*/

html {
  height: 100%;
}
.img-right {
  float: right;
  margin: 0 0 1rem 1rem;
}

.card {
  margin-bottom: 1.5rem;
}


.contact-form {
  max-width: 730px;
  margin: 2.5rem 0 1rem 0;       /* left aligned – no auto margins */
  font-family: inherit;
  text-align: left;
}

.form-group {
  margin-bottom: 1.6rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.required {
  color: #d32f2f;
  font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
textarea,
input[type="file"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

.name-group .name-fields {
  display: flex;
  gap: 1rem;
}

.name-fields input {
  flex: 1;
}

.file-upload small {
  display: block;
  margin-top: 0.4rem;
  color: #ccc;          /* slightly darker than #ccc for readability */
  font-size: 0.9rem;
}

#status {
  margin-top: 1rem;
  font-weight: 500;
  min-height: 1.4em;
}



.concert-item {
  display: flex;
  align-items: stretch;     /* better vertical alignment */
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;          /* becomes stacked on very narrow screens */
}

.concert-image {
  position: relative;
  flex-shrink: 0;
  width: 360px;             /* adjust to taste — 420–520px usually looks good */
  border-radius: 4px;
  overflow: hidden;         /* important – keeps children inside rounded corners */
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.concert-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;        /* helps if images have different ratios */
}

/* ── Date badge ──────────────────────────────────────────────── */
.date-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;              /* tune this value */
  height: 120px;
  background: rgb(15, 15, 15);
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-bottom-left-radius: 8px;   /* soft cut corner look */
  transition: all 0.5s;
}

.dark-mode .date-badge,
html.dark-mode .date-badge {     /* both common patterns */
    background: rgb(255, 255, 255);   /* darker blue */
    color: rgb(15, 15, 15);           /* slightly softer white */
    transition: all 0.5s;
}

.date-badge .month {
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
  transition: all 0.5s;
}


.date-badge .day {
  font-size: 2.4rem;
  line-height: 0.9;
}

/* Optional: subtle overlay behind badge (looks more premium) */
.concert-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 40%);
  pointer-events: none;
}

/* Info side */
.concert-info {
  flex: 1;
  padding: 8px 0;           /* a bit of breathing room */
}

.concert-info h3 {
  margin: 0 0 10px 0;
  font-size: 1.65rem;
  line-height: 1.15;
}

.concert-info p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
}

/* Example CSS rules for a button class */
/* Default (light mode) */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(15, 15, 15);     /* blue */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-align: center;
    font-weight: 700;
    transition: all 0.5s;
    text-decoration: none;
}

.btn:hover {
    background-color: #003675c4;
    color: white;
    text-decoration: none;
}

/* Dark mode */
.dark-mode .btn,
html.dark-mode .btn {     /* both common patterns */
    background-color: rgb(255, 255, 255);   /* darker blue */
    color: rgb(15, 15, 15);           /* slightly softer white */
    text-decoration: none;
}

.dark-mode .btn:hover,
html.dark-mode .btn:hover {
    background-color: rgba(126, 165, 255, 0.887);
    color: rgb(15, 15, 15);
    text-decoration: none;
}

.btn-collaborations {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(255, 255, 255, 0);     /* blue */
    color: rgb(15, 15, 15);
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-align: center;
    font-weight: 700;
    transition: all 0.5s;
}

.btn-collaborations:hover {
    background-color: #00000000;
    color: rgb(15, 15, 15, 0.5);
    text-decoration: none;
}

/* Dark mode */
.dark-mode .btn-collaborations,
html.dark-mode .btn-collaborations {     /* both common patterns */
    background-color: rgb(15, 15, 15, 0);   /* darker blue */
    color: rgb(255, 255, 255);           /* slightly softer white */
}

.dark-mode .btn-collaborations:hover,
html.dark-mode .btn-collaborations:hover {
    background-color: rgba(15, 1, 255, 0);
    color: rgb(255, 255, 255, 0.5);
    text-decoration: none;
}



.btn-spotify {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(33, 33, 33);     /* blue */
    color:  #1db954;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-align: center;
    font-weight: 700;
    transition: all 0.5s;
}

.btn-spotify:hover {
    background-color: rgb(151, 255, 154);
    color: rgb(15, 15, 15);
    text-decoration: none;
}

/* Dark mode */
.dark-mode .btn-spotify,
html.dark-mode .btn-spotify {     /* both common patterns */
    background-color: #1f8643;     /* blue */
    color:  rgb(33, 33, 33);           /* slightly softer white */
}

.dark-mode .btn-spotify:hover,
html.dark-mode .btn-spotify:hover {
    background-color: rgb(151, 255, 154);
    color: rgb(15, 15, 15);
    text-decoration: none;
}



.btn-youtube {
    display: inline-block;
    padding: 10px 20px;
    background-color: #cc181e;     /* blue */
    color:  #000000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
}

.btn-youtube:hover {
    background-color: #ff797d;
    color: rgb(15, 15, 15);
    text-decoration: none;
}

/* Dark mode */
.dark-mode .btn-youtube,
html.dark-mode .btn-youtube {     /* both common patterns */
    background-color: #cc181e;     /* blue */
    color:  #000000;        /* slightly softer white */
}

.dark-mode .btn-youtube:hover,
html.dark-mode .btn-youtube:hover {
    background-color: #ff797d;
    color: rgb(15, 15, 15);
    text-decoration: none;
}


.about-image-link img,
.about-me-images-wrapper img {
  max-width: 320px;          /* adjust to your taste — prevents huge images */
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;        /* optional – looks nicer */
}

.about-image-text {
  font-weight: 650;
  font-size: 1.4rem;         /* slightly smaller often looks better */
  color: black;
  margin-top: 0.75rem;
  line-height: 1.3;
}
.about-image-link .about-image-text {
  color: black;       /* makes text black */
  text-decoration: none; /* removes underline if any */
}
h1 {
  font-size: 2rem;
}

* {
  outline: none;
}

body {
  font-family: 'Rubik', sans-serif;
  height: 100%;
}

.no-js body {
  overflow: visible;
}

.all-container {
  opacity: 0;
  /* -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)'; */
  height: 100%;
}

.no-js .all-container {
  opacity: 1;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2b2c2f;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-js #preloader {
  display: none;
}

.square-spin > div {
  width: 80px;
  height: 80px;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

.scroll-up {
  position: fixed;
  right: 0px;
  bottom: 50px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s;
}

.scroll-up-show {
  opacity: 1;
  transform: translateY(0px);
}

.scroll-up:hover,
.scroll-up:focus {
  color: #000000;
}

.scroll-up.hvr-icon-up:before {
  content: '\f077';
  font-size: 15px;
  padding: 1px 4px;
  border-radius: 100%;
  border: 2px solid #999;
}

/*--------------------------------
   End Preloader & General Styling
----------------------------------*/

/*--------------------------------
  Start Header
----------------------------------*/

/* ========= Header ======= */

.header {
  background: #313131;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  height: 100%;
  min-height: 0px;
}

.header_biography {
  background: #313131;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;   /* optional — remove if it causes scroll jank */
  position: relative;
  height: 50vh;                   /* ← change to vh instead of % — almost always fixes hero issues */
  min-height: 300px;              /* safety net so it's never tiny on small screens */
  width: 100vw;                   /* force full viewport width */
  margin-left: calc(50% - 50vw);  /* center it by offsetting half viewport */
  margin-right: calc(50% - 50vw);
}

/* If the above margin trick breaks layout, use this alternative (more modern): */
.header_biography {
  /* ... same as above ... */
  position: relative;
  left: 50%;
  right: 50%;
  margin-top: -1vw;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  margin-bottom: 2rem;    
}
.header_concerts {
  background: #313131;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;   /* optional — remove if it causes scroll jank */
  position: relative;
  height: 50vh;                   /* ← change to vh instead of % — almost always fixes hero issues */
  min-height: 300px;              /* safety net so it's never tiny on small screens */
  width: 100vw;                   /* force full viewport width */
  margin-left: calc(50% - 50vw);  /* center it by offsetting half viewport */
  margin-right: calc(50% - 50vw);
}

/* If the above margin trick breaks layout, use this alternative (more modern): */
.header_concerts {
  /* ... same as above ... */
  position: relative;
  left: 50%;
  right: 50%;
  margin-top: -1vw;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  margin-bottom: 2rem;    
}
.header_compositions {
  background: #313131;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;   /* optional — remove if it causes scroll jank */
  position: relative;
  height: 50vh;                   /* ← change to vh instead of % — almost always fixes hero issues */
  min-height: 300px;              /* safety net so it's never tiny on small screens */
  width: 100vw;                   /* force full viewport width */
  margin-left: calc(50% - 50vw);  /* center it by offsetting half viewport */
  margin-right: calc(50% - 50vw);
}

/* If the above margin trick breaks layout, use this alternative (more modern): */
.header_compositions {
  /* ... same as above ... */
  position: relative;
  left: 50%;
  right: 50%;
  margin-top: -1vw;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  margin-bottom: 2rem;    
}
.header_gallery {
  background: #313131;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;   /* optional — remove if it causes scroll jank */
  position: relative;
  height: 50vh;                   /* ← change to vh instead of % — almost always fixes hero issues */
  min-height: 300px;              /* safety net so it's never tiny on small screens */
  width: 100vw;                   /* force full viewport width */
  margin-left: calc(50% - 50vw);  /* center it by offsetting half viewport */
  margin-right: calc(50% - 50vw);
}

/* If the above margin trick breaks layout, use this alternative (more modern): */
.header_gallery {
  /* ... same as above ... */
  position: relative;
  left: 50%;
  right: 50%;
  margin-top: -1vw;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  margin-bottom: 2rem;    
}
.header_videos {
  background: #313131;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;   /* optional — remove if it causes scroll jank */
  position: relative;
  height: 50vh;                   /* ← change to vh instead of % — almost always fixes hero issues */
  min-height: 300px;              /* safety net so it's never tiny on small screens */
  width: 100vw;                   /* force full viewport width */
  margin-left: calc(50% - 50vw);  /* center it by offsetting half viewport */
  margin-right: calc(50% - 50vw);
}

/* If the above margin trick breaks layout, use this alternative (more modern): */
.header_videos {
  /* ... same as above ... */
  position: relative;
  left: 50%;
  right: 50%;
  margin-top: -1vw;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  margin-bottom: 2rem;    
}
.header_press {
  background: #313131;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;   /* optional — remove if it causes scroll jank */
  position: relative;
  height: 50vh;                   /* ← change to vh instead of % — almost always fixes hero issues */
  min-height: 300px;              /* safety net so it's never tiny on small screens */
  width: 100vw;                   /* force full viewport width */
  margin-left: calc(50% - 50vw);  /* center it by offsetting half viewport */
  margin-right: calc(50% - 50vw);
}

/* If the above margin trick breaks layout, use this alternative (more modern): */
.header_press {
  /* ... same as above ... */
  position: relative;
  left: 50%;
  right: 50%;
  margin-top: -1vw;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  margin-bottom: 2rem;    
}
.header_repertoire {
  background: #313131;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;   /* optional — remove if it causes scroll jank */
  position: relative;
  height: 50vh;                   /* ← change to vh instead of % — almost always fixes hero issues */
  min-height: 300px;              /* safety net so it's never tiny on small screens */
  width: 100vw;                   /* force full viewport width */
  margin-left: calc(50% - 50vw);  /* center it by offsetting half viewport */
  margin-right: calc(50% - 50vw);
}

/* If the above margin trick breaks layout, use this alternative (more modern): */
.header_repertoire {
  /* ... same as above ... */
  position: relative;
  left: 50%;
  right: 50%;
  margin-top: -1vw;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  margin-bottom: 2rem;    
}
.header_collaborations {
  background: #313131;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;   /* optional — remove if it causes scroll jank */
  position: relative;
  height: 50vh;                   /* ← change to vh instead of % — almost always fixes hero issues */
  min-height: 300px;              /* safety net so it's never tiny on small screens */
  width: 100vw;                   /* force full viewport width */
  margin-left: calc(50% - 50vw);  /* center it by offsetting half viewport */
  margin-right: calc(50% - 50vw);
}

/* If the above margin trick breaks layout, use this alternative (more modern): */
.header_collaborations {
  /* ... same as above ... */
  position: relative;
  left: 50%;
  right: 50%;
  margin-top: -1vw;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  margin-bottom: 2rem;    
}
.header_contact {
  background: #313131;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;   /* optional — remove if it causes scroll jank */
  position: relative;
  height: 50vh;                   /* ← change to vh instead of % — almost always fixes hero issues */
  min-height: 300px;              /* safety net so it's never tiny on small screens */
  width: 100vw;                   /* force full viewport width */
  margin-left: calc(50% - 50vw);  /* center it by offsetting half viewport */
  margin-right: calc(50% - 50vw);
}

/* If the above margin trick breaks layout, use this alternative (more modern): */
.header_contact {
  /* ... same as above ... */
  position: relative;
  left: 50%;
  right: 50%;
  margin-top: -1vw;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  margin-bottom: 2rem;    
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.logo {
  position: absolute;
  z-index: 10;
  top: 2px;
  left: 40px;
}

.no-js .logo {
  display: none;
}

.logo img {
  width: 205px;
}

.owl-carousel.owl-full-width {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.owl-carousel.owl-full-width .slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.owl-carousel.owl-full-width .slider img {
  display: none;
}

.owl-full-width div {
  height: 100%;
}

.header .slider::after,
.header::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: rgba(50, 50, 50, 0.6);
  z-index: 9;
}


.slider-button {
  position: absolute;
  top: 49%;
  height: 35px;
  width: 35px;
  z-index: 10;
  border-radius: 100%;
  text-align: center;
  font-size: 29px;
  border: 2px solid #999;
  color: #999;
  opacity: 0;
  cursor: pointer;
  transition: all 0.5s;
}

.slider-prev-button {
  left: 40px;
  transform: translateX(15px);
}

.slider-next-button {
  right: 40px;
  transform: translateX(-15px);
}

.slider-button:hover {
  background: #999;
  color: #fff;
}

.header:hover .slider-button {
  opacity: 1;
  transform: translateX(0px);
}

.slider-prev-button .fa {
  position: relative;
  top: -6px;
  left: -2px;
}

.slider-next-button .fa {
  position: relative;
  top: -6px;
  left: 2px;
}

.head-container {
  display: table;
  position: absolute;
  top: 0;
  height: 100%;
  color: white;
  font-size: 30px;
  font-family: 'Rubik', sans-serif !important;
  font-weight: 300;
  z-index: 10;
}

.head-holder {
  display: table-cell;
  vertical-align: middle;
}

.introduction {
  font-size: 60px;
  font-weight: 600;
}

.typist-blink:after {
  content: ' ';
  display: inline-block;
}

.typist-blink > .selectedText {
  display: none;
}

.head-holder .hireMe {
  display: inline-block;
  background: transparent;
  margin-top: 18px;
  text-decoration: none;
  color: white;
  font-family: 'Rubik', sans-serif;
  font-size: 19px;
  font-weight: 500;
  border: 2px solid white;
  padding: 5px 18px;
  transition: all 0.2s;
}

.button {
  text-decoration: none;
  color: #4d4d4d;
  font-weight: 700;
  margin-top: 15px;
  display: inline-block;
  border: 2px solid #4d4d4d;
  padding: 7px 10px;
}

.button:hover {
  background: #fff;
  color: #fff !important;
  border: 2px solid #fff;
}

input + label {
  position: absolute;
  top: 40px;
  right: 40px;
  height: 20px;
  width: 34px;
  z-index: 12;
}

.no-js input + label {
  display: none;
}

#burger {
  display: none;
}

input + label span {
  position: absolute;
  width: 100%;
  height: 4px;
  top: 50%;
  margin-top: -1px;
  left: 0;
  display: block;
  background: #fff;
  transition: 0.5s;
}

.navigation-icon:hover .burger-menu span {
  background: #fff;
}

input + label span:first-child {
  top: 0px;
}

input + label span:last-child {
  top: 19px;
}

label:hover {
  cursor: pointer;
}

input:checked + label span {
  opacity: 0;
  top: 50%;
  background: #fff;
}

input:checked + label span:first-child {
  opacity: 1;
  transform: rotate(405deg);
}

input:checked + label span:last-child {
  opacity: 1;
  transform: rotate(-405deg);
}

/* ========= Full Screen Navigation ======= */

.fullscreen-nav-container {
  position: absolute;
  top: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: none;
  z-index: 11;
  color: #fff;
  font-family: 'Rubik', sans-serif;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.fullscreen-nav-container .container-fluid {
  height: 100%;
}

.fullscreen-nav-container::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.no-js .fullscreen-nav-container {
  display: none;
}

.full-nav-container {
  height: 100%;
}

.full-nav-holder {
  height: 100%;
  display: table;
  width: 100%;
  margin: auto;
}

.full-nav-content {
  display: table-cell;
  vertical-align: middle;
}

.name {
  text-align: center;
}

.first-name {
  font-size: 50px;
  font-weight: 400;
  padding-bottom: 20px;
}

.last-name {
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 42px;
}

.occupation {
  font-size: 18px;
  font-weight: 400;
  height: 30px;
  overflow: hidden;
}

.occupation span {
  display: inline-block;
  color: #fff;
  position: relative;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 22px;
  text-align: center;
  top: 0;
  left: 0;
}

@keyframes move {
  0% {
    top: 0px;
  }
  33% {
    top: -30px;
  }
  67% {
    top: -60px;
  }
}

.fulscreen-nav {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.fullscreen-nav-holder {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
}

.fullscreen-nav-holder div {
  margin: 0px 10px;
  transition: transform 0.2s;
}

.fullscreen-nav-holder div:hover {
  transform: translateY(5px);
}

.fullscreen-nav-holder a {
  color: white;
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}

.full-nav-icon-holder {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.full-nav-icons {
  display: inline-flex;
  flex-wrap: wrap;
  width: 300px;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.full-nav-icons div {
  display: inline-block;
}

.full-nav-icons a,
.to-top a {
  text-decoration: none;
  color: #313131;
  font-size: 17px;
}

.full-nav-icons .fa.fa-facebook-f {
  padding: 7px 10px;
}

.full-nav-icons .fa,
.to-top .fa {
  transition: all 0.3s;
  background: #fff;
  padding: 7px;
}

.full-nav-icons .fa:hover {
  transform: translateY(5px);
}


/*--------------------------------
  End Header
----------------------------------*/

/*--------------------------------
  Start Menu
----------------------------------*/

/* ========= 3.1 Desktop Menu ======= */

.menu {
  top: 0;
  left: 0;
  right: 0;
  display: block;
  z-index: 999;
}

.menu-fixer {
  position: relative;
}

.menu-fix {
  position: fixed;
}

.menu-container {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  height: 70px;
  /*background: #333;*/
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: background 1s;
  background-color: rgba(255, 255, 255, 0.05); /* White with 70% opacity */
  color: #fff;
  
  /* 2. Apply the blur effect to the background, not content */
  -webkit-backdrop-filter: blur(16px); /* For Safari support */
  backdrop-filter: blur(16px);        /* Standard syntax */
}

/* Scrolled / non-top state — becomes grey text */
.menu-container.scrolled,
.menu-container:has(.menu-item-transparent) {   /* adjust selector to match your JS-added class */
  color: #fff;           /* grey for text + icons + underline */
  background-color: rgba(0, 0, 0, 0.5); /* slightly more opaque — feel free to tweak */
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

/* Dark mode — always white, strongest rule */
body.dark-mode .menu-container,
body.dark-mode .menu-container.scrolled,
body.dark-mode .menu-container-transparent {
  color: #fff !important;
  background-color: rgba(0, 0, 0, 0.5) !important; /* or whatever you prefer in dark mode */
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.menu-normal {
    background-color: rgba(255, 255, 255, 0.05); /* White with 70% opacity */
  
  /* 2. Apply the blur effect to the background, not content */
  -webkit-backdrop-filter: blur(16px); /* For Safari support */
  backdrop-filter: blur(16px);        /* Standard syntax */
}

.menu-container-transparent {
  background: rgba(255, 255, 255, 0.05);

}

.desktop-menu-logo img {
  height: 60px;
  margin-left: 20px;
}


.menu-item {
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.menu-item a {
  text-decoration: none;
  color: inherit;           /* ← inherit from .menu-container */
  font-size: 17px;
  transition: color 5.6s ease;
}
.desktop-menu .hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 11px;
  height: 2.5px;
  background: #fff;
  transition: color 5.6s ease;
}
 
.desktop-menu .hvr-underline-from-left:hover:before,
.desktop-menu .hvr-underline-from-left:focus:before,
.desktop-menu .hvr-underline-from-left:active:before,
.desktop-menu .hvr-underline-from-left.active:before {
right: 0;
}
.desktop-menu .hvr-underline-from-left:before {
background: #fff;
transition: color 5.6s ease;
}
.desktop-menu .hvr-underline-from-left:before {
bottom: 11px;
height: 2.5px;
}
.desktop-menu .hvr-underline-from-left.dark:before {
background: #fff;
transition: color 5.6s ease;
}
.desktop-menu .hvr-underline-from-left.dark-mode:before {
background: #ffffff;
transition: color 5.6s ease;
}
/* Base underline appearance - white by default */
.desktop-menu .hvr-underline-from-left:before {
  background: #fff;
  bottom: 11px;
  height: 2.5px;
}

/* The animation/positioning part (you already had this correct) */
.desktop-menu .hvr-underline-from-left:hover:before,
.desktop-menu .hvr-underline-from-left:focus:before,
.desktop-menu .hvr-underline-from-left:active:before,
.desktop-menu .hvr-underline-from-left.active:before {
  right: 0;
}

/* ────────────────────────────────────────────────
   When scrolled → grey underline (light mode only)
   ──────────────────────────────────────────────── */
body:not(.dark) .scrolled .desktop-menu .hvr-underline-from-left:before,
/* or if your theme uses .dark-mode class instead of .dark */
body:not(.dark-mode) .scrolled .desktop-menu .hvr-underline-from-left:before {
  background: #fff;
  transition: color 5.6s ease;
}

/* ────────────────────────────────────────────────
   Dark mode → always force white underline
   (higher specificity to override the scrolled grey rule)
   ──────────────────────────────────────────────── */
.dark .desktop-menu .hvr-underline-from-left:before,
.dark-mode .desktop-menu .hvr-underline-from-left:before {
  background: #ffffff !important;
  transition: color 5.6s ease;
}

.desktop-menu {
  display: flex;
  width: 82%;
  justify-self: flex-end;
  height: 55px;
  align-items: center;
  justify-content: flex-start;
  margin-left: 30px;
}
body.dark-mode .menu-item a {
  color: #fff;
}

.menu-item-transparent.menu-item > a {
  color: #fff;
}
/* Icons */
.menu-icons {
  display: inline-flex;
  flex-wrap: wrap;
  width: 210px;
  justify-content: space-between;
  align-items: center;
  margin-top: 0px;
  margin-right: 20px;
  color: #fff;           /* ← inherit from parent / .menu-container */
  transition: color 5.6s ease;
}

.menu-icons a,
.to-top a {
  text-decoration: none;
  color: inherit;
  font-size: 17px;
}

.menu-icons .fa,
.to-top .fa {
  color: #fff;
  transition: transform 0.3s;
  background: transparent;
  padding: 7px;
  transition: color 5.6s ease;
}

.menu-icons .fa:hover {
  color: #fff;
  transform: translateY(-3px); /* slightly less aggressive movement — personal taste */
  transition: color 5.6s ease;
}

/* Dark mode icons (reinforcement) */
body.dark-mode .menu-icons,
body.dark-mode .menu-icons a,
body.dark-mode .menu-icons .fa {
  color: #fff !important;
  transition: color 5.6s ease;
}

.menu-link.active span {
  opacity: 0;
  top: 50%;
}

.menu-link.active span:first-child {
  opacity: 1;
  transform: rotate(405deg);
  top: 6px;
}

.menu-link.active span:last-child {
  opacity: 1;
  transform: rotate(-405deg);
  top: -2px;
}

.menu-slider {
  position: absolute;
  display: none;
  z-index: 999;
  top: 55px;
  left: 0;
  right: 0;
  background: #212121;
}

.menu-slider ul {
  list-style: none;
  padding: 0 17px;
  margin: 7px 0;
  text-align: center;
}

.menu-slider li {
  padding: 9px;
}

.menu-slider li a {
  font-size: 20px;
  font-weight: 500;
}

/*--------------------------------
   End Menu
----------------------------------*/
.footer {
  padding-top: 50px;
  padding-bottom: 70px;
  position: relative;
  z-index: 2;
}

.footer hr {
  border: 1px solid #fff;
  margin-bottom: 5px;
}

.footer-icons {
  display: inline-flex;
  flex-wrap: wrap;
  width: 210px;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.footer-icons div {
  display: inline-block;
}

.footer-icons a,
.to-top a {
  text-decoration: none;
  color: #ffffff;
  font-size: 17px;
}

.footer-icons .fa,
.to-top .fa {
  transition: all 0.3s;
  background: #fff;
  padding: 7px;
}

.footer-icons .fa:hover {
  transform: translateY(5px);
}

.no-js .to-top {
  position: fixed;
  right: 15px;
  bottom: 20px;
}

.to-top:hover {
  transform: translateY(-5px);
}

.credit {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
}

/*--------------------------------
  Start Header
----------------------------------*/


.hero-image {
  height: 100%;
  overflow: hidden;
}

.hero-image img {
  object-fit: cover;
  min-height: 100%;
  width: 100%;
}

.footer-icon:hover {
  color: #818aa3;
}







/* Modified style.css (added media queries for responsiveness, menu adjustments) */
/* Existing styles remain, additions below */

/* Hamburger styles */
.hamburger-menu {
  display: none;
  margin-right: auto;
}

.hamburger {
  display: block;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background: currentColor; /* Inherit from .menu-container */
  position: absolute;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  z-index: 998;
  text-align: center;
  padding: 20px 0;
  transition: all 1s;
}

/* Scrolled state — matches .menu-normal / scrolled desktop bar */
.mobile-menu.scrolled,
.mobile-menu.menu-normal {
  background-color: rgba(0, 0, 0, 0.5) !important;   /* or whatever color you use on desktop scrolled */
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: all 1s;

}

/* Make sure text stays white/readable in both states */
.mobile-menu,
.mobile-menu.scrolled,
.mobile-menu.menu-normal {
  color: #fff !important;
}

.mobile-menu-item a {
  color: #fff !important;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-item {
  margin: 15px 0;
}

.mobile-menu-item a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 10px 20px;
  transition: background 0.3s;
}

.mobile-menu-item a:hover {
  background: rgba(255,255,255,0.1);
}

.mobile-menu-icons {
  margin-top: 20px;
}

.menu-toggle:checked ~ .mobile-menu {
  display: block;
}

.menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* Dark mode for mobile menu */
.dark-mode .mobile-menu,
html.dark-mode .mobile-menu {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.dark-mode .mobile-menu-item a,
html.dark-mode .mobile-menu-item a {
  color: #fff;
}

/* Media queries for responsiveness */
@media (max-width: 991px) {
  .desktop-menu {
    display: none;
  }

  .footer,
  .footer-icons * {
    display: block !important;
  }
 
  .footer-icons li {
    margin: 0;
  }
  #contact {
    display: none; /* Hide social on mobile bar to save space; shown in dropdown */
  }

  .hamburger-menu {
    display: block;
  }

  .menu-container {
    justify-content: space-between;
    padding: 0 20px;
  }

  .desktop-menu-logo {
    margin-left: 0;
  }

  .menu-icons .fa-2x {
    font-size: 1.5em; /* Smaller icons on mobile */
  }

  /* Concert items stack vertically */
  .concert-item {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .concert-image {
    width: 100%;
    max-width: 100%;
  }

  .concert-info {
    text-align: center;
    padding: 0 20px;
  }

  /* About me adjustments */
  .about-me-holder {
    flex-direction: column;
  }

  .about-me-text {
    text-align: center;
    margin-bottom: 30px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .about-me-images-wrapper .col-auto {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Header height adjustment for mobile */
  .header {
    height: 70vh;
    min-height: 400px;
  }

  .introduction {
    font-size: 40px;
  }

  /* Blog/list adjustments */
  .blog .posts .post {
    text-align: center;
  }

  .post img {
    width: 100%;
  }


}

@media (min-width: 992px) {
  .hamburger-menu,
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .about-me-images-wrapper .col-auto {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .concert-info h2 {
    font-size: 1.5rem;
  }

  .date-badge {
    width: 80px;
    height: 80px;
  }

  .date-badge .month {
    font-size: 0.9rem;
  }

  .date-badge .day {
    font-size: 1.8rem;
  }
}

/* iPad-specific (portrait ~768px, landscape ~1024px) - fine-tuned stacking */
@media (min-width: 768px) and (max-width: 1024px) {
  .concert-item {
    flex-wrap: nowrap; /* Keep side-by-side if space allows */
  }

  .concert-image {
    width: 40%;
  }

  .about-me-images-wrapper .col-auto {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .about-me-text {
    flex: 0 0 auto;
    max-width: 95%;               /* or 520px, adjust to taste */
    padding-right: 10px;
    padding-left: 10px;
  }

  .about-me-images-wrapper {
    flex: 0 0 auto;
    max-width: 95%;
  }

  .about-me-holder {
    gap: 40px;                    /* better spacing between text & images */
  }
}

@media (max-width: 991px) {
  .about-me-text {
    margin-bottom: 40px;
    padding-right: 10px;
    padding-left: 10px;
  }
}

/* Make sure the menu bar is flex and items are spaced correctly */
.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;   /* burger left – logo center – icons right */
  padding: 0 1rem;                   /* nice breathing room on very narrow phones */
}

@media (max-width: 991px) {
  .hamburger-menu {
    margin-right: 1.2rem;
  }
  .social-group {
    gap: 1.2rem;
  }
  .menu-container {
    padding: 0 1.3rem;
  }
}
/* Make sure the menu bar is flex and items are spaced correctly */
.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;   /* burger left – logo center – icons right */
  padding: 0 1rem;                   /* nice breathing room on very narrow phones */
}

/* Show burger + icons on mobile, hide desktop menu */
@media (max-width: 991px) {
  .hamburger-menu {
    display: block;
  }

  .desktop-menu,
  .desktop-menu-logo + .menu-icons {   /* hide the old icons that were in #contact */
    display: none !important;
  }

  /* The icons we added directly in .menu-container stay visible */
  .menu-container .menu-icons {
    display: flex !important;
  }

  /* Slightly smaller icons on mobile if you want (optional) */
  .menu-icons .fa-2x {
    font-size: 2rem;
  }
}

/* Desktop: hide burger */
@media (min-width: 992px) {
  .hamburger-menu,
  .mobile-menu {
    display: none !important;
  }

  
}




/* Mobile – make noticeably smaller */
@media (max-width: 991px) {
.menu-container {
  background-color: rgba(0, 0, 0, 0.5); /* White with 70% opacity */
}



  .header_biography,
  .header_concerts,
  .header_compositions,
  .header_gallery,
  .header_videos,
  .header_press,
  .header_repertoire,
  .header_collaborations,
  .header_contact {
    height: 45dvh;        /* ← was 60vh — try 35–50vh depending on how small you want */
    min-height: 320px;   /* or 280–350px – prevents it from becoming tiny on small phones */
  }

  .introduction {
    font-size: 2.5rem;   /* optional: slightly smaller title to match reduced space */
  }
    .animated-text {
    font-size: 1.5rem;   /* optional: slightly smaller title to match reduced space */
  }
}
@media (max-width: 991px) {
  .header_biography {
    height: 50vh;              /* reduced from your previous 60vh suggestion — feels more balanced on phones */
    min-height: 340px;         /* still enough room for title + breathing space */
  }

  .hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .hero-image img {
    object-fit: cover;
    object-position: center 30%;   /* bias toward upper part if face/instrument is higher */
    width: 100%;
    height: 100%;
  }

  .row.content {
    height: 100%;
  }

  .head-container {
    display: flex;             /* better than table for mobile centering */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
  }

  .head-holder {
    width: 100%;
  }

  .introduction {
    font-size: 2.6rem;         /* was 40px ≈2.5rem; slightly larger feels premium */
    line-height: 1.12;
    margin: 0 auto;
    max-width: 90%;
    font-weight: 700;          /* bolder on mobile for impact */
    text-shadow: 0 2px 8px rgba(0,0,0,0.7); /* better readability over image */
  }

  /* Optional: subtle overlay for better text contrast on mobile */
  .header_biography::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.38); /* light dark overlay – adjust 0.32–0.45 */
    z-index: 2;
    pointer-events: none;
  }
}

/* ────────────────────────────────────────────────
   Mobile optimizations for Compositions page
   (only affects screens < 992px – desktop unchanged)
───────────────────────────────────────────────── */

@media (max-width: 991px) {

  /* Remove excessive spacers – they're too tall on mobile */
  div[style*="height: 200px"],
  div[style*="height: 350px"],
  div[style*="height: 25px"] {
    height: 40px !important;   /* small breathing room only */
  }

  /* Make album images larger, centered, no float */
  img[style*="float: left"],
  img[style*="width: 30%"] {
    float: none !important;
    display: block !important;
    width: 100% !important;          /* much bigger – adjust to 70-90% taste */
    max-width: 400px !important;    /* cap so not huge on tablets */
    margin: 1.5rem auto 1.5rem !important;  /* centered + good spacing */
    border-radius: 8px;             /* optional – nicer look */
    box-shadow: 0 6px 20px rgba(0,0,0,0.25); /* optional depth */
  }

  /* Improve section spacing & readability */
  h1, h2, h3 {
    margin: 2rem 0 1rem !important;
    text-align: left;
  }

  h1 {
    font-size: 2.2rem;           /* bigger impact on mobile */
  }

  h2 {
    font-size: 1.7rem;
  }

  /* Buttons – make them full-width or centered for easier taps */
  .btn-spotify,
  .btn-youtube {
    display: inline-block !important;
    width: auto;
    min-width: 180px;
    margin: 0.8rem 0.5rem !important;
    padding: 0.9rem 1.4rem !important;
    font-size: 1.05rem !important;
  }

  /* Center the whole composition block if needed */
  .body, main, .under-menu {
    padding: 1rem 5% !important;   /* more side breathing room */
  }

  p {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  /* If buttons are shortcode-generated and stacked poorly, force stack + center */
  [class*="btn-"] + [class*="btn-"] {
    margin-top: 0.6rem;
  }
}

/* ────────────────────────────────────────────────
   Mobile fixes for Collaborations page
   (desktop unchanged – only applies ≤991px)
───────────────────────────────────────────────── */

@media (max-width: 991px) {

  /* Remove huge spacer */
  div[style*="height: 100px"] {
    height: 40px !important;     /* small breathing room between rows */
  }

  /* Make flex containers stack vertically, full-width */
  div[style*="display: flex; gap: 20px; justify-content: center;"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2.5rem !important;      /* nice vertical spacing between cards */
    padding: 0 10px;
  }

  /* Each card wrapper: center content, no flex:1 needed */
  div[style*="flex: 1;"] {
    flex: none !important;
    width: 100% !important;
    max-width: 380px;            /* cap width so images don't get too big */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Images: responsive size, centered, no weird margins */
  a[href] img[style*="width: 350px"],
  img[style*="width: 350px"],
  img[style*="margin-left: 127.5px"],
  img[style*="margin-left: 128px"] {
    width: 90% !important;             /* fills most of small screens */
    max-width: 320px !important;       /* looks good on tablets too */
    height: auto !important;
    margin: 0 auto 1rem !important;    /* centered + space below for button */
    display: block !important;
    border-radius: 8px;                /* optional: softer look */
    box-shadow: 0 4px 16px rgba(0,0,0,0.15); /* optional depth */
  }

  /* Buttons: make them prominent and centered */
  .btn-collaborations {
    display: inline-block !important;
    width: auto;
    min-width: 220px;
    margin: 0.5rem 0 1.5rem !important;
    padding: 0.9rem 1.6rem !important;
    font-size: 1.05rem !important;
    text-align: center;
  }

  /* Extra breathing room around whole section */
  .under-menu,
  main,
  .body,
  .post-container {
    padding-left: 5% !important;
    padding-right: 5% !important;
    padding-bottom: 3rem !important;
  }
}

/* ────────────────────────────────────────────────
   Mobile improvements for Repertoire page
   (desktop unchanged – only ≤991px)
───────────────────────────────────────────────── */

@media (max-width: 991px) {

  /* Kill excessive spacers – too much empty space on phones */
  div[style*="height: 10px"],
  div[style*="height: 50px"] {
    height: 1.2rem !important;     /* modest breathing room */
    margin: 0 !important;
  }

  /* Images: make them large, centered, no float */
  img[style*="float: left"],
  img[style*="float: right"],
  img[style*="width: 27%"],
  img[style*="width: 35%"],
  img[style*="width: 36%"],
  img[style*="margin-right: 20px"],
  img[style*="margin-left: 20px"] {
    float: none !important;
    display: block !important;
    width: 88% !important;              /* fills screen nicely */
    max-width: 380px !important;        /* prevents huge on larger phones/tablets */
    margin: 1.8rem auto 1.4rem !important;  /* centered + good vertical spacing */
    border-radius: 10px;                /* softer, modern look */
    box-shadow: 0 6px 20px rgba(0,0,0,0.18); /* subtle depth */
  }

  /* Headings: better mobile scale & centering */
  h2, h3 {
    text-align: center !important;
    margin: 2.2rem 0 1.2rem !important;
    font-size: 1.65rem !important;     /* was probably too small on mobile */
  }

  h2 {
    font-size: 1.9rem !important;
  }

  /* List items: improve readability */
  ul, ol {
    padding-left: 1.4rem;
    margin: 1rem 0 2rem;
  }

  li {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.9rem;
  }

  /* Bold text in lists (e.g. **can also be performed…**) */
  strong {
    font-weight: 700;
    color: inherit;
  }

  /* Overall content container breathing room */
  .under-menu,
  .post-container,
  .body,
  main {
    padding: 1.5rem 6% 3rem !important;   /* more side padding on small screens */
  }

  p {
    font-size: 1.05rem;
    line-height: 1.68;
  }
}




/* ────────────────────────────────────────────────
   Mobile fixes for Contact page
   (desktop untouched – only applies ≤991px)
───────────────────────────────────────────────── */

@media (max-width: 991px) {

  /* Image: center it, make full-width-ish, remove float & negative margin */
  img[style*="float: right"],
  img[style*="width: 40.8%"],
  img[style*="margin-right: -50px"] {
    float: none !important;
    display: block !important;
    width: 90% !important;               /* prominent but not overflowing */
    max-width: 380px !important;         /* cap for larger phones/tablets */
    margin: 1.5rem auto 2rem !important; /* centered + good space below */
    border-radius: 10px;                 /* optional: nicer */
    box-shadow: 0 6px 20px rgba(0,0,0,0.18); /* optional depth */
  }

  /* Form container: more breathing room on sides/top */
  .contact-form,
  .under-menu .contact-form {
    padding: 0 5% 2rem !important;       /* generous side padding */
    max-width: 100% !important;
  }

  /* Name fields: stack vertically on small screens for better usability */
  .name-group .name-fields {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .name-fields input {
    width: 100% !important;
  }

  /* Labels & inputs: bigger touch targets */
  label {
    font-size: 1.1rem !important;
    margin-bottom: 0.6rem !important;
  }

  input[type="text"],
  input[type="email"],
  textarea,
  input[type="file"] {
    font-size: 1.05rem !important;
    padding: 0.9rem 1.1rem !important;
    border-radius: 6px !important;
  }

  textarea {
    min-height: 140px !important;        /* easier to type on mobile */
  }

  /* Button: full-width or large for easy tapping */
  .btn {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 1.5rem auto 1rem !important;
    padding: 1rem 1.5rem !important;
    font-size: 1.15rem !important;
    border-radius: 6px !important;
  }

  /* Status message & small text */
  #status,
  .file-upload small,
  .required {
    font-size: 1rem !important;
  }

  /* Headings & intro text */
  h5, .markdown h5 {                     /* your ##### becomes h5 */
    font-size: 1.4rem !important;
    text-align: left !important;
    margin: 1.8rem 0 1.2rem !important;
    line-height: 1.4;
  }

  p {
    font-size: 1.05rem !important;
    line-height: 1.65 !important;
  }
}

@media (max-width: 991px) {
  /* Hide the specific contact page hero image on mobile */
  img[style*="float: right"][style*="width: 40.8%"][style*="margin-right: -50px"] {
    display: none !important;
  }
}

@media (max-width: 768px) {

    .pswp__caption__center {
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }

}

@media (max-width: 768px) {
.menu-icons {
  margin-top: 15px;
}

    .pswp__caption {
      padding-top: 3rem;
        padding-bottom: 2.5rem;
    }

    .pswp__caption__center {
        padding-left: 1rem;
        padding-right: 1rem;
    }

}

