/* ~FONT & STRUCTURE~ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', Arial, sans-serif;
  background-color: #fcfcfc;
  color: #111;
  font-weight: 300;
  word-spacing: 0px;
  color: #333;
  margin: 0;
  padding: 0;
  font-size: var(--base-font-size);
  font-weight: bold;
}

.italics {
  font-style: italic;
}

.smallcursivefont {
  font-family: 'Dancing Script', cursive;
  font-size: calc(var(--base-font-size) * 1.4);
}

.largecursivefont {
  font-family: 'Dancing Script', cursive;
  font-size: calc(var(--base-font-size) * 2.2);
  line-height: 0.1;
}

.section-white, .section-grey {
  width: 100%;
  padding: 60px 0;
}

.section-white {
  background-color: #ffffff;
}

.section-grey {
  background-color: #f2f2f2;
}

.section-white .w3-content,
.section-grey .w3-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px; /*  horizontal padding */
}

.footer {
  background-color: #faf8f4;
  border-top: 3px solid #d94d4d;
  padding: 25px 20px;
  text-align: center;
  color: #4b3e39;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer .footer-text p {
  margin: 6px 0;
  font-size: var(--base-font-size, 1rem);
  letter-spacing: 0.4px;
}

.footer p:first-child {
  font-size: calc(var(--base-font-size, 1rem) * 0.9);
  opacity: 0.75;
}

/* adjustable font size */
.font-size-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.font-size-controls button {
  font-size: 16px;
  padding: 6px 10px;
  border: 2px solid #d94d4d;
  border-radius: 6px;
  background-color: #faf8f4;
  cursor: pointer;
  transition: background 0.3s;
}

.font-size-controls button.selected {
  background-color: #d94d4d;
  color: white;
  border-color: #990000;
}

.font-size-controls button:hover {
  background-color: #f0e5de;
}

:root {
  --base-font-size: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 6px;
  word-spacing: 1px;
  color: #c80000;
  margin-top: 0;
}

h1 {
  font-size: calc(var(--base-font-size) * 2);
}

h2 {
  font-size: calc(var(--base-font-size) * 1.5);
}

p, li, a {
  font-size: var(--base-font-size);
}

.nav-btn.smaller {
  font-size: calc(var(--base-font-size) * 0.9);
}

@media (max-width: 375px) {
  :root {
    --base-font-size: 14px;
  }
}

.facebook-icon {
  width: 24px;
  height: 23px;
}

.social-link {
  padding: 6px 15px !important; /* reduces extra button space */
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-icon {
  width: 26px;
  height: 26px;
  transform: translateY(1px);
}

.nav-btn.book-now {
  background-color: #c80000; /* bright red/pink */
  color: white;
  font-weight: bold;
  border-radius: 12px;
  padding: 8px 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 2s infinite; 
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.nav-btn.book-now:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}


/* ~CURSOR HALO~ */
.cursor-halo {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 165, 0, 0.8);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 
    0 0 6px rgba(255, 165, 0, 0.6),
    0 0 12px rgba(255, 200, 100, 0.5),
    0 0 24px rgba(255, 200, 100, 0.3);
  backdrop-filter: blur(1px);
}

@media (hover: none) and (pointer: coarse) {
  #cursorGlow {
    display: none !important;
  }
}

/* ~ENLARGING BUTTONS~ */
.enquire-button {
  background-color: #faf8f4;
  border: 2px solid #d94d4d;
  border-radius: 5px;
  padding: 16px;
  display: inline-block; /* helps size/layout */
  text-align: center;
  text-decoration: none; /* removes underline if it's a link */
  color: #d94d4d; 
  transition: transform 0.2s ease, background-color 0.3s ease;
  font-family: 'Dancing Script', cursive;
  font-size: calc(var(--base-font-size) * 1);
}

.enquire-button:hover {
  transform: scale(1.05); /* zoom on hover */
  background-color: #f7d6d6; /* light hover effect */
}


/* ~TABLE~ */
.social-media-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  margin-top: 20px;
}

.social-media-grid div {
  flex: 1 1 120px;
  text-align: center;
}

.social-icon {
  width: 80%;
  max-width: 100px;
  height: auto;
}

