/* --- FONT START --- */
@font-face {
    font-family: 'Gothic A1';
    src: url('../font/GothicA1-Thin.ttf') format('truetype');
    font-weight: 100;
}

@font-face {
    font-family: 'Gothic A1';
    src: url('../font/GothicA1-ExtraLight.ttf') format('truetype');
    font-weight: 200;
}

@font-face {
    font-family: 'Gothic A1';
    src: url('../font/GothicA1-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'Gothic A1';
    src: url('../font/GothicA1-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Gothic A1';
    src: url('../font/GothicA1-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Gothic A1';
    src: url('../font/GothicA1-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'Gothic A1';
    src: url('../font/GothicA1-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Gothic A1';
    src: url('../font/GothicA1-ExtraBold.ttf') format('truetype');
    font-weight: 800;
}

@font-face {
    font-family: 'Gothic A1';
    src: url('../font/GothicA1-Black.ttf') format('truetype');
    font-weight: 900;
}
/* --- FONT END --- */









/*--- SAVT ICON PACK START ---*/
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

    .icon svg {
        width: 1em;
        height: 1em;
        fill: currentColor;
    }
    /*- LANGUAGE START -*/
.dropdown-lang {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 99;
}
.navbar-light .navbar-nav .nav-item .nav-link {
    color: #ffffff;
    padding-right: 0;
    padding-left: 0;
    margin-top: 10px;
}
/*- LANGUAGE END -*/
    /*--- SAVT ICON PACK END ---*/











    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Gothic A1', sans-serif;
}

body,
nav,
.bannerPhoto,
.modernBox,
.carbon,
.topHr,
.bottomHr,
.contact,
button,
iframe,
.hamburgerMenu svg,
.hamburgerOpenBg {
    transition: all 0.3s ease-in-out;
}

/* --- SCROLL BAR KALDIRMA START --- */
::-webkit-scrollbar {
    display: none;
    visibility: hidden;
    opacity: 0
}

/* --- SCROLL BAR KALDIRMA END --- */

/* --- ROOT START --- */
:root {
    --themeColor: #333;
    --themeColorDark: #282828;
    --themeColorBoom: #ce672d;
    --themeWhite: #f9f9f9;
    --themeWhiteDark: #eeeee8;
}

/* --- ROOT START --- */










/* --- NAVBAR START --- */
nav {
    background-color: #282828;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
}

    nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        nav .col-6 li a {
            display: block;
            padding: 10px 15px;
            text-decoration: none;
            letter-spacing: 2px;
        }

            nav ul li a:hover {
                background-color: #000;
                ;
                border-radius: 10px;
            }

    nav .left img {
        width: 112px;
        position: relative;
        z-index: 2;
    }

    nav .left {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav .right {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
    }

        nav .right svg {
            width: 23px;
            height: 23px;
            margin-left: 23px;
        }

    nav .productList {
        height: 100%;
        margin: auto;
        text-align: center;
    }

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 10px;
    z-index: 1;
    transform: translateY(60px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s linear;
    width: 100%;
    height: 250px;
    box-sizing: border-box;
    left: 0;
    display: flex;
    justify-content: space-around;
    overflow: hidden;
    color: #fff;
}

    .dropdown-content .productList img {
        width: 250px;
        margin: 5px;
        object-fit: contain;
    }

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(30px);
}

.productImage {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
}











.hamburgerMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

    .hamburgerMenu svg {
        width: 37px;
        height: 37px;
        color: var(--themeWhiteDark);
        display: none;
        position: relative;
        z-index: 3;
    }

.hamburgerOpen ul {
    height: 70vh;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 25px;
    display: none;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

    .hamburgerOpen ul li a {
        letter-spacing: 3px;
        font-size: 23px;
        margin: 10px;
        color: #fff !important;
    }

.hamburgerOpenBg {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    filter: blur(5px);
    opacity: 0; /* Başlangıçta saydam */
    visibility: hidden; /* Başlangıçta gizli */
    z-index: 1;
    backdrop-filter: blur(6px);
}

    .hamburgerOpenBg.active {
        opacity: 1;
        visibility: visible;
    }

.hamburgerOpen .darkLightMobile {
    width: 100%;
    height: 10vh;
    position: absolute;
    z-index: 2;
    top: 333px;
    left: 0;
    display: none;
    justify-content: center;
    align-items: end;
    color: #fff !important;
}

    .hamburgerOpen .darkLightMobile svg {
        width: 37px;
        height: 37px;
        color: var(--themeWhiteDark);
        display: block;
        position: relative;
        z-index: 3;
        margin-left: 40px;
    }
/* --- NAVBAR END --- */









/* --- CLASS START --- */
.carbon {
    background: repeating-linear-gradient(-45deg, var(--themeColor), var(--themeColorDark) 7px, var(--themeColor) 7px, var(--themeColor) 35px);
}

.topHr {
    margin-top: 100px;
    border: 1px solid var(--themeColorDark);
}

.bottomHr {
    margin-bottom: 100px;
    border: 2px solid var(--themeColorDark);
}

.section {
    width: 100%;
    padding: 10px 20% 10px 20%;
}

/* --- CLASS END --- */











/* --- BANNER START --- */
.bannerSection {
    height: 600px;
}

.modernBorder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 600px;
    position: absolute;
    pointer-events: none;
}

.modernBox {
    position: absolute;
    top: calc(100% - 57px);
    width: 57%;
    height: 57px;
    border-radius: 15px 15px 0 0;
    background-color: var(--themeColor);
}

.banner {
    width: 100%;
}
.bannerPhoto {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.pageTitle {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    bottom: 10px;
    /*margin: 0 50px 50px 50px;*/
    font-size: 43px;
    font-weight: 900;
    letter-spacing: 10px;
    text-align: center;
    background-attachment: fixed;
    color: transparent;
    background-clip: text;
}

/* --- BANNER END --- */










/* --- FOOTER START --- */
footer {
    height: 300px;
    background-color: var(--themeColorDark);
}

    footer .left {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

        footer .left img {
            width: 40%;
        }

    footer .mid {
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: 100%;
    }

        footer .mid h1 {
            font-size: 23px;
            margin-bottom: 20px;
        }

        footer .mid ul li {
            list-style: none;
            font-size: 18px;
            color: var(--themeWhiteDark);
            font-weight: 600;
            margin-bottom: 10px;
        }

    footer .right {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        flex-direction: column;
    }

        footer .right .icons i, footer .right .icons svg {
            width: 30px;
            height: 30px;
            margin: 10px;
            color: var(--themeColorBoom);
        }

        footer .right .address p {
            padding: 20px 57px 0 57px;
        }

    footer .powered {
        background-color: var(--themeColorDark);
        padding-left: 57px;
    }

        footer .powered a {
            color: var(--themeWhiteDark);
            font-weight: 600;
        }

/* --- FOOTER END --- */




















/* --- RESPONSIVE START --- */
@media all and (max-width: 1200px) and (min-width: 30px) {
    nav ul {
        display: none;
    }

    nav .right {
        display: none !important;
    }

    nav .hamburgerMenu {
        display: flex;
    }

        nav .hamburgerMenu svg {
            display: block;
        }

    .section {
        padding: 0;
    }

    .pageTitle {
        font-size: 30px;
        bottom: -25px !important;
    }

    footer {
        height: auto;
    }
}

@media all and (max-width: 500px) and (min-width: 30px) {
    .bannerSection{
        height: 400px;
    }
    .bannerPhoto{
        height: 400px;
        background-attachment: scroll !important;
    }
    .modernBorder{
        height: 400px;
    }
    body.light-mode .pageTitle{
        background-image: linear-gradient(var(--themeColor), var(--themeColorDark)) !important;
    }
    body.dark-mode .pageTitle{
        background-image: linear-gradient(var(--themeWhite), var(--themeWhiteDark)) !important;
    }
}
/* --- RESPONSIVE END --- */
