@import "reset.css";
@import "font.css";

/**
--------------------------------------------------------------------------------------
------------------------ ************ Public Css ************ ------------------------
--------------------------------------------------------------------------------------
**/

html {
  scroll-behavior: smooth;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.container-fluid {
  width: 100%;
}

a {
  text-decoration: none;
  color: #000;
}

body {
  font-family: Estedad;
  background-color: #fafafa;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

input,
textarea,
button {
  font-family: Estedad;
}
#header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 16px 0;
  z-index: 1000;
}

#header .container {
  position: relative;
  display: flex;
  align-items: center;
  direction: rtl;
  min-height: 60px;
}

.logo {
  width: 60px;
  margin-right: 0;
}

.main_menu {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main_menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}

.main_menu ul li a {
  color: #fff;
  display: block;
  font-size: 15px;
  font-weight: 500;
}
#hero {
  padding: 5px;
}

#hero_bg {
  background-image: url(../images/hero-bg.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
  padding: 0 50px;
  border-radius: 20px;
}

#hero h1 {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 10px #000000;
  margin: 0 0 12px 0;
}

#hero h2 {
  font-size: 27px;
  font-weight: 600;
  color: #e9e9e9;
  text-shadow: 0 0 10px #000000;
}

#hero h3 {
  font-size: 15px;
  color: #c5c5c5;
  text-shadow: 0 0 5px #000000;
}

.cta_hero {
  margin: 32px 0 0 0;
}

.cta_hero a {
  display: inline-block;
  padding: 12px 36px;
  font-size: 15px;
  font-weight: 500;
  color: #020916;
  background: linear-gradient(135deg, #c8a24a 0%, #e3c873 50%, #b08a2e 100%);
  border: none;
  border-radius: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow:
    0 12px 32px rgba(200, 162, 74, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.cta_hero a:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 48px rgba(200, 162, 74, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
