@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nixie+One&display=swap');
@import url('style.css');

body {
    font-family: 'Montserrat', sans-serif;
}
.header-strapline {
    background: #C39A5F;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(195, 154, 95, 1)), color-stop(20%, rgba(217, 172, 108, 1)), color-stop(50%, rgba(195, 154, 95, 1)));
    background: linear-gradient(180deg, rgba(195, 154, 95, 1) 0%, rgba(217, 172, 108, 1) 20%, rgba(195, 154, 95, 1) 50%);
}

.vimeo-container {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 aspect ratio */
}
.vimeo-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vimeo-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.video-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  pointer-events: none; /* Prevent interaction */
}
.video-loading.fade-out {
  opacity: 0;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}
.loading-text {
  margin-top: 20px;
  color: gray;
  font-size: 1rem;
  padding: 0.5em 1em;
  border-radius: 6px;
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.icon-text {
    font-size: 0.7em;
    line-height: 1em;
    margin-top: 5px;
}
.quotation {
    font-weight: 400;
    font-style: normal;
    font-size: 1.5em;
    color: #666666;
}
.quotation-sm {
    font-weight: 400;
    font-style: normal;
    font-size: 1.2em;
    color: #666666;
}
.subheading {
    font-size: 1.6em;
    line-height: 2.4em;
}
/* Glow effect */
.image-glow {
  -webkit-box-shadow: 0 0 10px 5px rgba(75, 75, 75, 0.2);
          box-shadow: 0 0 10px 5px rgba(75, 75, 75, 0.2); /* Adjust the color and intensity as needed */
  -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out; /* Smooth transition for hover effect */
  border-radius: 10px; /* Add rounded corners */
}

.image-glow:hover {
  -webkit-box-shadow: 0 0 10px 5px rgba(75, 75, 75, 0.3);
          box-shadow: 0 0 10px 5px rgba(75, 75, 75, 0.3); /* Brighter glow on hover */
}

.btn-primary {
    background-color: #C39A5F;
    border-color: #C39A5F;
}
.btn-primary:hover {
    background-color: #c49147;
    border-color: #c49147;
}
.btn-primary:active,
.btn-primary.active {
    background-color: #ae7a2c !important;
    border-color: #ae7a2c !important;
}

.image-with-gold-shadow,
.image-with-gold-shadow2 {
  position: relative;
  display: inline-block;
}
@media (min-width: 756px) {
.image-with-gold-shadow {
  margin-left: 30px;
}
.image-with-gold-shadow2 {
  margin-right: 30px;
}
}

.image-with-gold-shadow img,
.image-with-gold-shadow2 img {
  display: block;
  position: relative;
  z-index: 2;
}

@media (min-width: 756px) {
.image-with-gold-shadow::before,
.image-with-gold-shadow2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ae7a2cb0;
  z-index: 1;
  -webkit-filter: blur(1px) contrast(1.2);
          filter: blur(1px) contrast(1.2);
  -webkit-clip-path: inset(0);
          clip-path: inset(0); /* keeps same shape as the image */
  border-radius: inherit;
}
.image-with-gold-shadow::before {
  -webkit-transform: rotate(2deg) scale(1.05, 0.98);
          transform: rotate(2deg) scale(1.05, 0.98);
}
.image-with-gold-shadow2::before {
  -webkit-transform: rotate(-2deg) scale(1.05, 0.98);
          transform: rotate(-2deg) scale(1.05, 0.98);
}
}

.favourites {
  padding: 10px 20px 10px 10px;
  display: block;
  position: fixed;
  bottom: 40px;
  left: 0;
  background-color: #c49147;
  color: white;
  border-radius: 0 100px 100px 0;
  z-index: 9999;
}

.favourites-heart {
  color: #C30A00;
  text-shadow: -1px -1px 0 #bbbbbb,1px -1px 0 #bbbbbb,-1px  1px 0 #bbbbbb,1px  1px 0 #bbbbbb;
  -webkit-transition: padding-left 0.3s ease;
  transition: padding-left 0.3s ease;
}

#favourites:hover #favourites-heart {
  padding-left: 10px;
}