:root {
--font1: "Montserrat", Helvetica, Arial, sans-serif;
--primary-orange: #f0b104;
--radius: 3px;
}body {
font-family: var(--font1);
padding: 0px;
margin: 0px;
}:root {
--header-menu-bg: rgba(20, 20, 20, 0.9);
--header-menu-text-light: #ffffff;
--header-menu-overlay-bg: #f8f9fa;
--header-menu-text-dark: #2c3539;
--header-menu-text-gray: #a0a5a8;
--header-menu-accent: #f0b104;
}.header-top-dil {
display: flex;
align-items: center;
padding-left: 10px;
padding-right: 10px;
margin: 0;
list-style: none;
}.header-top-dil li {
position: relative;
display: flex;
align-items: center;
}/* İki li arasına çizgi ekleyen kısım */
.header-top-dil li:not(:first-child) {
margin-left: 10px;
padding-left: 10px;
}.header-top-dil li:not(:first-child):before {
content: "";
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
height: 14px;
width: 2px;
background-color: white;
}.header-top-dil li a {
color: #fff;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
text-decoration: none;
letter-spacing: 0;
display: flex;
align-items: center;
transition: color 0.3s ease;
}.header-top-dil li a span {
display: flex;
align-items: center;
}/* İkonları göstermek isterseniz buradaki display:none'ı silebilirsiniz */
.header-top-dil li a .icon {
height: 17px;
margin-right: 5px;
display: none;
}.header-top-dil li a .icon img {
height: 100%;
display: block;
}
.header-menu-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 40px;
z-index: 999;
transition: all 0.4s ease;
box-sizing: border-box;
}.header-menu-container * {
box-sizing: border-box;
margin: 0;
padding: 0;
}.header-menu-container.header-scrolled {
background-color: #555553;
height: 70px;
}.header-menu-left-section {
display: flex;
align-items: center;
gap: 50px;
}.header-menu-logo {
color: var(--header-menu-text-light);
font-size: 28px;
font-weight: 700;
text-decoration: none;
letter-spacing: -1px;
transition: color 0.4s ease;
}.header-menu-logo img {
height: 85px;
width: auto;
}.header-menu-lang {
display: flex;
gap: 8px;
color: var(--header-menu-text-light);
font-size: 14px;
font-weight: 600;
transition: color 0.4s ease;
}.header-menu-lang a {
color: rgba(255, 255, 255, 0.4);
text-decoration: none;
transition: 0.3s;
}.header-menu-lang a.header-menu-active-lang,
.header-menu-lang a:hover {
color: inherit;
}.header-menu-right-section {
display: flex;
align-items: center;
gap: 25px;
}.header-menu-links a {
color: var(--header-menu-text-light);
text-decoration: none;
font-size: 13px;
font-weight: 600;
margin-left: 20px;
transition: color 0.3s;
text-transform: uppercase;
}.header-menu-links a:hover {
color: var(--header-menu-accent);
}.header-menu-divider {
width: 1px;
height: 20px;
background: rgba(255, 255, 255, 0.2);
margin: 0 10px;
transition: background 0.4s ease;
}.header-menu-icons {
display: flex;
gap: 18px;
align-items: center;
}.header-menu-icons a {
color: var(--header-menu-text-light);
display: flex;
transition: all 0.3s ease;
}.header-menu-icons a svg {
width: 20px;
height: 20px;
transition: stroke 0.3s;
}.header-menu-icons a:hover svg {
stroke: var(--header-menu-accent);
transform: translateY(-2px);
}.header-menu-toggle {
width: 35px;
height: 20px;
position: relative;
cursor: pointer;
background: transparent;
border: none;
margin-left: 15px;
}.header-menu-toggle span {
position: absolute;
right: 0;
height: 2px;
background: var(--header-menu-text-light);
transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}.header-menu-toggle span:nth-child(1) {
top: 0;
width: 100%;
}
.header-menu-toggle span:nth-child(2) {
top: 9px;
width: 75%;
}
.header-menu-toggle span:nth-child(3) {
top: 18px;
width: 100%;
}.header-menu-toggle:hover span:nth-child(2) {
width: 100%;
}.header-menu-is-open .header-menu-toggle span {
width: 100%;
}
.header-menu-is-open .header-menu-toggle span:nth-child(1) {
top: 9px;
transform: rotate(45deg);
background: #fff;
}
.header-menu-is-open .header-menu-toggle span:nth-child(2) {
opacity: 0;
}
.header-menu-is-open .header-menu-toggle span:nth-child(3) {
top: 9px;
transform: rotate(-45deg);
background: #fff;
}.header-menu-is-open .header-menu-container {
background: transparent;
backdrop-filter: none;
}
.header-menu-is-open .header-menu-logo,
.header-menu-is-open .header-menu-lang {
color: var(--header-menu-text-dark);
}
.header-menu-is-open .header-menu-lang a {
color: #fff;
}
.header-menu-is-open .header-menu-divider {
background: rgba(255, 255, 255, 0.3);
}.header-menu-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
display: flex;
z-index: 9998;
pointer-events: none;
}.header-menu-overlay * {
box-sizing: border-box;
margin: 0;
padding: 0;
}.header-menu-is-open .header-menu-overlay {
pointer-events: all;
}.header-menu-overlay-left {
width: 55%;
height: 100%;
background: #555553;
padding: 160px 10%;
display: flex;
flex-direction: column;
transform: translateY(-100%);
transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}.header-menu-overlay-left::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("../images/icon2.webp");
background-position: center;
background-size: contain;
opacity: 5%;
}.header-menu-is-open .header-menu-overlay-left {
transform: translateY(0);
}.header-menu-overlay-right {
width: 45%;
height: 100%;
background-image: url("../images/menu-bg.webp");
background-size: cover;
background-position: center;
position: relative;
opacity: 0;
transform: scale(1.05);
transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}.header-menu-overlay-right::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
}.header-menu-is-open .header-menu-overlay-right {
opacity: 1;
transform: scale(1);
}.header-menu-nav-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 25px;
}.header-menu-nav-list li {
position: relative;
z-index: 8;
opacity: 0;
transform: translateY(40px);
transition:
opacity 0.5s ease,
transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}.header-menu-is-open .header-menu-nav-list li {
opacity: 1;
transform: translateY(0);
}.header-menu-is-open .header-menu-nav-list li:nth-child(1) {
transition-delay: 0.3s;
display: none;
}
.header-menu-is-open .header-menu-nav-list li:nth-child(2) {
transition-delay: 0.4s;
}
.header-menu-is-open .header-menu-nav-list li:nth-child(3) {
transition-delay: 0.5s;
}
.header-menu-is-open .header-menu-nav-list li:nth-child(4) {
transition-delay: 0.6s;
}
.header-menu-is-open .header-menu-nav-list li:nth-child(5) {
transition-delay: 0.7s;
}
.header-menu-is-open .header-menu-nav-list li:nth-child(6) {
transition-delay: 0.8s;
}
.header-menu-is-open .header-menu-nav-list li:nth-child(7) {
transition-delay: 0.9s;
}.header-menu-is-open .header-menu-nav-list li:nth-child(8) {
transition-delay: 1s;
}.header-menu-is-open .header-menu-nav-list li:nth-child(9) {
transition-delay: 1.2s;
}.header-menu-is-open .header-menu-nav-list li:nth-child(10) {
transition-delay: 1.5s;
}.header-menu-nav-list a {
text-decoration: none;
font-size: 26px;
font-weight: 600;
color: #fff;
transition: all 0.3s ease;
position: relative;
display: inline-block;
line-height: 1.2;
text-transform: uppercase;
}.header-menu-nav-list a:hover {
color: #f0b104;
transform: translateX(10px);
}.header-menu-nav-list a:hover::after {
content: "";
position: absolute;
bottom: 5px;
left: 0;
width: 100%;
height: 3px;
background-color: var(--header-menu-accent);
}@media (max-width: 1024px) {
.header-menu-links {
display: none;
}
.header-menu-overlay-left {
width: 100%;
padding-top: 130px;
}
.header-menu-overlay-right {
display: none;
}
.header-menu-nav-list a {
font-size: 20px;
}
.header-menu-is-open .header-menu-icons a {
color: var(--header-menu-text-dark);
}
.header-menu-is-open .header-menu-toggle span {
background: var(--header-menu-text-dark);
}
.header-menu-logo img {
height: 35px;
}
.header-menu-icons{
display: none;
}
.header-menu-divider{
display: none;
}
}.mobilbuttonlar {
display: none;
}@media (max-width: 1024px) {
a.WhatsApp1 {
bottom: 60px;
}.btn {
border-radius: 0;
display: flex;
justify-content: center;
align-items: center;
padding: 10px 20px;
width: 100%;
}.btn svg {
width: 24px;
height: 24px;
fill: currentColor;
}.mobilbuttonlar {
position: fixed;
width: 100%;
bottom: 0;
z-index: 999;
display: flex;
}.btn1 {
background: #f0b104;
border-color: #f0b104;
color: #fff;
}.btn2 {
background: #cb9603;
border-color: #cb9603;
color: #fff;
}.btn3 {
background: #ae8206;
border-color: #ae8206;
color: #fff;
}.header-menu-logo{
display: flex;
align-items: center;
}.header-menu-container{
padding: 0 30px;
}
}