:root {
--font1: "Nunito Sans", Helvetica, Arial, sans-serif;
--font2: "Cormorant Upright", Helvetica, Arial, sans-serif;
/* --font2: "Cormorant Garamond", serif;*/
--primary-orange: #c6ba9e;
--renk1: #1f2d4f;
--radius: 3px;
}body {
font-family: var(--font1);
padding: 0px;
margin: 0px;
background: #fefbf8;
color: #1f2d4f;
}body.menu-open {
overflow: hidden;
}.map-label {
font-family: var(--font2);
font-size: 14px;
color: #1f2d4f;
background-color: rgba(255, 255, 255, 0.9);
padding: 6px 12px;
border-radius: var(--radius);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}/* Site Header: Genel ve Masaüstü */.site-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 80px;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #fdfbf8;
z-index: 1000;
transition: background-color 0.3s ease;
box-sizing: border-box;
}.site-header .container {
display: flex;
align-items: center;
}.site-header .logo {
flex-shrink: 0;
display: flex;
align-items: center;
text-decoration: none;
position: absolute;
left: 50%;
transform: translateX(-50%);
}.site-header .logo img {
height: 50px;
width: auto;
display: block;
}.site-header .main-nav {
flex-grow: 1;
display: flex;
justify-content: center;
}.site-header .main-nav ul#main-menu {
display: flex;
list-style: none;
gap: 29px;
margin: 0;
padding: 0;
align-items: center;
}.site-header .main-nav ul#main-menu li:nth-child(6) {
margin-left: 300px;
}.site-header .main-nav a {
color: #1f2d4f;
font-weight: 600;
font-size: 15px;
text-decoration: none;
padding: 5px 0;
position: relative;
transition: color 0.3s ease;
white-space: nowrap;
align-items: center;
display: flex;
}.site-header .main-nav a:hover {
color: var(--primary-orange);
}/* Alt Menüler: Masaüstü */
.site-header .nav-item.nav-submenu {
position: relative;
}.site-header .nav-submenu > a::after {
content: "▼";
font-size: 0.6em;
margin-left: 7px;
display: inline-block;
transition: transform 0.3s ease-in-out;
}.site-header .nav-submenu ul {
list-style: none;
padding: 10px;
margin: 0;
margin-top: 15px;
background-color: #0b1a2c;
border-radius: 8px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
min-width: 220px;
position: absolute;
top: 100%;
left: 0;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition:
opacity 0.3s ease,
transform 0.3s ease,
visibility 0.3s ease;
z-index: 10;
}.site-header .nav-submenu ul li {
padding: 0;
margin: 0;
}.site-header .nav-submenu ul a {
padding: 10px 15px;
display: block;
font-size: 14px;
font-weight: 500;
border-radius: 5px;
}.site-header .nav-item.nav-submenu:hover > ul {
opacity: 1;
visibility: visible;
transform: translateY(0);
}.site-header .nav-item.nav-submenu:hover > a::after {
transform: rotate(180deg);
}/* Hamburger Menü Butonu */
.site-header .menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 10px;
z-index: 1001;
}.site-header .menu-toggle .bar {
display: block;
width: 25px;
height: 3px;
background-color: #fff;
margin: 5px 0;
transition: all 0.4s;
}.site-header .menu-toggle.is-active .bar:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}.site-header .menu-toggle.is-active .bar:nth-child(2) {
opacity: 0;
}.site-header .menu-toggle.is-active .bar:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}/* Mobil Menü Arka Plan Overlay */
.nav-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
z-index: 998;
opacity: 0;
visibility: hidden;
transition:
opacity 0.5s ease,
visibility 0.5s ease;
}.nav-overlay.is-active {
opacity: 1;
visibility: visible;
}/* Mobil Görünüm */
@media (max-width: 1200px) {
.site-header .menu-toggle {
display: block;
}.site-header .main-nav {
border-right: none;
margin-right: 0;
padding-right: 0;
justify-content: flex-end;
}.site-header .main-nav ul#main-menu li:nth-child(6) {
margin-left: 0;
}.site-header .main-nav ul#main-menu {
overflow-y: auto;
padding-bottom: 40px;
flex-direction: column;
position: fixed;
top: 0;
left: -100%;
width: 80%;
max-width: 320px;
height: 100vh;
background-color: #fdfbf8;
padding: 80px 40px 40px;
align-items: flex-start;
gap: 15px;
transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
z-index: 999;
}.site-header .main-nav ul#main-menu.is-active {
left: 0;
}.site-header .main-nav ul a {
font-size: 18px;
width: 100%;
}.site-header .main-nav ul li {
position: relative;
}.site-header .main-nav ul li .mobil-logo {
margin-bottom: 25px;
display: block !important;
}/* Mobil Alt Menüler */
.site-header .nav-submenu > li::after {
content: "›";
font-size: 1.8em;
font-weight: bold;
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%) rotate(0deg);
transition: transform 0.3s ease-in-out;
}.site-header .nav-submenu ul {
position: static;
width: 100%;
opacity: 1;
visibility: visible;
transform: none;
box-shadow: none;
background-color: rgba(0, 0, 0, 0.2);
padding: 10px 0 10px 20px;
margin-top: 10px;
border-radius: 8px;
max-height: 0;
overflow: hidden;
transition:
max-height 0.4s ease-in-out,
padding 0.4s ease-in-out,
margin 0.4s ease-in-out;
padding-top: 0;
padding-bottom: 0;
margin-top: 0;
}.site-header .nav-submenu.submenu-open > ul {
max-height: 500px;
margin-top: 10px;
padding-top: 10px;
padding-bottom: 10px;
}.site-header .nav-submenu.submenu-open > a::after {
transform: translateY(-50%) rotate(90deg);
}
}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;
}a.WhatsApp1 svg {
width: 19px;
height: 19px;
fill: #fff;
}@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;
}
}@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: #5f8f8f;
border-color: #5f8f8f;
color: #fff;
}.btn2 {
background: #497676;
border-color: #497676;
color: #fff;
}.btn3 {
background: #375f5f;
border-color: #375f5f;
color: #fff;
}
}.mobilbuttonlar {
display: none;
}/**/.hero-buton {
display: inline-block;
padding: 12px 32px;
font-size: 0.9rem;
font-weight: 400;
letter-spacing: 1.5px;
text-transform: uppercase;
color: #ffffff;
text-decoration: none;
border-bottom: 1px solid #ffffff; /* Sadece alt çizgi ile çok zarif bir buton tasarımı */
transition: all 0.4s ease;
opacity: 0;
animation: softGiris 1.2s ease-out 0.6s forwards;
}.hero-buton:hover {
color: #d1c8bb; /* Hover durumunda soft bej/krem rengi */
border-bottom-color: #d1c8bb;
padding-left: 10px; /* Üzerine gelince çok hafif sağa kayar */
}.hero-buton2 {
display: inline-block;
padding: 12px 32px;
font-size: 15px;
font-weight: 500;
letter-spacing: 1.3px;
text-transform: uppercase;
color: #1f2d4f;
text-decoration: none;
border-bottom: 1px solid #1f2d4f; /* Sadece alt çizgi ile çok zarif bir buton tasarımı */
transition: all 0.4s ease;
opacity: 0;
animation: softGiris 1.2s ease-out 0.6s forwards;
}.hero-buton2:hover {
color: #d1c8bb; /* Hover durumunda soft bej/krem rengi */
border-bottom-color: #d1c8bb;
padding-left: 10px; /* Üzerine gelince çok hafif sağa kayar */
}/* Çok Yumuşak Bir Giriş Animasyonu (Aşağıdan ve hafif şeffaftan) */
@keyframes softGiris {
from {
opacity: 0;
transform: translateY(20px) translateX(-10px);
}
to {
opacity: 1;
transform: translateY(0) translateX(0);
}
}@media (max-width: 768px) {
.site-header .menu-toggle .bar {
background-color: #1b2d4f;
}
}/* Masaüstünde bu bar gizli kalacak */
.mobil-sabit-bar {
display: none;
}/* Sadece Mobil Ekranlarda Görünecek */
@media (max-width: 1200px) {
/* Sitenin en altındaki içeriğin barın altında kalmasını engellemek için body'e boşluk veriyoruz */
body {
padding-bottom: 60px !important;
}.mobil-sabit-bar {
display: flex;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #1b2d4f; /* Navy: Lüks koyu mavi */
z-index: 9999; /* Her şeyin üstünde durması için */
box-shadow: 0 -5px 20px rgba(27, 45, 79, 0.2);
/* Yeni nesil iPhone'ların altındaki ev çizgisi (Home Bar) ile çakışmaması için Apple'ın özel kodu: */
padding-bottom: env(safe-area-inset-bottom);
}.msb-item {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 12px 0 10px 0;
text-decoration: none;
color: #fdfbf8; /* Warm White: İkon ve yazı rengi */
transition: all 0.3s ease;
}/* Dokunulduğunda veya üzerine gelindiğinde */
.msb-item:active,
.msb-item:hover {
color: #c9b99a; /* Stone: Zarif altın/bej dokunuş */
}.msb-item svg {
width: 22px;
height: 22px;
margin-bottom: 4px;
stroke: currentColor; /* Rengi otomatik alır */
}.msb-item span {
font-size: 10px;
font-weight: 500;
letter-spacing: 1.5px;
text-transform: uppercase;
font-family: sans-serif; /* Veya projenizdeki var(--font2) kullanabilirsiniz */
}/* İkonlar arasındaki ince zarif çizgiler */
.msb-ayrac {
width: 1px;
background-color: #c9b99a; /* Stone */
opacity: 0.2; /* Çok göze batmaması için saydamlık */
margin: 12px 0;
}
}