/*----------------------------------------------
*
* [Default Stylesheet]
* 
----------------------------------------------*/

/*----------------------------------------------

[ALL CONTENTS]

1. Root
2. Button
3. Effect

----------------------------------------------*/

/*----------------------------------------------
1. Root
----------------------------------------------*/

/* #region Root */

:root {
  --h1-font: "Poppins", sans-serif;
  --h1-size: 2.5rem;
  --h1-weight: 900;

  --h2-font: "Poppins", sans-serif;
  --h2-size: 3rem;
  --h2-weight: 700;

  --p-font: "Montserrat", sans-serif;
  --p-size: 1rem;
  --p-weight: 400;

  --header-bg-color: #1d1d1d;
  --nav-top-bg-color: #1d1d1d;
  --nav-sub-bg-color: #1d1d1d;
  --nav-holder-bg-color: #1d1d1d;
  --nav-brand-height: 90px;
  --nav-item-color: #f9f9f9;
  --hero-bg-color: #111117;
  --footer-brand-height: 80px;

  --primary-color: #d2a94a;
  --secondary-color: #94742a;

  --white-color: #ffffff;
  --black-color: #000007;
  --dark-grey-color: #111117;

  --primary-t-color: #21333e;
  --secondary-t-color: #f9f9f9;
  --primary-p-color: #606d75;
  --secondary-p-color: #c0c3d0;
  --primary-b-color: #f9f9f9;
  --primary-l-color: rgba(0, 0, 0, 0.25);
  --secondary-l-color: rgba(255, 255, 255, 0.35);

  --valid-color: #007a4d;
  --invalid-color: #e34f4f;

  --primary-bg-color: #f9f9f9;
  --primary-bg-color-2: #f1f1f1;
  --primary-bg-color-3: rgba(128, 109, 64, 0.15);

  --secondary-bg-color: #111117;
  --secondary-bg-color-2: #080d10;
  --secondary-bg-color-3: #191919;

  --card-bg-color: #ffffff;

  --footer-bg-color: #111117;

  --hero-bg-color: #080d10;

  --section-1-bg-color: #ffffff;
  --section-2-bg-color: #111117;
  --section-3-bg-color: #111117;
  --section-4-bg-color: #ffffff;
  --section-5-bg-color: #eef4ed;
  --section-6-bg-color: #111117;
  --section-7-bg-color: #ffffff;

  --footer-bg-color: #080d10;
  --footer-bg-image: url("images/bg-7.jpg");
}

/* #endregion Root */

/*----------------------------------------------
2. Button
----------------------------------------------*/

/* #region Button */

.primary-button,
.primary-button:visited,
.primary-button:active {
  position: relative;
  z-index: 2;
  padding: 10px 25px;
  background-color: var(--primary-color);
  border-radius: 4px;
  border: 1px solid;
  border-color: var(--primary-color);
  color: var(--primary-b-color);
  font-weight: 500;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.primary-button:hover,
.primary-button:focus {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.outline-button,
.outline-button:visited,
.outline-button:active {
  position: relative;
  z-index: 2;
  padding: 10px 25px;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid;
  border-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 500;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.odd .outline-button,
.odd .outline-button:visited,
.odd .outline-button:active {
  position: relative;
  z-index: 2;
  padding: 10px 25px;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid;
  border-color: var(--primary-color);
  color: var(--primary-b-color);
  font-weight: 500;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.outline-button:hover,
.outline-button:focus {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--white-color);
}

/* #endregion Button */

/* #region Effect */

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 var(--secondary-color);
    background-color: var(--secondary-color);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    background-color: rgba(204, 169, 44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    background-color: rgba(204, 169, 44, 0);
  }
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 var(--secondary-color);
    box-shadow: 0 0 0 0 var(--secondary-color);
    background-color: var(--secondary-color);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    background-color: rgba(204, 169, 44, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    background-color: rgba(204, 169, 44, 0);
  }
}

/* #endregion Effect */

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}
