/* Global Styles */

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900; 
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900; 
    font-style: italic;
}


:root {
    --primary-bg: #f0f0f0;
    --secondary-bg: #ffffff;
    --text-color: #2b4a78; 
    --accent-color: #4c6fa3; 
    --header-bg: rgba(255, 255, 255, 1.0);
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

/*
.light-theme {
    --primary-bg: #212121;
    --secondary-bg: #2f2f2f;
    --text-color: #87A4D3; 
    --accent-color: #88b0e6; 
    --header-bg: rgba(47, 47, 47, 1.0);
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
:root {
    --primary-bg: #1b2b45; 
    --secondary-bg: #2b4a78; 
    --text-color: #aac4e6; 
    --accent-color: #88b0e6; 
    --header-bg: rgba(43, 74, 120, 1.0);
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}
.light-theme {
    --primary-bg: #f5f9ff; 
    --secondary-bg: #ffffff; 
    --text-color: #2b4a78; 
    --accent-color: #4c6fa3; 
    --header-bg: rgba(245, 249, 255, 1.0);
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}
.light-theme .menu-toggle .bar {
    background: var(--text-color);
}
.light-theme .nav-list a:hover,
.light-theme .mobile-nav a:hover {
    color: var(--accent-color);
}
.light-theme #language-switcher {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23000000'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
}
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

main {
    padding-top: 100px; 
    min-width: 360px;
    flex-grow: 1;
}

body {
    background: var(--primary-bg);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: background 0.3s ease, color 0.3s ease;
}


.no-scroll{
    overflow: hidden;
}

/* Header ve Navbar */
header {
    height: 100px;
    background: var(--header-bg);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: var(--box-shadow);
    z-index: 1000;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    padding: 0 20px;
}

/* Logo */
.logo-container {
    flex: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
}

/* Menü */
.nav-list {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.nav-list li {
    display: inline;
    padding: 20px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 18px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    white-space: nowrap;
    position: relative;
    padding-bottom: 5px; /* Alt çizgi için boşluk bırak */
}


.nav-list a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s ease-in-out;
}

/* Dil Seçici */
.language-selector {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    right: 20px;
    width: auto;

}

#language-switcher {
    padding: 5px 25px 5px 8px;
    border: 1px solid var(--accent-color);
    background: var(--secondary-bg);
    color: var(--text-color);
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23d1d5db'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    
}

/* Mobil Menü */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    width: 30px;
    height: 20px;
    justify-content: space-between;
    z-index: 1100;
    left: 20px;
    transition: all 0.3s ease-in-out;
}

.bar {
    background: var(--text-color);
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Menü açıldığında "X" animasyonu */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}


#theme-button {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s ease;
}


footer {
    background: rgb(16, 50, 97);
    color: white;
    padding: 40px 80px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    flex: 1;
    max-width: 500px;
}

.footer-left h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-button {
    background: var(--accent-color);
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-button:hover {
    background: var(--text-color);
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    line-height: 22px;
}

.footer-info p {
    margin: 5px 0;
    font-size: 16px;
}

.footer-info a {
    color: #1ABCFE;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #1399FE;
}
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social img {
    width: 32px;  /* İkon boyutunu ayarla */
    height: 32px;
    filter: invert(1); /* Siyah olan ikonları beyaza çevirir */
    transition: opacity 0.3s ease;
}

.footer-social a:hover img {
    opacity: 0.7; /* Hover efekti */
}

.whatsapp-footer{
    filter: none !important;
    width: 38px !important;
    height: 38px !important;
    margin-top: -3px !important;
    margin-right: 5px !important;
}


/* Mobil Menü Açılırken */
.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--secondary-bg);
    text-align: center;
    box-shadow: var(--box-shadow);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease-in-out, padding 300ms ease-in-out;
}

.mobile-nav.active {
    max-height: 300px;
    padding: 20px 0;
}

.mobile-nav li {
    padding: 15px 0;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--accent-color);
}