/* zoom effect */
.zoom-img {
  transition: transform 0.3s ease;
}

.zoom-img:hover {
  transform: scale(1.1);
}

/* stacks icons vertically for smaller screens */
@media (max-width: 400px) {
  .social-media-grid {
    flex-direction: column;
    align-items: center;
  }

  .social-media-grid div {
    width: 100%;
  }
}


/* ~SETTINGS POPUP~ */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  position: relative;
  background: white;
  padding: 20px 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 80%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #555;
  cursor: pointer;
}


/* ~PARALLAX FEATURE~ */
.parallaxservicespage {
  background-image: url("main photos/image000000.jpg");
  min-height: 100vh;
    /* parallax */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: end;
}

.parallaxgallerypage{
  background-image: url("main photos/studiophoto.jpg");
  min-height: 100vh;
  /* parallax */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: end;
}

.parallaxhomepage {
  position: relative;
  background-image: url("main photos/IMG_3731.jpeg");
  min-height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: rgb(0, 0, 0);
  font-family: sans-serif;
}

.parallaxhomepage .parallaxx-text {
  position: absolute;

  bottom: 60px;   /* distance from bottom */
  right: 1%;      /* distance from right */

  width: 390px;
  max-width: 90%;

  margin: 0;
}

.parallaxx-text {
  background: rgba(255, 249, 243, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px 45px;
  border: 3px solid #d94d4d;
  border-radius: 12px;
  width: 390px;
  max-width: 90%;
  box-sizing: border-box;
  margin-bottom: 60px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  word-wrap: break-word;

  /* animation */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1.2s ease;
}

.parallaxx-text a {
  color: #c80000; /* or another color from your theme */
  text-decoration-color: #c80000; /* makes the underline match the text */
}

#home-page .parallaxx-text {
  margin-right: 5%;
  margin-bottom: 1.1%;
}

.parallaxx-text.reveal {
  opacity: 1;
  transform: translateY(0);
}

.parallaxx-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  z-index: 0;
}

.parallaxx-text.reveal::before {
  animation: shimmer 1.5s ease-out;
}

@keyframes shimmer {
  0% { left: -70%; }
  100% { left: 130%; }
}

@media (max-width: 480px) {
  .parallaxservicespage {
    background-position-x: 20%;
    background-position-y: center;
  }
}

@media (max-width: 480px) {
  .parallaxgallerypage {
    background-position-x: 55%;
    background-position-y: center;
  }
}

@media screen and (max-width: 480px) {
  .parallaxhomepage {
    justify-content: center;
    align-items: flex-end;
    padding: 20px;
  }

  .parallaxhomepage .parallaxx-text {
    margin: 0 auto 10px auto; /* center horizontally + spacing from bottom */
    text-align: center;
  }
}

@supports (-webkit-touch-callout: none) {
  .parallaxhomepage,
  .parallaxservicespage,
  .parallaxgallerypage {
    background-attachment: scroll !important;
  }
}


/* ~FADE IN EFFECT~ */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.3s ease-out, transform 1.3s ease-out;
  will-change: opacity, transform;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}


/* ~ABOUT SECTION~ */
.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1 1 500px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-image {
  flex: 1 1 300px;
  text-align: center;
}

