/* Fonts 
- Anton CS (Main Font)
- Inter / Montserrat (Secondary Font used for small text)

 Font-Size: 

 Main Headlights / Titles
 2rem, 2.6rem 3.4rem 4.4rem 5.2rem 6.4rem 7.2rem 
 
 Body text 
 1.6rem - 1.8rem 

 Buttons / CTA 
 1.8rem - 2rem 

/* Colors 
   #0D0D0D (Main-Color)
   #ff2800 (Secondary Color)
   #00ffff (Secondary Color)
*/

/********************
/* Header Section 
*********************/

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

.Hero-Section {
  background-color: #e8d9b5;
  background-position: center;
  object-fit: cover;
  height: 100vh;
}

.Hero-Grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
}

.color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.grid-left-colm {
  background-image: url(/Hero-Section-Images/Mohammed-Hero-Section.jpg);
  background-position: center 15%;
  background-size: cover;
  transition: 0.7s ease-in-out;
  position: relative;
}

.fade-out {
  opacity: 0;
}

.grid-right-column-text-content {
  height: 80%;
  width: 100%;
}

.span-text {
  color: #800020;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.links-holder {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  width: 100%;
  margin-bottom: 6px;
}

.nav-link {
  text-decoration: none;
  font-family: "Cormorant Garamond";
  font-size: 25px;
  font-weight: bolder;
  color: #0f0f0f;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-weight: 100;
}

.Text-Content-Wrapper {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.discount-text:link,
.discount-text:visited {
  color: #800020;
  font-family: sans-serif;
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 300;
  letter-spacing: 1.5px;
  display: flex;
  column-gap: 15px;
  text-decoration: none;
  align-items: center;
}

.discount-text:hover,
.discount-text:active {
  color: #0f0f0f;
}

.icon-right:hover svg path {
  fill: #0f0f0f;
}

.discount-text-2 {
  color: #800020;
  font-family: sans-serif;
  font-size: 16px;
  text-transform: lowercase;
  font-weight: 200;
  letter-spacing: 1.5px;
}

.headline-title {
  font-family: "Cormorant Garamond";
  font-size: 55px;
  font-weight: bolder;
  text-transform: capitalize;
  text-align: center;
  color: #0f0f0f;
}

/* Expanding the menu 
************************/
.menu-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 15, 15, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.menu-icon {
  border: none;
  cursor: pointer;
  background: none;
}

.menu-close {
  position: absolute;
  top: 2.5px;
  right: 45.8%;
  background: transparent;
  border: none;
  font-size: 58px;
  font-weight: bolder;
  cursor: pointer;
  color: #e8d9b5;
}

.menu-close:hover {
  color: #800020;
}

.menu-links {
  display: flex;
  gap: 32px;
  flex-direction: column;
  text-align: center;
}

.menu-link {
  font-family: "Cormorant Garamond";
  color: #fff;
  font-size: 25px;
  font-weight: bolder;
  letter-spacing: 1px;
  transition: color 0.2s ease, transform 0.25s ease;
  text-decoration: none;
}

.menu-link:hover {
  color: #800020;
  transform: translateY(-4px);
}

.link-red {
  color: #800020;
}