.fullscreen-image {
    width: 100%;
    height: calc(90vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url("images/lux/1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Siyah Overlay */
    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* %5 siyah overlay */
    }
}


.fullscreen-image-production {
    width: 100%;
    height: calc(90vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url("images/lux/3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Siyah Overlay */
    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* %5 siyah overlay */
    }
}

.fullscreen-image-products {
    width: 100%;
    height: calc(90vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url("images/lux/4.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Siyah Overlay */
    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* %5 siyah overlay */
    }
}

.fullscreen-image-sustain {
    width: 100%;
    height: calc(90vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url("images/lux/11.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Siyah Overlay */
    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* %5 siyah overlay */
    }
}


.fullscreen-image-about {
    width: 100%;
    height: calc(90vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url("images/lux/5.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Siyah Overlay */
    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* %5 siyah overlay */
    }
}

.fullscreen-image-contact {
    width: 100%;
    height: calc(90vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url("images/lux/10.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Siyah Overlay */
    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* %5 siyah overlay */
    }
}

.hero-text {
    position: relative;
    color: white;
    text-align: center;
    z-index: 2; /* Overlay'in üstünde kalması için */
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-text p {
    font-size: 1.5rem;
    margin-top: 10px;
}

.padding-efsane {
    padding: 80px !important;
}


.split-section {
    display: flex;
    align-items: stretch; /* Yüksekliği eşitle */
    justify-content: center; /* İçerikleri yatayda ortala */
    width: 100%;
    padding: 20px 50px;
    max-width: 1400px; /* Maksimum genişlik sınırı */
    margin: 0 auto; /* Ortalamak için */
}



.split-image {
    flex: 1;
    display: flex;
    align-items: normal;
    justify-content: center;
    overflow: hidden;
    padding: 40px;

}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Görselin bozulmasını önler */
    border-radius: 8px; /* Hafif bir yuvarlaklık */
    
}


.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* İçerikleri sola yasla */
    text-align: left; /* Yazıları sola hizala */
    padding: 40px;
    background: var(--primary-bg);
    color: var(--text-color);
}

.split-content h1 {
    font-size: 2.5rem;

}

.split-image-about h1 {
    font-size: 2.5rem;
}

.split-content p {
    font-size: 20px;
}

.split-content span {
    color: rgb(99, 204, 247);
}


.multiple-items-row {
    text-align: center;
    padding: 50px 90px;
    max-width: 1200px;
    margin: 0 auto;
}

.multiple-items-row h1 {
    font-size: 2rem;
    margin-bottom: 30px;

}

.multiple-items-row h3 {
    white-space: nowrap;
   /* filter: invert(50%) sepia(100%) saturate(1200%) hue-rotate(190deg) brightness(1.0) contrast(1.3);*/
}


/* Grid yapısı */
.items-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 eşit sütun */
    gap: 30px;
}

/* Her item */
.item {
    background: var(--secondary-bg);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

/* Hover efekti */
.item:hover {
    transform: translateY(-5px);
}

/* İkonlar */
.item-icon {
    width: 100%;
    height: 100%;
    border-bottom: solid lightgray 0.1px;
/*   filter: invert(50%) sepia(100%) saturate(1200%) hue-rotate(190deg) brightness(1.0) contrast(1.3);*/
}

.item-icon-sustain {
    width: 100%;
    max-width: 330px;
    padding: 20px;
}


.parallax-image-container{
    padding-top: 50px;
    padding-bottom: 50px;
}


.kd-parallax-image {
    position: relative;
    width: 100%;
    height: 600px; /* Tam ekran yüksekliği */
    overflow: hidden;
}

/* Overlay (Daha okunabilir içerik için) */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Hafif karanlık overlay */
    z-index: 1;
}

/* Parallax Resmi */
.kd-parallax-image .vc_figure img {
    width: 100%;
    height: 150%; /* Hafif büyük tutarak daha akıcı hareket sağlar */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
    z-index: 0;
    
}

.kd-parallax-image .hero-text {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    max-width: 80%;
    padding-bottom: 20px;
}

.kd-parallax-image .hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.kd-parallax-image .hero-text p {
    font-size: 1.2rem;
    line-height: 1.5;
}


.parallax-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.parallax-button:hover {
    background-color: #375a8c; /* Daha koyu mavi tonu */
    transform: scale(1.05);
}


/* 📌 Kategori Tab Bar */
.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 2px solid #ddd;
}

.category-tab {
    padding: 10px 18px;
    border: none;
    background: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    color: var(--text-color);
}

.category-tab:hover {
    color: var(--accent-color);
    font-weight: bold;
}

.category-tab.active {
    color: white;
    background: var(--accent-color);
    border-radius: 5px;
    padding: 10px 20px;
}

/* 📌 Alt Kategori Dropdown */
.subcategory-dropdown {
    text-align: center;
    margin-top: 10px;
}

#subcategorySelect {
    padding: 8px;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    background: var(--secondary-bg);
    color: var(--text-color);
}

/* 📌 Galeri Konteyneri */
.gallery-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Sayfa Genel Konteyneri */
.product-layout {
    display: flex;
    justify-content: center;  /* Sayfa ortalama */
    align-items: flex-start;  /* Üst hizalama */
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 40px;
}

/* Sol Ana Kategoriler */
.category-menu {
    width: 230px;
    background: var(--secondary-bg);
    padding: 15px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    height: 560px;
}

/* Ana kategori listesi */
.category-menu ul {
    list-style: none;
    padding: 0;
}

.category-menu li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease;
    border-radius: 10px;

}

.category-menu li:hover {
    border-radius: 10px;

}

/* Sağdaki Alt Kategoriler */
.subcategory-menu {
    width: 230px;
    background: var(--secondary-bg);
    padding: 15px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow-y: auto;
    display: none; /* Başlangıçta gizli */
    height: 560px;
}

/* Alt kategori listesi */
.subcategory-menu ul {
    list-style: none;
    padding: 0;
}

.subcategory-menu li {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin-bottom: 10px;

}

.subcategory-menu li:hover {
    border-radius: 10px;

}

/* Ürün Galerisi */
.product-gallery {
    background: var(--secondary-bg);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.category-menu li.active {
    background: var(--accent-color);
    color: white;
    border-radius: 10px;
}

/* Seçili Alt Kategori */
.subcategory-menu li.active {
    background: var(--accent-color);
    color: white;
    border-radius: 10px;

}


/* 📌 Thumbnail (Küçük Resimler) */
.thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 500px;
    overflow-y: auto;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) transparent;
    padding-right: 40px;
    height: 600px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 5px;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.thumbnail.selected {
    border: 3px solid var(--accent-color);
    border-radius: 8px;
}

/* 📌 Ana Resim */
.main-image {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background: #f5f5f5;
    padding: 10px;
}

.main-image img {
    width: 500px;
    height: 500px;
    object-fit: fill;
    border-radius: 10px;
}

/* 🔥 Scrollable Row Ana Yapı */
.scrollable-items-row {
    text-align: center;
    padding: 50px 20px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.scrollable-items-row h1 {
    font-size: 2.5rem;
    padding-bottom: 20px;
}

/* 📌 Scroll Alanı */
.scroll-container {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 50px; /* Butonlar için boşluk bırak */
}

/* 📌 Wrapper: Scrollable Alan */
.items-wrapper {
    width: 100%;
    overflow: hidden;
}

/* 📌 İçerik */
.scroll-items-container {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

/* 📌 Kaydırılabilir Öğeler */
.scroll-item {
    flex: 0 0 calc(100% / 4 - 20px); /* Büyük ekranlar için 4 item */
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.scroll-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 5px;
}

.scroll-item h3 {
    margin-top: 10px;
}

/* 🔥 Kaydırma Butonları */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6); /* Siyah, transparan */
    color: white;
    border: none;
    cursor: pointer;
    padding: 15px;
    font-size: 24px;
    border-radius: 5px;
    transition: background 0.3s ease;
    width: 40px; /* Kare boyut */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; /* Üstte tut */
}

/* Hover efekti */
.scroll-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* 📌 Butonları Container'ın DIŞINA Taşıdık */
.left-btn {
    left: 0;
}

.right-btn {
    right: 0;
}

/* 🔥 Fullscreen Modal (Gizli Başlangıçta) */
.fullscreen-modal {
    display: none; /* Başlangıçta gizli */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Siyah, yarı transparan */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* 📌 Açık Durumda */
.fullscreen-modal.active {
    display: flex;
}

/* 📌 İçerik */
.fullscreen-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.fullscreen-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    border-radius: 5px;
}

/* ❌ Kapatma Butonu */
#close-fullscreen {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

#close-fullscreen:hover {
    background: rgba(255, 0, 0, 0.8);
}

