:root {
    --mainColor: #092e65;
    --bgColor: #ffffff;
    --black: black;

    --font1: "Arimo", sans-serif;
    --font2: "Pacifico", cursive;
}

* {
    margin: 0;
    padding: 0;
    font-family: var(--font1);
    box-sizing: border-box;
}

body {
    background-color: #f1f1f1;
}

nav {
    width: 100%;
    padding: 0 20px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: white;
}

nav button {
    display: none;
}

nav .logo {
    width: 100px;
    height: auto;
    margin-left: 320px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    margin-right: 140px;
}

nav ul li a {
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    color: var(--mainColor);
    transition: 0.3s;
    padding: 8px 12px;
    border-bottom: 1px solid transparent;
}

nav ul li a.active {
    border-color: var(--mainColor);
}

nav ul li a:hover {
    border-color: var(--mainColor);
    color: var(--mainColor);
}

@media (max-width: 1024px) {
    nav {
        padding: 10px 20px;
    }

    nav .logo {
        margin-left: 0;
    }

    nav ul {
        gap: 10px;
        margin-right: 0;
    }

    nav ul li a {
        font-size: 15px;
    }
}

@media (max-width: 768px) {

    nav {
        flex-direction: column;
        align-items: center;
    }

    nav button {
        display: block;
        font-size: 19px;
        font-weight: bold;
        margin-bottom: 3px;
        border: 1px solid var(--mainColor);
        padding: 5px;
        color: var(--mainColor);
        cursor: pointer;
        background-color: var(--bgColor);
        border-radius: 10px;
    }

    nav .logo {
        width: 50px;
        position: absolute;
        top: 0;
        left: 0;
        border-top-right-radius: 5px;
        z-index: 999999;
        background-color: white;

    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        width: 100%;
        padding: 12px;
        border-bottom: 1px solid #ddd;
    }
}



header {
    width: 100%;
    padding: 20px;
}

.headerImage {
    max-width: 1460px;
    margin: auto;
    display: flex;
    gap: 15px;
}

.mainImage {
    flex: 2;
}

.mainImage img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--mainColor);
}