.about-photo {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* ~INTRO VIDEO~ */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ~TESTIMONIAL CAROUSEL~ */
.testimonial-carousel {
  position: relative;
  height: 430px;
  overflow: hidden;
}

/* testimonal card base */
.testimonial-carousel .container {
  position: absolute;
  top: 0;
  width: 100%;

  /* card styling */
  background: linear-gradient(145deg, faf8f4, #c80000);
  border: 2px solid #d94d4d;
  border-radius: 14px;
  padding: 22px;
  margin: 16px 0;

  /* Layout */
  position: absolute;
  overflow: hidden;

  /* animation base */
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  cursor: pointer;
}

/* hover effect */
.testimonial-carousel .container:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 0 0 1px rgba(216,157,139,0.3),
    0 10px 30px rgba(216,157,139,0.35);
}

/* mobile tap feedback */
.testimonial-carousel .container.tap-active {
  border: 2px solid #ff8205; /* Or your brand color */
  transform: scale(1.02);
  transition: transform 0.3s ease;
  z-index: 10;
}

/* slide animations */
.testimonial-carousel .container.animate-in {
  animation: slideIn 1s ease forwards;
}

.testimonial-carousel .container.animate-out {
  animation: slideOut 1s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

/* typography hierachy */
.testimonial-name {
  font-weight: 700;
  font-size: 1.2rem;
  color: #c80000;
  margin-bottom: 4px;
  transition: letter-spacing 0.3s ease;
}

.container:hover .testimonial-name {
  letter-spacing: 1px;
}

.testimonial-meta {
  font-size: 0.9rem;
  color: #8c7b73;
  margin-bottom: 10px;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
  color: #4a4a4a;
}

/* star ratings */
.testimonial-stars {
  color: #f4b400;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

/* avatar image */
.container img {
  float: left;
  margin-right: 20px;
  border-radius: 50%;
  border: 3px solid #c80000;
  transition: transform 0.4s ease;
}

.container:hover img {
  transform: scale(1.08);
}

/* quote marks */
.container::after {
  content: "❝";
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 4rem;
  color: rgba(216,157,139,0.25);
  font-family: serif;
}

/* shimmer effect */
.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 100%
  );

  transform: skewX(-20deg);
}

.container.reveal::before {
  animation: shimmer 1.5s ease-out;
}

@keyframes shimmer {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* mobile */
@media (max-width: 500px) {

  .container {
    text-align: center;
  }

  .container img {
    float: none;
    margin: auto;
    display: block;
    margin-bottom: 10px;
  }
}


/* ~FEATURE CARDS~ */
/* four columns side by side */
.column {
  float: left;
  width: 25%;
  padding: 0 5px;
}

.card {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;

}

.card .fa {
  font-size: 50px; 
  color: #616161;
  margin-bottom: 10px;
}

.card.reveal {
opacity: 1;
transform: translateY(0);
}

.row {margin: 0 -5px;}

.row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
  background-color: #faf8f4;
  border: 2px solid #c80000;
  color: #444;
}

.fa {font-size:50px;}


/* ~BOOKING SYSTEM~ */
.booking-frame {
  border: 4px solid #d94d4d;
  border-radius: 15px;
  padding: 10px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  max-width: 1100px;
  margin: 0 auto;
}

#booking {
  scroll-margin-top: 80px; /* set this to roughly your navbar height */
}

.book-now {
  margin-right: 20px; /* push it away from the far right edge */
}


/* ~ACCORDION FEATURE~ */
.accordion-wrapper {
margin-top: 1px;
display: flex;
justify-content: center;
padding: 20px;
}

.accordion-container {
display: flex;
width: 100%;
max-width: 1100px;
height: 500px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
background: #2c2c2c;
position: relative;
z-index: 0;
}

.piano-side {
  position: relative;
  width: 80px;
  background: #111;
  box-shadow: inset -3px 0 5px #000;
  z-index: 0;
}

.white-keys {
  display: flex;
  flex-direction: column;
  z-index: 1;
  padding: 10px 0;
}

