:root {
--font1: "Raleway", Helvetica, Arial, sans-serif;
--primary-orange: #000;
--radius: 3px;
}svg {
max-width: 100%;
height: auto;
width: 50px;
}body {
font-family: var(--font1);
padding: 0px;
margin: 0px;
}body.menu-open {
overflow: hidden;
}.header-ust {
background-color: transparent;
border-bottom: 1px solid #e0e0e0;
font-size: 14px;
color: #333;
}.header-ust .container {
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
background: white;
max-width: 100%;
padding: 10px 0;
}.header-ust-sol span {
margin-right: 20px;
display: inline-flex;
align-items: center;
}.header-ust-sol a {
color: #000;
text-decoration: none;
}.header-ust-sol svg {
fill: #000;
width: 20px;
height: auto;
margin-right: 10px;
}.header-ust-sag {
display: flex;
gap: 10px;
}.header-ust-sag .sosyal {
display: inline-flex;
justify-content: center;
align-items: center;
width: 28px;
height: 28px;
border-radius: 50%;
background-color: #0078d4;
color: #fff;
transition: all 0.3s ease;
}.header-ust-sag .sosyal:hover {
background-color: #005fa3;
}.footer-social-links{
list-style: none;
margin: 0;
padding: 0;
display: flex;
}.footer-social-links li a{
text-decoration: none;
background-color: transparent;
width: 30px;
height: 30px;
border: 1px solid #000000;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
transition: all 0.3s ease-in-out;
margin-left: 10px;
}
.footer-social-links li a .icon,
.footer-social-links li a svg{
height: 15px;
width: 15px;
fill: #000;
line-height: 1.2;
transition: 0.3s ease;
}.footer-social-links li a:hover{}@media (max-width: 768px) {
.header-ust .container {
flex-direction: column;
gap: 5px;
text-align: center;
}
.header-ust-sol {
font-size: 13px;
}
}.toplam{
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #ffffff;
z-index: 1000;
transition: background-color 0.3s ease;
box-shadow: 0px 0px 10px 0px #0000004f;
padding-top: 0;
}.site-header {
display: block;
justify-content: space-between;
align-items: center;
padding: 0px 4%;
box-shadow: 0px 0px 10px 0px #0000001f;
}.site-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
transition: background-color 0.3s ease;
box-sizing: border-box;
background: #fff;
}.site-header .logo {
flex-shrink: 0;
display: flex;
align-items: center;
text-decoration: none;
}.site-header .logo img {
height: 40px;
width: auto;
display: block;
}.site-header .main-nav {
flex-grow: 1;
display: flex;
justify-content: end;
padding-right: 25px;
border-right: 1px solid #00000017;
margin-right: 20px;
}.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(3) {
display: none;
}.site-header .main-nav a {
color: #181616;
font-weight: 300;
font-size: 15px;
text-transform: uppercase;
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 svg {
width: 16px;
height: 16px;
}.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 {
overflow-y: auto;
padding-bottom: 40px;
flex-direction: column;
position: fixed;
top: 0;
left: -100%;
width: 80%;
max-width: 320px;
height: 100vh;
background-color: #1a1a1a;
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;
width: 100%;
}.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;
}@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;
}.header-ust{
display: none;
}.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: #cc0000;
border-color: #cc0000;
color: #fff;
}.btn2 {
background: #ae0303;
border-color: #ae0303;
color: #fff;
}.btn3 {
background: #890303;
border-color: #890303;
color: #fff;
}
}.mobilbuttonlar {
display: none;
}/**//**/.language-selector {
position: relative;
display: inline-block;
}.language-selector svg {
width: 20px;
height: auto;
overflow: inherit;
stroke: #181616;
}.language-selector .icon-link {
display: flex;
align-items: center;
gap: 8px;
text-decoration: none;
color: inherit;
padding: 25px 0px;
border-radius: 5px;
}.language-selector .current-lang {
color: #181616;
font-weight: 300;
font-size: 15px;
text-transform: uppercase;
opacity: 0.8;
}.language-selector .language-list {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%) translateY(10px);
background-color: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(5px);
color: #2c3e50;
border-radius: 8px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
list-style: none;
padding: 8px;
margin: 15px 0 0 0;
min-width: 80px;
z-index: 100;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition:
opacity 0.3s ease,
transform 0.3s ease,
visibility 0.3s;
}.language-selector.active .language-list {
opacity: 1;
visibility: visible;
pointer-events: auto;
transform: translateX(-50%) translateY(0);
}.language-selector .language-list::after {
content: "";
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
border-width: 7px;
border-style: solid;
border-color: transparent transparent rgba(255, 255, 255, 0.95) transparent;
}.language-selector .language-list li a .icon {
display: none;
}.language-selector .language-list li a {
display: block;
padding: 10px 18px;
color: #2c3e50;
text-decoration: none;
font-size: 0.9rem;
border-radius: 25px;
transition:
background-color 0.2s ease,
color 0.2s ease;
line-height: normal;
text-align: center;
}.language-selector .language-list li a:hover {
background-color: #808080;
color: #ffffff;
}/* ============================================================
MOBİL OPTİMİZASYON (1200px ve Altı)
============================================================ */@media (max-width: 1200px) {
/* --- 1. Header ve Menü Düzenlemeleri --- */
.site-header {
padding: 10px 20px;
height: auto;
background: #fff !important;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}.site-header .logo img {
height: 40px;
}/* Hamburger Çizgilerini Görünür Yap (Beyaz Header İçin Koyu Renk) */
.site-header .menu-toggle .bar {
background-color: #111 !important;
width: 22px;
height: 2px;
}/* Mobil Menü Paneli */
.site-header .main-nav ul#main-menu {
background-color: #ffffff; /* Karanlık yerine ferah beyaz menü */
width: 280px;
left: -280px;
padding-top: 100px;
box-shadow: 5px 0 20px rgba(0,0,0,0.1);
}.site-header .main-nav ul#main-menu.is-active {
left: 0;
}.site-header .main-nav ul a {
color: #111 !important;
font-size: 16px;
font-weight: 500;
border-bottom: 1px solid #f0f0f0;
padding: 15px 0;
}/* Mobil Dil Seçici */
.language-selector {
margin-right: 15px;
}
.language-selector .current-lang {
font-size: 13px;
color: #111;
}/* --- 2. İçerik Alanları (Padding & Font) --- */
.home-urunler, .home-kumas, .tarihce, .hakkimizda, .abouts, .home-sayac-bolumu {
padding: 60px 20px !important;
}.home-urunler-header {
padding-left: 0;
text-align: center;
}.home-urunler-title, .home-kumas-header h2, .tarihce-header h2, .hakkimizda-highlight {
font-size: 26px !important;
line-height: 1.3 !important;
}/* --- 3. Grid Yapıları (Ürünler & Sayaçlar) --- */
.home-urunler-grid, .home-sayac-container {
grid-template-columns: repeat(2, 1fr) !important; /* Yan yana 2'li yapı */
gap: 15px !important;
}.home-urunler-info h4 {
font-size: 14px;
}/* --- 4. Kumaş ve Hakkımızda Bölümleri --- */
.home-kumas-row {
flex-direction: column !important;
gap: 30px !important;
}.home-kumas-image .img-wrapper {
height: 280px;
}.hakkimizda-features {
flex-direction: column;
gap: 15px;
}/* --- 5. Sürdürülebilirlik İkonları (2x2 Grid) --- */
.surdur-grid {
display: grid !important;
grid-template-columns: 1fr 1fr;
height: auto !important;
gap: 10px;
}.surdur-item {
border: 1px solid rgba(255,255,255,0.1) !important;
padding: 20px 10px;
}/* --- 6. Alt Sabit Bar ve WhatsApp Çakışma Önleme --- */
.mobilbuttonlar {
display: flex !important;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
z-index: 9999;
}.mobilbuttonlar .btn {
font-size: 11px;
height: 50px;
border: none;
}/* WhatsApp Butonunu Yukarı Taşı (Barın Üstünde Kalsın) */
a.WhatsApp1 {
bottom: 70px !important; /* 50px bar + 20px boşluk */
right: 20px;
left: auto; /* Sağ tarafa çekmek kullanımı kolaylaştırır */
width: 55px;
height: 55px;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}/* --- 7. Footer Revize --- */
.footer .footer-top {
grid-template-columns: 1fr !important;
text-align: center;
}.footer p {
max-width: 100%;
}.footer-bottom {
flex-direction: column-reverse;
gap: 20px;
padding-bottom: 80px; /* Alttaki bar için boşluk */
}.footer-bottom img {
margin: 0;
}
}/* Küçük Telefonlar İçin (iPhone SE vb.) */
@media (max-width: 480px) {
.home-urunler-grid, .home-sayac-container {
grid-template-columns: 1fr !important; /* Tek sütuna düş */
}
}