:root {
--font1: "Montserrat", Helvetica, Arial, sans-serif;
--primary-orange: #4b8c28;
--renk1: #042014;
--renk2: #4b8c28;
--renk3: #8a6e53;
--text-beyaz: #ffffff;
--text-gri: #a8bdbc; /* Koyu zeminde okunaklı gri/yeşil */
--radius: 3px;
--zemin-acik: #f7f7f7;
--kart-beyaz: #ffffff;
--metin-koyu: #333333;
--metin-gri: #666666;
}body {
font-family: var(--font1);
padding: 0px;
margin: 0px;
}body.menu-open {
overflow: hidden;
}
h1,
h2,
h3 {
letter-spacing: -0.5px;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
margin: 0;
padding: 0;
}/* Site Header: Genel ve Masaüstü */
:root {
--green: #156c27; /* Kurumsal Yeşiliniz */
--dark-text: #2c3e50;
--light-gray: #f8f9fa;
--border-color: #eaeaea;
}/* --- BEYAZ HEADER GENEL YAPI --- */
.white-header {
position: fixed; /* Slider'ın üstüne yerleşmesi için */
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background-color: transparent; /* Arka plan div'lerde verilecek */
}.white-header .container {
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}/* --- ÜST ÇUBUK (TOP BAR) --- */
.top-bar {
background-color: var(--light-gray);
border-bottom: 1px solid var(--border-color);
padding: 8px 0;
font-size: 13px;
}.top-contact {
display: flex;
gap: 25px;
}.top-contact a {
color: #555;
text-decoration: none;
display: flex;
align-items: center;
gap: 6px;
font-weight: 500;
transition: color 0.3s ease;
}.top-contact a:hover {
color: var(--green);
}.top-contact svg {
width: 14px;
height: 14px;
color: var(--green);
}.top-lang {
display: flex;
align-items: center;
gap: 12px;
}.top-lang li {
list-style: none;
}.top-lang a {
color: #555;
text-decoration: none;
display: flex;
align-items: center;
gap: 6px;
font-weight: 600;
transition: opacity 0.3s ease;
}.top-lang a:hover {
opacity: 0.7;
}.top-lang a.active {
color: var(--green);
}.top-lang img {
width: auto;
border-radius: 2px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}.top-lang .divider {
width: 1px;
height: 12px;
background-color: #ccc;
}/* --- ANA MENÜ (MAIN HEADER) --- */
.main-header {
background-color: #ffffff;
padding: 15px 0;
position: relative;
z-index: 2;
}.white-header .logo img {
height: 55px;
width: auto;
display: block;
}.white-header .main-nav {
flex-grow: 1;
display: flex;
justify-content: flex-end;
}.white-header ul#main-menu {
display: flex;
list-style: none;
gap: 30px;
margin: 0;
padding: 0;
align-items: center;
}.mobile-logo-item,
.mobile-extra-info {
display: none !important;
}.white-header ul#main-menu > li:nth-child(3) {
display: none;
}.white-header ul#main-menu > li > a {
color: var(--dark-text);
font-weight: 600;
font-size: 15px;
text-decoration: none;
padding: 5px 0;
position: relative;
display: flex;
align-items: center;
transition: color 0.3s ease;
}.white-header ul#main-menu > li > a svg {
fill: var(--dark-text);
transition: fill 0.3s ease;
}/* Menü Hover Efekti */
.white-header ul#main-menu > li > a:hover,
.white-header ul#main-menu > li > a:hover svg {
color: var(--green);
fill: var(--green);
}.white-header ul#main-menu > li > a::after {
content: "";
position: absolute;
bottom: -3px;
left: 0;
width: 0%;
height: 2px;
background-color: var(--green);
transition: width 0.3s ease;
}.white-header ul#main-menu > li > a:hover::after {
width: 100%;
}/* --- ALT MENÜLER (SUBMENU) --- */
.white-header .nav-item.nav-submenu {
position: relative;
}.white-header .nav-submenu > a::after {
content: "▼";
font-size: 0.6em;
margin-left: 6px;
transition: transform 0.3s ease;
}.white-header .nav-submenu ul {
position: absolute;
top: 100%;
left: 0;
min-width: 220px;
background-color: #ffffff;
border-radius: 0 0 8px 8px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
border-top: 3px solid var(--green);
list-style: none;
padding: 10px 0;
margin-top: 15px;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.3s ease;
z-index: 10;
}.white-header .nav-submenu:hover > ul {
opacity: 1;
visibility: visible;
transform: translateY(0);
}.white-header .nav-submenu:hover > a::after {
transform: rotate(180deg);
}.white-header .nav-submenu ul a {
padding: 10px 20px;
display: block;
font-size: 14px;
color: var(--dark-text);
font-weight: 500;
border-bottom: 1px solid var(--border-color);
transition:
background 0.3s,
color 0.3s,
padding-left 0.3s;
}.white-header .nav-submenu ul li:last-child a {
border-bottom: none;
}.white-header .nav-submenu ul a:hover {
background-color: var(--light-gray);
color: var(--green);
padding-left: 25px; /* Üzerine gelince zarifçe sağa kayar */
}/* --- HEADER ALTI ZARİF SVG DALGASI --- */
.header-bottom-curve {
position: absolute;
bottom: -28px;
left: 0;
width: 100%;
height: 31px;
pointer-events: none;
z-index: 1;
display: none;
}.header-bottom-curve svg {
display: block;
width: 100%;
height: 40%;
}/* --- HAMBURGER MENÜ (MOBİL) --- */
.menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 8px;
z-index: 1001;
}.menu-toggle .bar {
display: block;
width: 25px;
height: 3px;
background-color: var(--dark-text);
margin: 5px 0;
border-radius: 3px;
transition: 0.3s;
}.menu-toggle.is-active .bar:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-active .bar:nth-child(2) {
opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}/* --- MOBİL GÖRÜNÜM (RESPONSIVE) --- */
@media (max-width: 1100px) {
.top-bar {
display: none;
} /* Mobilde üst bar gizlenir */.white-header .menu-toggle {
display: block;
}.white-header .main-nav {
justify-content: flex-end;
}/* Temiz Beyaz Mobil Menü */
.white-header ul#main-menu {
position: fixed;
top: 0;
right: -100%;
width: 85%;
max-width: 350px;
height: 100vh;
background-color: #ffffff;
box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
flex-direction: column;
padding: 80px 25px 40px;
align-items: flex-start;
gap: 15px;
transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
z-index: 999;
overflow-y: auto;
}.white-header ul#main-menu.is-active {
right: 0;
}.white-header ul#main-menu > li {
width: 100%;
}.white-header ul#main-menu > li > a {
font-size: 16px;
padding: 12px 0;
border-bottom: 1px solid var(--border-color);
}.mobile-logo-item {
display: block !important;
margin-bottom: 10px;
padding-bottom: 20px;
border-bottom: 1px solid var(--border-color);
}/* Alt Menü Açılır Kapılır Mobil Style */
.white-header .nav-submenu > a::after {
position: absolute;
right: 10px;
transform: rotate(-90deg);
}.white-header .nav-submenu.submenu-open > a::after {
transform: rotate(0deg);
}.white-header .nav-submenu ul {
position: static;
box-shadow: none;
border-top: none;
border-left: 2px solid var(--green);
border-radius: 0;
margin-top: 5px;
padding: 5px 0 5px 15px;
opacity: 1;
visibility: visible;
transform: none;
display: none;
}.white-header .nav-submenu.submenu-open ul {
display: block;
}
.white-header .nav-submenu ul a {
border-bottom: none;
}/* Mobilde En Alta Gelen İletişim & Dil Alanı */
.mobile-extra-info {
display: flex !important;
flex-direction: column;
gap: 20px;
margin-top: auto !important;
padding-top: 30px;
}.mob-contact {
display: flex;
flex-direction: column;
gap: 12px;
}.mob-contact a {
display: flex;
align-items: center;
gap: 10px;
color: var(--dark-text);
text-decoration: none;
font-size: 15px;
font-weight: 500;
}.mob-contact svg {
width: 18px;
height: 18px;
color: var(--green);
}.mob-lang {
display: flex;
gap: 15px;
padding: 15px;
background-color: var(--light-gray);
border-radius: 8px;
}.mob-lang a {
display: flex;
align-items: center;
gap: 8px;
color: #555;
text-decoration: none;
font-size: 14px;
font-weight: 600;
}.mob-lang a.active {
color: var(--green);
}.mob-lang img {
border-radius: 2px;
}
}a.WhatsApp1 {
display: flex;
font-size: 18px;
background: #2eb843;
font-weight: 600;
width: 51px;
height: 51px;
position: fixed;
bottom: 20px;
left: 20px;
border-radius: 50%;
-webkit-transition: all 0.1s ease-out 0s;
-moz-transition: all 0.1s ease-out 0s;
-ms-transition: all 0.1s ease-out 0s;
-o-transition: all 0.1s ease-out 0s;
transition: all 0.1s ease-out 0s;
color: #fff;
align-items: center;
justify-content: center;
animation: whatsapp infinite 2s linear;
z-index: 9999;
}@keyframes whatsapp {
0% {
box-shadow: 0 0 0 0 #2eb843;
}50% {
box-shadow: 0 0 0 10px #015dc700;
}100% {
box-shadow: 0 0 0 0 #015dc700;
}
}a.WhatsApp1 svg {
width: 24px;
height: 24px;
fill: #fff;
}.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: #7aa726;
border-color: #7aa726;
color: #fff;
}.btn2 {
background: #648c1a;
border-color: #648c1a;
color: #fff;
}.btn3 {
background: #507212;
border-color: #507212;
color: #fff;
}
}/* Butonun Temel Görünümü */
.btn-genel {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 16px 36px;
font-size: 16px;
font-weight: 700;
color: #ffffff;
background-color: #7aa726; /* Sizin ana yeşil renginiz */
border-radius: 50px; /* Modern oval (pill) tasarım */
text-decoration: none;
position: relative;
overflow: hidden; /* Animasyonun buton dışına taşmasını engeller */
transition:
transform 0.3s ease,
box-shadow 0.3s ease;
z-index: 1;
}/* Yazının (Span) Hover Efektinin Üstünde Kalmasını Sağlama */
.btn-genel span {
position: relative;
z-index: 2; /* Arkadan gelen renk dolgusunun yazıyı kapatmaması için */
letter-spacing: 0.5px;
}/* Soldan Sağa Dolma Animasyonu İçin Gizli Katman */
.btn-genel::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 0%; /* Başlangıçta görünmez (Genişlik %0) */
height: 100%;
background-color: #116027; /* Hover olunca çıkacak olan koyu yeşil renk */
transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Yumuşak ve premium bir hızlanma */
z-index: 1;
}/* Farenin Üzerine Geldiği (Hover) An */
.btn-genel:hover {
transform: translateY(
-4px
); /* Butonu hafifçe havaya kaldırır (tıklama hissi) */
}/* Hover anında gizli katmanın genişliğini %100 yapıp soldan sağa doldur */
.btn-genel:hover::before {
width: 100%;
}