.mainImage2 {
    flex: 1;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 3px solid var(--mainColor);
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mainImage2 span {
    position: absolute;
    text-transform: capitalize;
    background: var(--mainColor);
    border: 1px solid var(--mainColor);
    color: white;
    padding: 6px 12px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    font-weight: bold;
    z-index: 10;
}


@media (max-width: 992px) {
    .headerImage {
        flex-direction: column;
    }

    .mainImage img,
    .mainImage2 {
        height: 300px;
    }
}

@media (max-width: 600px) {
    header {
        padding: 10px;
    }

    .mainImage2 {
        border: none;
        border-radius: 15px;
    }

    .mainImage2 img {
        border-radius: 5px;
        height: 300px;
        border-radius: 15px;
        border: 3px solid var(--mainColor);
    }

    .mainImage2 span {
        font-size: 14px;
        padding: 4px 8px;
    }

    header .title {
        width: 100%;
        text-align: center;
        font-size: 18px;
        margin-top: 15px;
    }
}

header .title {
    color: var(--mainColor);
    font-size: 41px;
    font-weight: bold;
    text-transform: capitalize;
    border-bottom: 2px solid var(--mainColor);
    display: inline-block;
    padding-bottom: 5px;
    margin-top: 55px;
}


@media (max-width: 500px) {
    header .title {
        width: 100%;
        text-align: center;
        font-size: 20px;
    }
}

.biz_kimiz {
    width: 79%;
    margin: auto;
}

.biz_kimiz .biz-content .metin {
    width: 80%;
    margin: auto;
    font-family: var(--font1);
}

.biz_kimiz .biz-content {
    border: 2px solid var(--mainColor);
    border-radius: 10px;
    margin-top: 10px;
    font-size: 19px;
    background-color: var(--mainColor);
    text-transform: capitalize;
    padding: 5px;
    color: var(--bgColor);
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 1px 1px 5px var(--mainColor);
}

footer {
    width: 100%;
    background-color: var(--mainColor);
    color: var(--bgColor);
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    text-transform: capitalize;
    font-size: 18px;
}

footer .iletisim span {
    padding: 15px;
    font-size: 16px;
}

footer span {
    text-transform: uppercase;
    font-weight: bold;
}

@media (max-width: 500px) {
    footer .iletisim span {
        font-size: 13px;
    }
    footer .iletisim span:last-child {
        display: none;
    }
}

footer a {
    color: var(--bgColor);
    font-weight: bold;

}

.mesai {
    width: 78%;
    margin: auto;
}

.mesai .saatler {
    margin-top: 10px;
    border: 2px solid var(--mainColor);
    border-radius: 10px;
    padding: 15px;
}

.mesai .saatler .saat {
    font-size: 20px;
    font-weight: 300;
}

.mesai .saatler .saat span {
    color: var(--mainColor);
    font-weight: bold;
    text-transform: capitalize;
}

.mesai .saatler .saat span.kapali {
    color: red;
    text-transform: uppercase;
}

.mesai .saatler .saat span.degis {
    color: orange;
    text-transform: uppercase;
}

::-webkit-scrollbar {
    background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: var(--mainColor);
    border-radius: 50px;
}


/* ! Ürünler ve Galeri */

.urunler-content {
    padding: 10px;
    margin-top: 25px;
    margin: auto;
    text-align: center;
}

.urunler-content .urun {
    display: inline;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.urunler-content .urun img {
    width: 200px;
    height: 300px;
    margin: 5px;
    border-radius: 5px;
    border: 2px solid var(--mainColor);
    transition: all 0.3s ease-in-out;
}

.urunler-content {
    width: 100%;
    display: inline-block;
}

.urunler-content .urunG {
    display: inline-block;
    margin: 10px;
}

.urunler-content .urunG img {
    width: 400px;
    height: 220px;
    border: 2px solid var(--mainColor);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.urunler-content .urunG img:hover,
.urun img:hover {
    transform: translateY(-5px);
    box-shadow: 1px 1px 10px var(--mainColor);
}

@media (max-width: 500px) {
    .urunler-content .urunG img {
        width: 90%;
        height: 250px;
    }
}

/* ! İletişim */

.iletisim {
    width: 78%;
    margin: auto;
    padding: 10px;
}

.iletisim .iletisimCont {
    border-radius: 10px;
    margin-top: 25px;
    text-align: center;
    padding: 50px;
    justify-content: center;
}

.iletisim .iletisimCont .ilet {
    background-color: var(--mainColor);
    width: 26%;
    display: inline-block;
    border-radius: 25px;
    color: var(--bgColor);
    padding: 15px;
    gap: 25px;
}

.iletisim .iletisimCont .ilet i {
    font-size: 45px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.iletisim .iletisimCont .ilet .ititle {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.iletisim .iletisimCont .ilet a {
    text-decoration: none;
    color: var(--bgColor);
    text-transform: capitalize;
    font-weight: bold;
    border-bottom: 2px solid var(--bgColor);
}

@media (max-width: 1850px) {
    .iletisim .iletisimCont {
        width: 100%;
        margin: 0;
    }

    .iletisim .iletisimCont .ilet {
        display: block;
        width: 100%;
        margin-top: 5px;
        background-color: transparent;
        color: var(--mainColor);
        border-bottom: 2px solid var(--mainColor);
        border-radius: 0;
    }

    .iletisim .iletisimCont .ilet a {
        color: var(--mainColor);
        border: none;
    }
}

/* ' Ana cont */

.cont {
    width: 78%;
    margin: auto;
    margin-top: 25px;
}


/* ? header Menü */

.menu a {
    text-decoration: none;
    color: var(--mainColor);
    text-transform: capitalize;
    font-weight: bold;
}

.menu .menu-col img:hover {
    transform: translateY(-5px);
    box-shadow: 1px 1px 3px var(--mainColor);
}

.menu .menu-col {
    display: inline-block;
    padding: 15px;
}

.menu .menu-col img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    background-repeat: no-repeat;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid var(--mainColor);
    transition: all 0.5s ease-in;
}

.menu {
    width: 100%;
    text-align: center;
}


/* * fuar */

.fuar {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 2px solid var(--mainColor);
    padding: 20px;
    border-radius: 8px;
    flex-wrap: wrap;
}

.fuar .col-1 {
    flex: 1 1 400px;
    font-size: 20px;
    line-height: 1.6;
}

.fuar img {
    flex: 1 1 400px;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    border: 2px solid var(--mainColor);
    display: block;
    margin: auto;
}

@media (max-width: 900px) {
    .fuar {
        flex-direction: column;
        text-align: center;
    }

    .fuar .col-1 {
        font-size: 18px;
    }

    .fuar .col-1:last-child {
        margin-bottom: -110px;
    }

    .fuar .col-2:last-child {
        margin-top: -120px;
    }

    .fuar img {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .fuar {
        padding: 15px;
    }

    .fuar .col-1 {
        font-size: 15px;
    }

    .fuar img {
        width: 100%;
        border-radius: 8px;
    }
}

form {
    width: 100%;
    margin-top: 15px;
    padding: 25px;
    border: 2px solid var(--mainColor);
    border-radius: 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

form label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: capitalize;
}

form input,
form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    outline: none;
    transition: 0.2s ease;
}

form input:focus,
form textarea:focus {
    border-color: var(--mainColor);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

form textarea {
    resize: vertical;
    min-height: 120px;
}

form button {
    margin-top: 10px;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: var(--mainColor);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    form {
        padding: 20px;
    }

    form label {
        font-size: 13px;
    }

    form input,
    form textarea {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    form {
        width: 100%;
        margin: auto;
        margin-top: 15px;
        margin-bottom: 15px;
        padding: 15px;
    }

    form button {
        font-size: 14px;
        padding: 10px;
    }
}