.map-container {
    width: 100%;
    height: 340px;
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none; /* Çerçeveyi kaldır */
}



.multiple-detailed-row {
    display: flex;
    align-items: stretch; /* İçerikleri parent'in yüksekliğiyle eşitle */
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 90px;
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;

}

/* 📌 Sol Taraf (Başlık ve Metin) */
.content-container {
    flex: 1;
    text-align: left;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* İçeriği dikeyde ortala */
}

.content-container h1 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.content-container p {
    font-size: 16px;
    color: var(--text-color-light);
    line-height: 1.6;
}

/* 📌 Sağ Taraf (Ögeler) */
.items-container {
    display: flex;
    flex: 2;
    gap: 20px;
    justify-content: center;
}

/* 📌 ✅ Çakışma Olmaması İçin `multiple-detailed-item` Kullanıldı */
.multiple-detailed-item {
    flex: 1;
    text-align: center;
    background: var(--secondary-bg);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.multiple-detailed-item:hover {
    transform: scale(1.05);
}

.split-item-urunler-special {
    gap: 0px;
}


.multiple-detailed-item-kutular:hover {
    transform: scale(1.2);
}


.multiple-detailed-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
    border-bottom: 0px;

}

.multiple-detailed-item h3 {
    margin-top: 10px;
    font-size: 18px;
    color: var(--text-color);
}


