:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-7dc0d2e *//* =========================================================
   GALLERY PAGE
   BRAND COLORS

   Burgundy  : #800020
   Cream     : #F3E6D5
   Off White : #FFF9F2
   Rose      : #D45060

   Unique prefix: gallery-
   ========================================================= */


.gallery-page {

  --gallery-burgundy: #800020;
  --gallery-cream: #F3E6D5;
  --gallery-offwhite: #FFF9F2;
  --gallery-rose: #D45060;
  --gallery-dark: #2b1018;
  --gallery-text: #654f55;
  --gallery-white: #ffffff;

  width: 100%;

  margin: 0;
  padding: 0;

  background: var(--gallery-offwhite);

  color: var(--gallery-dark);

  font-family: inherit;

  overflow: hidden;
}


.gallery-page *,
.gallery-page *::before,
.gallery-page *::after {

  box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.gallery-container {

  width: min(1180px, 92%);

  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   HERO
   ========================================================= */

.gallery-hero {

  position: relative;

  min-height: 470px;

  display: flex;

  align-items: center;
  justify-content: center;

  text-align: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(212, 80, 96, 0.30),
      transparent 28%
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(243, 230, 213, 0.13),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #4d0014,
      #800020,
      #600017
    );
}


.gallery-hero-pattern {

  position: absolute;

  width: 650px;
  height: 650px;

  right: -250px;
  top: -310px;

  border: 1px solid rgba(243, 230, 213, 0.20);

  border-radius: 50%;
}


.gallery-hero-pattern::before {

  content: "";

  position: absolute;

  width: 430px;
  height: 430px;

  left: 100px;
  top: 100px;

  border: 1px solid rgba(212, 80, 96, 0.25);

  border-radius: 50%;
}


.gallery-hero-content {

  position: relative;

  z-index: 2;

  width: min(850px, 92%);

  padding: 80px 0;
}


.gallery-label {

  display: inline-block;

  margin-bottom: 18px;

  color: var(--gallery-cream);

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 3px;

  text-transform: uppercase;
}


.gallery-hero h1 {

  max-width: 850px;

  margin: 0 auto 20px;

  color: #ffffff;

  font-size: clamp(38px, 5vw, 65px);

  line-height: 1.08;

  font-weight: 800;

  letter-spacing: -1px;
}


.gallery-hero h1 span {

  color: var(--gallery-cream);
}


.gallery-hero p {

  max-width: 700px;

  margin: 0 auto;

  color: rgba(255, 249, 242, 0.82);

  font-size: 17px;

  line-height: 1.8;
}


/* =========================================================
   GALLERY SECTION
   ========================================================= */

.gallery-section {

  padding: 100px 0 110px;

  background: var(--gallery-offwhite);
}


.gallery-heading {

  max-width: 720px;

  margin: 0 auto 55px;

  text-align: center;
}


.gallery-small-title {

  display: inline-block;

  margin-bottom: 14px;

  color: var(--gallery-rose);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 3px;

  text-transform: uppercase;
}


.gallery-heading h2 {

  margin: 0 0 15px;

  color: var(--gallery-burgundy);

  font-size: clamp(32px, 4vw, 48px);

  line-height: 1.15;

  font-weight: 800;
}


.gallery-heading h2 span {

  color: var(--gallery-rose);
}


.gallery-heading p {

  margin: 0;

  color: var(--gallery-text);

  font-size: 16px;

  line-height: 1.8;
}


/* =========================================================
   GALLERY GRID
   ========================================================= */

.gallery-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 30px;
}


/* =========================================================
   CARD
   ========================================================= */