.key.white {
  width: 60px;
  height: 20px;
  margin: 1px auto;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.black-keys {
  position: absolute;
  top: 10px;
  left: 36px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.key.black {
  position: absolute;
  width: 36px;
  height: 12px;
  background: #000;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.2);
}

.black-keys .key.black:nth-child(1) { top: 15px; }
.black-keys .key.black:nth-child(2) { top: 38px; }
.black-keys .key.black:nth-child(3) { top: 85px; }
.black-keys .key.black:nth-child(4) { top: 108px; }
.black-keys .key.black:nth-child(5) { top: 131px; }
.black-keys .key.black:nth-child(6) { top: 178px; }
.black-keys .key.black:nth-child(7) { top: 201px; }
.black-keys .key.black:nth-child(8) { top: 248px; }
.black-keys .key.black:nth-child(9) { top: 271px; }
.black-keys .key.black:nth-child(10) { top: 294px; }
.black-keys .key.black:nth-child(11) { top: 341px; }
.black-keys .key.black:nth-child(12) { top: 364px; }
.black-keys .key.black:nth-child(13) { top: 411px; }
.black-keys .key.black:nth-child(14) { top: 434px; }

.accordion-horizontal {
  display: flex;
  flex: 1;
  height: 100%;
  overflow-x: hidden;
}

.section {
  flex: 1 1 100px;
  min-width: 100px;
  max-width: 200px;
  background: linear-gradient(to right, #444, #666);
  color: #fefefe;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  font-family: 'Dancing Script', cursive;
  font-size: 1.6em;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: flex 0.6s ease, background 0.4s ease, max-width 0.6s ease;
  border-right: 2px solid #333;
  box-shadow: inset -2px 0 4px rgba(0,0,0,0.3);
  position: relative;
  height: 100%; /* ensures consistent height for each panel */
  padding-top: 40px; /* spacing for title only */
}

.section:last-child {
  border-right: none;
}

.section:hover {
  flex-grow: 2;
  max-width: 250px;
  color: #fff;
  text-shadow: 0 0 4px #000;
  background-image: linear-gradient(to right, rgba(68, 68, 68, 0.85), rgba(102, 102, 102, 0.85));
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.section.open {
  flex-grow: 1.5;
  max-width: 220px;
  color: #fff;
  text-shadow: 0 0 4px #000;
}

.section.open .section-content {
  opacity: 1;
}

.section-content {
  position: absolute;
  bottom: 50px; /* pins text near the bottom */
  left: 0;
  right: 0;
  opacity: 0;
  padding: 0 10px;
  transition: opacity 0.5s ease 0.3s;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 0.75em;
  font-weight: 400;
  text-align: center;
  max-width: 100%;
  pointer-events: none;
}

.section:hover .section-content {
  opacity: 1;
  max-width: 320px;
}

.section {
  cursor: pointer;
  background-image: linear-gradient(to right, rgba(68, 68, 68, 0.85), rgba(102, 102, 102, 0.85));
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.section:nth-child(1):hover,
.section:nth-child(1).open {
  background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('accordion/parties.jpg');
}

.section:nth-child(2):hover,
.section:nth-child(2).active {
  background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('accordion/weddings.jpg');
}
.section:nth-child(3):hover,
.section:nth-child(3).active {
  background-image: linear-gradient(to bottom right, rgba(255, 252, 252, 0.6), rgba(255, 255, 255, 0.6)), url('accordion/restaurant.jpg');
}
.section:nth-child(4):hover,
.section:nth-child(4).active {
  background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0,0,0,0.6)), url('accordion/corporate.jpg');
}
.section:nth-child(5):hover,
.section:nth-child(5).active {
  background-image: linear-gradient(to bottom right, rgba(68, 68, 68, 0.6), rgba(68, 68, 68, 0.6)), url('accordion/more.jpg');
}

/* white buttons  */
.button-panel {
  width: 85px;
  background: #1a1a1a;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px;
  justify-items: center;
  align-items: start;
  box-shadow: inset 3px 0 6px rgba(0,0,0,0.5);
}

.button-panel .button {
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at 30% 30%, #fff, #ccc);
  border-radius: 50%;
  box-shadow: inset -1px -1px 2px rgba(0,0,0,0.1), 1px 1px 2px rgba(0,0,0,0.4);
}

/* phone version */
@media (max-width: 500px) {
  .accordion-container {
    flex-direction: column;
    height: auto;
  }

  .accordion-horizontal {
    flex-direction: column;
    height: auto;
    overflow-x: visible;
  }

  .section {
    flex: none;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    padding: 16px;
    font-size: 1.4em;
    border-right: none;
    border-bottom: 2px solid #333;
    position: relative;
    cursor: pointer;
  }

  .section:last-child {
    border-bottom: none;
  }

  .section-content {
    display: none;
    margin-top: 8px;
    font-size: 0.95em;
  }

  .section.open .section-content {
    display: block;
  }

  .piano-side,
  .button-panel {
    display: none;
  }
}


/* AUDIO SAMPLES */
.new-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 40px;
  overflow: visible; 
  width: 100%;
  padding-left: 60px; 
  padding-right: 60px;
}

.new-audio-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 10px;
}

.new-audio-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 300px;
  background-color: #faf8f4;
  border-radius: 12px;
  border: 2px solid #d94d4d;
  padding: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.new-audio-card audio {
  width: 100%;
  margin-bottom: 12px;
}

.new-audio-card p {
  font-family: 'Dancing Script', cursive;
  font-size: calc(var(--base-font-size) * 1);
  color: #7a1d1d;
  margin: 0;
}

.new-carousel-arrow {
  background-color: #faf8f4;
  border: 2px solid #d94d4d;
  color: #7a1d1d;
  font-size: 1.8rem;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: background 0.2s;
  z-index: -0.1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.new-carousel-arrow:hover {
  background-color: #fce8d5;
}

.new-carousel-arrow.left {
  left: 10px; /* inside container padding */
}

.new-carousel-arrow.right {
  right: 10px; /* inside container padding */
}


/* ~GALLERY~ */
.filters {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.media-row {
  margin-bottom: 5px;
}

.category-row {
  opacity: 0.95;
}

.gallery-section {
  background-color: #faf8f4;
  font-family: 'Georgia', serif;
  text-align: center;
  padding: 60px 20px;
  border: 2px solid #d94d4d;
}

.gallery-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #4d4033;
}

.filter-btn {
  padding: 8px 16px;
  border: none;
  background-color: #d94d4d;
  color: white;
  cursor: pointer;
  font-size: 1em;
  border-radius: 4px;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #d94d4d;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.gallery-item {
  background-color: #faf8f4;
  border: 8px solid #d94d4d;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  display: block;
  cursor: pointer;
}

.caption {
  padding: 12px;
  font-size: 1em;
  color: #3a2e1f;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}

.lightbox img,
.lightbox video {
  max-width: 100%;
  max-height: 100%;
}

.close-btn {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.gallery-item video {
  width: 100%;
  height: auto;
  max-width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.filter-btn.active {
  background-color: #990000 !important;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  margin: auto;
}

.filter-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.filter-label {
  font-weight: bold;
  color: #990000;
  font-size: 0.95em;
  margin-bottom: 5px;
}


/* ~RESPONSIVE FOR ALL DEVICES~ */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    overflow-x: hidden;
  }

  h1, h2, h3 {
    text-align: center;
    font-size: 1.5em;
  }

  .w3-row, .w3-content, .w3-container {
    padding: 10px !important;
    flex-direction: column !important;
  }

  .testimonial-carousel .container {
    flex-direction: column;
    width: 100% !important;
    padding: 20px;
  }

  .testimonial-carousel p {
    font-size: 1em;
  }

  .new-audio-carousel {
    flex-direction: column;
    align-items: center;
  }

  .new-carousel-arrow {
    display: none;
  }

  .section-white, .section-grey {
    padding: 20px 10px !important;
  }

  .popup-content {
    width: 90% !important;
  }

  .parallaxx-text {
    width: 100% !important;
    padding: 20px !important;
  }

  .calendar-wrapper {
    overflow-x: auto;
  }
}

/* NAVIGATION BAR */
/* desktop */
.custom-navbar {
  display: flex;
  align-items: center;
}

.home-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 45px;
  height: 45px;
  border: 2px solid #ff010e83;
}

.mobile-menu-btn {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  margin-left: auto;
}

/* mobile */
@media (max-width: 768px) {

  .custom-navbar {
    justify-content: space-between;
  }

  /* show hamburger */
  .mobile-menu-btn {
    display: block;
    font-size: 22px;
  }

  /* hide menu initially */
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 10px;
    text-align: center;
  }

  .nav-links.open {
    display: flex;
  }

  .book-now {
    width: 90%;
    margin: 10px auto;
  }

  /* services / gallery row */
  .mobile-text-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 8px 0;
  }

  /* icons row */
  .mobile-icon-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 6px;
  }
}
/* hiding the hamburger on laptop */
.mobile-menu-btn {
  display: none !important;
}

/* show only on mobile */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: inline-block !important;
    font-size: 22px;
  }

  /* hide logo + site name completely */
  .nav-open .home-link {
    display: none !important;
  }

  /* force hamburger to right edge */
  .nav-open .mobile-menu-btn {
    margin-left: auto !important;
  }
}