/* 📌 Genel Stil */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 90px;

}

.contact-section h1 {
    font-size: 32px;
    font-weight: bold;
}

.contact-description {
    font-size: 16px;
    color: #666;
    margin: 10px 0 30px;
}

/* 📌 İki Sütunlu Yapı */
.contact-container {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

/* 📌 Sol Form Alanı */
.contact-form {
    flex: 1;
    text-align: left;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

/* 📌 Form İçindeki Alanlar */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    height: 250px;
    resize: none;
}

/* 📌 Yan Yana Ad & Soyad */
.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

/* 📌 Telefon Numarası Alanı */
.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* 📌 Checkbox Alanı */
.checkbox-group {
    display: flex;
    flex-direction: column;
}

.checkbox-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-options label {
    font-size: 14px;
}

/* 📌 Gönder Butonu */
#send-message {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

#send-message:hover {
    background: var(--text-color);
}

/* 📌 Sağ Bilgi Alanı */
.contact-info {
    flex: 1;
    text-align: center;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.contact-block {
    margin-bottom: 20px;
}

.contact-block h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-block p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.contact-block a {
    display: block;
    color: black;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 5px;
}




/* 📌 1200px altında kategori ve alt kategoriyi galerinin üstüne al */
@media screen and (max-width: 1400px) {
    .language-selector {
        flex: 1.5;

    }

}

/* 📌 1200px altında kategori ve alt kategoriyi galerinin üstüne al */
@media screen and (max-width: 1200px) {

    .product-gallery{
        width: 100%;
    }


    .fullscreen-image {
        height: 60vh
    }
    
    
    .fullscreen-image-production {
        height: 60vh

    }
    
    .fullscreen-image-products {
        height: 60vh

    }
    
    .fullscreen-image-sustain {
        height: 60vh

    }
    
    .fullscreen-image-about {
        height: 60vh

    }
    
    .fullscreen-image-contact {
        height: 60vh
    }


    .multiple-detailed-item-kutular:hover {
        transform: scale(1) !important;
    }

    .logo {
        height: 45px;
    }

    .nav-list li {

        padding: 10px;
    }

    .product-layout {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

     /* 
    .category-menu li::before {
       content: "📂 "; Ana kategoriler için klasör ikonu 
    }
    .subcategory-menu li::before {
        content: "🔹 "; 
    }
    */

    .category-menu,
    .subcategory-menu {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 10px 10px;
        background: var(--secondary-bg);
        border-radius: 0px;
        box-shadow: var(--box-shadow);
        justify-content: center;
        gap: 10px;
        height: auto;
        scrollbar-width: none; /* Firefox için */
        -ms-overflow-style: none; /* Internet Explorer ve Edge için */
    }

    /* Ana ve alt kategorileri yatay hale getir */
    .category-menu ul,
    .subcategory-menu ul {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        padding: 0 10px;
    }

    .category-menu li,
    .subcategory-menu li {
        display: inline-block;
        border-radius: 10px;
        background: var(--secondary-bg);
        cursor: pointer;
        border: 1px solid #ddd;
        transition: all 0.3s ease;
        flex-shrink: 0;
        font-size: 0.8rem;
    }

    .category-menu li {
        font-size: 14px !important;
    }


    /* Hover ve seçili kategori için renk değişimi
    .category-menu li:hover,
    .subcategory-menu li:hover {
        background: var(--accent-color);
        color: white;
    }

     */
    .category-menu li.active {
        background: var(--accent-color);
        color: white;
    }


    .subcategory-menu li.active {
        border-radius: 10px;
        background: transparent;
        color: var(--text-color);
        border: solid 2px var(--accent-color);
    }


    .gallery-container {
        flex-direction: column;
        align-items: center;
        width: 100%; /* 📌 Ekran genişliğini aşmaması için */
        max-width: 100vw; /* 📌 Ekran dışına taşmasını engelle */
        overflow: hidden; /* 📌 İçerik taşıyorsa görünmez hale getirme */
        box-sizing: border-box; /* 📌 Padding dahil genişliği hesapla */
        padding: 0;
    }

    .thumbnails {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        height: auto;
        max-width: 100vw; /* 📌 Taşma olursa engelle */
        white-space: nowrap;
        display: flex;
        gap: 10px;
        justify-content: flex-start;
        padding: 10px;
        padding-bottom: 20px;
    }

    .thumbnail {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }


.main-image img {
    width: 100%;
    height: 100%;
}

}


@media screen and (max-width: 1000px) {
    .language-selector {
        flex: 1;
    }
}


/* Mobil Görünüm */
@media screen and (max-width: 900px) {

    .bottom-padding-adjustment {
        padding-bottom: 20px;
    }

    .product-gallery {
        border-radius: 0px;
    }

    .multiple-items-row h3{
        white-space: normal !important;
    }

    .multiple-detailed-item img {
        max-width: none;    
    }


    .split-item-urunler-special {
        gap: 20px;
    }

    .padding-efsane {
        padding: 0px !important;
        order: -3 !important;
    }

    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form { 
        width: 100%;
    }

    .contact-info {
        width: 100%;
        order: -1;
    }

    .contact-section {
        padding: 0px 20px;
    }

    .form-row {
        flex-direction: column;
    }

    footer {
        padding: 40px 20px; /* Mobilde padding küçültüldü */
    }

    .footer-left p {
        padding:10px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .footer-left, .footer-right {
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;

    }

    .footer-right {
        align-items: center;
        margin-top: 20px;
    }

    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }


    .special-split-order{
        order: 2;
    }

    .special-split-production{
        order: -2;
    }
    .special-split-gerib{
        order: -2 !important;
    }

    header {
        height: 80px;
    }

    main {
        padding-top: 80px; 
    }


    .menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .nav-list {
        flex: none;
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        background: var(--secondary-bg);
        width: 100%;
        text-align: center;
        box-shadow: var(--box-shadow);
    }

    .nav-list.active {
        display: flex;
    }

    .language-selector {
        flex: none;
        position: absolute;
    }

    .logo {
        height: 45px;
        position: relative;
        top: 5px
    }

    .hero-text h1 {
        font-size: 2rem !important;
    }

    .hero-text p {
        font-size: 1rem !important;
    }

    .split-section {
        flex-direction: column;
        padding: 20px;
    }

    .split-image {
        order: -1;
        width: 100%;
        height: auto;
        padding: 20px 10px;
    }

    .split-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .split-content {
        padding: 20px 10px;    
    }

    .split-content h1 {
        font-size: 1.5rem;
    }

    .split-image-about h1 {
        font-size: 1.5rem;
    }


    .multiple-items-row h1 {
        font-size: 1.5rem;
    }

    .items-container {
    /*   grid-template-columns: repeat(2, 1fr); */

        grid-template-columns: repeat(2, 1fr) !important;
        display: grid !important;

    }


    .parallax-image-container{
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .parallax-image {
        position: static;
        transform: none;
    }

    /*
    .fullscreen-image {
        background-image: url("images/cys_900.jpeg");
        height: calc(100vh - 70px);
    }

*/

    .scroll-item {
        flex: 0 0 calc(100% / 2 - 20px);
    }

    .scrollable-items-row h1 {
        font-size: 1.5rem;
        padding-bottom: 10px;
    }


    .multiple-detailed-row {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        background: transparent;
    }

    .content-container {
        max-width: 100% !important;
        text-align: center;
    }



    .multiple-detailed-item {
        width: 100%;
    }
}


@media (max-width: 600px) {

    header {
        height: 70px;
    }

    main {
        padding-top: 70px; 
    }

    .items-container {
        grid-template-columns: repeat(1, 1fr); /* 1 sütun olacak */
    }

    .logo {
        height: 35px;
        position: relative;
        top: 5px
    }

    /*
    .fullscreen-image {
        background-image: url("images/cys_600.jpeg");
    }
*/
    

    .category-tabs {
        flex-direction: column;
        align-items: center;
    }

    .multiple-items-row {
        padding: 20px 30px !important;
    }

    .split-content p {
        font-size: 16px;
    }

    .scroll-item {
        flex: 0 0 100%;
    }


}


@media (max-width: 500px) {

    .hero-text h1 {
        font-size: 1.7rem !important;
    }

}

@media (max-width: 450px) { 
    .hero-text h1 {
        font-size: 1.4rem !important;
        padding: 20px;
    }

}

@media (max-width: 400px) {



    .logo {
        height: 30px;
    }

    /*
    .fullscreen-image {
        background-image: url("images/cys_400.jpeg");
    }
        */
}

@media screen and (max-width: 380px) {
    .category-menu ul, .subcategory-menu ul {
        gap: 5px;
    }
}