.gallery-card {

  background: #ffffff;

  border: 1px solid rgba(128, 0, 32, 0.10);

  border-radius: 10px;

  overflow: hidden;

  box-shadow:
    0 8px 30px rgba(128, 0, 32, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


.gallery-card:hover {

  transform: translateY(-8px);

  border-color: rgba(212, 80, 96, 0.40);

  box-shadow:
    0 20px 45px rgba(128, 0, 32, 0.14);
}


/* =========================================================
   IMAGE
   ========================================================= */

.gallery-image-wrap {

  position: relative;

  width: 100%;

  height: 390px;

  overflow: hidden;

  background: var(--gallery-cream);
}


.gallery-image-wrap img {

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  transition:
    transform 0.55s ease;
}


.gallery-card:hover
.gallery-image-wrap img {

  transform: scale(1.06);
}


.gallery-image-overlay {

  position: absolute;

  left: 18px;
  top: 18px;

  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: rgba(128, 0, 32, 0.90);

  color: var(--gallery-cream);

  border-radius: 50%;

  font-size: 12px;

  font-weight: 800;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.gallery-card-content {

  padding: 22px;

  background: #ffffff;
}


.gallery-name {

  display: block;

  margin-bottom: 18px;

  color: var(--gallery-burgundy) !important;

  font-size: 23px;

  font-weight: 800;

  line-height: 1.25;

  text-decoration: none !important;

  transition: color 0.25s ease;
}


.gallery-name:hover {

  color: var(--gallery-rose) !important;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.gallery-buttons {

  display: grid;

  grid-template-columns: 0.75fr 1.55fr;

  gap: 9px;
}


.gallery-call-btn,
.gallery-whatsapp-btn {

  min-height: 46px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 10px 12px;

  border-radius: 5px;

  text-align: center;

  text-decoration: none !important;

  font-size: 12px;

  font-weight: 800;

  line-height: 1.3;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}


.gallery-call-btn {

  background: var(--gallery-cream);

  color: var(--gallery-burgundy) !important;

  border: 1px solid var(--gallery-cream);
}


.gallery-call-btn:hover {

  background: var(--gallery-burgundy);

  color: #ffffff !important;

  transform: translateY(-2px);
}


.gallery-whatsapp-btn {

  background: var(--gallery-burgundy);

  color: #ffffff !important;

  border: 1px solid var(--gallery-burgundy);
}


.gallery-whatsapp-btn:hover {

  background: var(--gallery-rose);

  border-color: var(--gallery-rose);

  color: #ffffff !important;

  transform: translateY(-2px);
}


/* =========================================================
   CTA
   ========================================================= */

.gallery-cta {

  position: relative;

  padding: 100px 0;

  text-align: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 50%,
      rgba(212, 80, 96, 0.28),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #4c0014,
      #800020
    );
}


.gallery-cta::before {

  content: "";

  position: absolute;

  width: 400px;
  height: 400px;

  right: -180px;
  bottom: -200px;

  border: 1px solid rgba(243, 230, 213, 0.18);

  border-radius: 50%;
}


.gallery-cta-content {

  position: relative;

  z-index: 2;

  max-width: 800px;

  margin: 0 auto;
}


.gallery-cta .gallery-small-title {

  color: var(--gallery-cream);
}


.gallery-cta h2 {

  margin: 0 0 18px;

  color: #ffffff;

  font-size: clamp(32px, 4vw, 52px);

  line-height: 1.15;

  font-weight: 800;
}


.gallery-cta h2 span {

  color: var(--gallery-cream);
}


.gallery-cta p {

  max-width: 650px;

  margin: 0 auto 28px;

  color: rgba(255, 249, 242, 0.78);

  font-size: 16px;

  line-height: 1.8;
}


.gallery-main-btn {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 15px 30px;

  background: var(--gallery-cream);

  color: var(--gallery-burgundy) !important;

  border: 2px solid var(--gallery-cream);

  border-radius: 5px;

  text-decoration: none !important;

  font-size: 14px;

  font-weight: 800;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}


.gallery-main-btn:hover {

  background: var(--gallery-rose);

  border-color: var(--gallery-rose);

  color: #ffffff !important;

  transform: translateY(-3px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .gallery-grid {

    grid-template-columns:
      repeat(2, 1fr);
  }

  .gallery-image-wrap {

    height: 370px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .gallery-hero {

    min-height: 430px;
  }

  .gallery-hero-content {

    padding: 65px 0;
  }

  .gallery-hero h1 {

    font-size: 38px;
  }

  .gallery-hero p {

    font-size: 15px;
  }

  .gallery-section {

    padding: 70px 0 75px;
  }

  .gallery-grid {

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .gallery-image-wrap {

    height: 420px;
  }

  .gallery-cta {

    padding: 75px 0;
  }

  .gallery-cta h2 {

    font-size: 34px;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .gallery-container {

    width: 90%;
  }

  .gallery-hero h1 {

    font-size: 32px;
  }

  .gallery-heading h2 {

    font-size: 32px;
  }

  .gallery-image-wrap {

    height: 390px;
  }

  .gallery-card-content {

    padding: 20px;
  }

  .gallery-name {

    font-size: 21px;
  }

  .gallery-buttons {

    grid-template-columns: 1fr;
  }

  .gallery-call-btn,
  .gallery-whatsapp-btn {

    min-height: 48px;
  }

  .gallery-main-btn {

    width: 100%;
  }
}/* End custom CSS */