body {
  background-color: #000;
  color: #cba135;
}
h2,
h3,
h5 {
  text-align: center !important;
}
h1 {
  font-family: "Gabriela", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px !important;
  text-align: center;
  color: #cba135;
}
section {
  padding-bottom: 15px;
  padding-top: 15px;
}
/*
.header-navigation {
  background: linear-gradient(90deg, #3a3a3a 0%, #252525 50%, #1a1a1a 100%);
  padding-bottom: 0px !important;
}
  */
a {
  color: #cba135;
}
.navbar-nav .nav-link {
  color: #ffffff;
  position: relative;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d4af37;
}

footer {
  border-top: 1px solid #cba135;
  padding-bottom: 1rem;
  background: linear-gradient(90deg, #3a3a3a 0%, #252525 50%, #1a1a1a 100%);
}

.container {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.navbar-nav .nav-link.active {
  font-weight: bold;
}

.navbar-brand {
  padding-left: 20px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgb(185,157,0)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-color .navbar-nav .nav-link {
  color: #ccad00;
}
.centered-menu {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background-color: #000; /* fallback in case image doesn't load */
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  display: block;
}

/* Optional: if your subject is lower in the image, shift the focus */
.hero img.focus-lower {
  object-position: center 70%;
}

.hero-title {
  color: #0e0e0e;
}

.hero-text {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(203, 161, 53, 0.7);
  padding: 1rem 2rem;
  border-radius: 8px;
  color: #000;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  max-width: 90vw;
  text-align: center;
  box-sizing: border-box;
}

.hero-text h1 {
  margin: 0 0 0.5rem;
  font-weight: 400;
  font-size: clamp(1.5rem, 6vw, 2.5rem);
}

.hero-text p {
  margin: 0;
  font-size: clamp(1rem, 3vw, 1.25rem);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero {
    height: 270px;
  }

  .hero-text {
    bottom: 10px;
    padding: 0.75rem 1rem;
    width: 90%; /* extend container width */
    max-width: 90%; /* keep it full but not edge-to-edge */
    left: 50%; /* still centered */
    transform: translateX(-50%);
    border-radius: 12px;
    box-sizing: border-box; /* ensure padding stays inside */
    white-space: normal; /* allow wrapping */
    word-wrap: break-word; /* break long words if needed */
  }

  .hero-text h1 {
    font-size: 18px !important;
    margin-bottom: 0.25rem;
  }

  .hero-text p {
    font-size: 15px;
    margin: 0;
  }
}

.card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid#cba135;
}

.image-container {
  height: 360px;
  overflow: hidden;
}

.image-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/* Card hover effect: slight lift and shadow */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Smooth transition for all cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: slight zoom on image inside card */
.image-container img {
  transition: transform 0.4s ease;
}

.card:hover .image-container img {
  transform: scale(1.05);
}

@media (max-width: 767.98px) {
  .card {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.card-title {
  font-weight: 600;
  font-family: "Cinzel", serif;
}
.card-body {
  background-color: #cba135;
}

.card-text {
  font-weight: 600;
}
.social-icon i {
  font-size: 1.5rem;
  color: #000;
}
.accordion-wrapper {
  width: 100%;
  margin: 2rem auto;
  padding: 0 1rem;
}
.accordion-header {
  font-size: 50px;
}
.accordion-item {
  background-color: #696868;
  color: #fff;
  border: none;
}
.accordion-button {
  background-color: #cba135;
  color: #000;
  border: none;
  box-shadow: none;
  font-weight: 500;
}
.accordion-button:not(.collapsed) {
  background-color: #cba135;
  color: #000;
  box-shadow: none;
}
.accordion-body {
  background-color: #2c2c2c;
  color: #f0f0f0;
}
@media (min-width: 576px) {
  .accordion-wrapper {
    max-width: 740px;
  }
}

@media (min-width: 768px) {
  .accordion-wrapper {
    max-width: 740px;
  }
}

@media (min-width: 992px) {
  .accordion-wrapper {
    max-width: 840px;
  }
}

@media (min-width: 1200px) {
  .accordion-wrapper {
    max-width: 1270px;
  }
}
.footer {
  background-color: black;
  padding: 2rem 1rem;
  text-align: center;
}

.footer a {
  color: var(--gold);
  margin: 0 0.5rem;
  text-decoration: none;
}
.footer-text {
  color: #cba135 !important;
}
.footer-icon:hover i {
  color: #cba135;
}
.footer-icon i {
  font-size: 1.5rem;
  color: #cba135;
}
.footer-icon:hover i {
  color: #cba135;
}
.copyright-content {
  justify-content: center;
  display: flex;
  padding-top: 30px;
  font-size: 14px;
  font-weight: 450;
}
.masonry {
  column-count: 2; /* 2 columns on desktop */
  column-gap: 10px; /* space between columns */
}

.masonry img {
  width: 100%;
  margin-bottom: 10px;
  display: block;
  break-inside: avoid; /* prevents breaking images between columns */
  border-radius: 6px; /* optional styling */
}

@media (max-width: 768px) {
  .masonry {
    column-count: 1; /* stack images on mobile */
  }
}

.piercer-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bullet-spacing {
  padding: 10px;
  text-align: left;
}
.piercer-image {
  flex: 1;
  max-width: 100%;
  height: 400px;
  padding-left: 60px;
}

.hero-image-wrapper-p {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; /* centers the section */
  height: 500px; /* smaller height */
}
.hero-img-p {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 10px; /* optional: soft corners */
}

@media (max-width: 768) {
  .piercing-title {
    font-size: 20px !important;
  }
}
.image-with-text {
  background: linear-gradient(90deg, #3a3a3a 0%, #252525 50%, #1a1a1a 100%);
}
@media (max-width: 768px) {
  .image-with-text {
    padding: 1rem;
  }
}
@media (max-width: 767.98px) {
  .mobile-image-text {
    margin-bottom: 2rem; /* adjust spacing */
  }
}
.piercing-image {
  aspect-ratio: 1 / 1; /* Keeps all images square */
  overflow: hidden;
}

.piercing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes sure the image fills its space evenly */
}

@media (max-width: 768px) {
  .piercer-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.piercing-collage {
  width: 33.33%; /* One-third width relative to its container */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove inline spacing */
}
.piercing-card {
  background: linear-gradient(90deg, #3a3a3a 0%, #252525 50%, #1a1a1a 100%);
}
.piercing-card p {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .piercing-card {
    padding: 1rem;
  }
}
.contact-image {
  border: 2px solid#cba135;
}
.piercing-card .btn {
  min-width: 180px;
  max-width: 50%;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.btn-primary {
  background-color: black;
  border-color: black;
  color: #cba135;
}
.btn-primary:hover {
  background-color: #cba135;
  border-color: #cba135;
  color: #000;
}
/* SECTION STYLING */
.contact-info {
  background-color: #0e0e0e;
  color: #fefefe;
  padding: 60px 20px;
}

/* FLEX SPLIT */
.contact-split {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch; /* make left/right align in height */
}

/* LEFT SIDE */
.contact-left {
  flex: 1 1 40%;
  max-width: 450px; /* controls how narrow it is */
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left h2 {
  font-size: 2rem;
  color: #cba135;
  margin-bottom: 30px;
  text-align: left;
}

/* CONTACT GRID STACKED IN 1 COLUMN */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #1c1c1c;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 20px 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-decoration: none; /* remove underline from link */
  color: #fefefe; /* make sure text color stays */
}

.contact-box:hover {
  transform: translateY(-5px);
  text-decoration: none;
}

.contact-box i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #cba135;
}

.contact-box p {
  margin: 0;
}

.contact-box a {
  color: #fefefe;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}
.contact-box p {
  margin: 0;
  margin-top: 8px;
}
/* RIGHT SIDE: IMAGE */
.contact-right {
  flex: 1 1 50%;
  padding: 20px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.contact-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* RESPONSIVE STACK ON MOBILE */
@media (max-width: 768px) {
  .contact-split {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 100%;
    padding: 10px;
  }

  .contact-left h2 {
    text-align: center;
  }

  .contact-grid {
    align-items: center;
  }

  .contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contact-box {
    width: 280px; /* or use min-width if you want flexibility */
    max-width: 90vw; /* responsive safeguard */
    margin: 0 auto;
    text-align: center;
  }

  .contact-box i {
    margin: 0 0 10px 0;
    display: block;
  }
}
