@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
    --primary-red: #b1212a;
    --dark-red: #9e141a;
    --text-dark: #333;
    --primary-orange: #b1212a;
    --text-gray: #666;
    --text-light: #fff;
    --font1: 'Raleway', sans-serif;
}

body {
    font-family: var(--font1);
    padding: 0px;
    margin: 0px;
}

body.menu-open {
    overflow: hidden;
}

a{
    color: black;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    /* Crucial for sliding effect */
}

/* Sliding Container */
.slides-wrapper {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: transform 0.6s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Top bar floating right */
.top-bar-wrapper {
    position: relative;
    float: right;
    display: flex;
}

.top-bar {
    display: flex;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
}

.top-bar-item {
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.5px;
    width: auto;
    background: rgba(0, 0, 0, 0.42);
    color: #FFF;
    padding: 10px 10px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    float: left;
    margin-left: 3px;
    cursor: pointer;
    text-decoration: none;
}

.top-bar-item i {
    margin-right: 6px;
    font-size: 12px;
}

/* Languages */
.diller {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0px;
    background-color: transparent;
    align-items: center;
}

.diller li {
    display: flex;
    align-items: center;
}

.diller a.diil {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    width: auto;
    background: rgba(0, 0, 0, 0.42);
    color: #FFF;
    padding: 10px 10px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    float: left;
    margin-left: 3px;
    cursor: pointer;
    text-decoration: none;
}

.diller .icon {
    display: none;
}

.lang-btn {
    text-transform: uppercase;
    font-weight: 600;
}

/* Main Header */
.site-header {
    position: relative;
    width: 100%;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    /* Push menu to right */
    align-items: center;
}

/* Logo */
.logo {
    display: block;
    background-color: rgba(0, 0, 0, 0.45);
    padding: 10px;
    z-index: 1002;
}

.logo img {
    height: 90px;
    /* Taller logo for the side-by-side layout */
    object-fit: contain;
}

#main-menu .nav-submenu > ul a.active{
  background: transparent;
  color: white;
}
#main-menu a.active{
    color: #b1212a;
    background: #fff;
}


/* Menu */
.main-nav {
    display: flex;
    margin-left: auto;
}

#main-menu {
    list-style: none;
    display: flex;
    height: 100%;
    padding: 0;
}

#main-menu li {
    display: flex;
    align-items: center;
}

#main-menu li:first-child {
    background-color: red;
    display: none;
}

#main-menu a {
    text-decoration: none;
    color: #FFF;
    padding: 10px 15px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

#main-menu a:hover {
}

/* Dropdown Submenu */
#main-menu .nav-submenu {
    position: relative;
}

#main-menu .nav-submenu > a::after {
    content: " \25BC"; /* Downward triangle ▼ */
    font-size: 8px;
    margin-left: 6px;
    vertical-align: middle;
}

#main-menu .nav-submenu > ul {
    display: none;
    position: absolute;
    top: 57px;
    left: 0;
    margin: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.6);
    margin-top: 0px;
    margin-left: 0px;
    background-clip: inherit;
    border: 0;
    border-radius: 0;
    box-shadow: inherit;
    padding: 0;
    min-width: 170px;
}

#main-menu .nav-submenu.open > ul {
    display: block;
}

#main-menu .nav-submenu.open > ul li:first-child{
    background-color: transparent;
    display: block;
}

#main-menu .nav-submenu > ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

#main-menu .nav-submenu > ul a {
    display: block;
    padding: 12px 15px;
    font-size: 12px;
    text-transform: uppercase;
}

.caret {
    font-size: 8px;
    margin-left: 5px;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 40px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.slider-arrow.left {
    left: 0;
}

.slider-arrow.right {
    right: 0;
}

.slider-caption {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: 300;
    z-index: 9;
    letter-spacing: 1px;
}

/* Mobile Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    margin-left: auto;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 992px) {
    .site-header {
        background-color: transparent;
        top: 0;
        height: 60px;
    }

    .top-bar-wrapper {
        display: flex;
        position: absolute;
        top: 10px;
        right: 70px;
        z-index: 1001;
    }

    .top-bar-item {
        display: none !important; /* İletişim bilgilerini mobilde gizle */
    }

    .diller.top-bar-item {
        display: flex !important; /* Dilleri mobilde göster */
        background: transparent;
        padding: 5px;
        margin: 0;
    }

    .logo {
        top: 0;
        padding: 5px;
    }

    .logo img {
        height: 50px;
    }

    .menu-toggle {
        display: block;
        align-self: center;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: #111;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 70px;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    #main-menu {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    #main-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        flex-direction: column;
        align-items: flex-start;
    }

    #main-menu a {
        padding: 15px 20px;
        font-size: 13px;
        width: 100%;
        text-shadow: none;
    }

    /* Mobilde açılır menü ayarları */
    #main-menu .nav-submenu > ul {
        position: static;
        background-color: rgba(255,255,255,0.05);
        width: 100%;
    }
    
    #main-menu .nav-submenu.open > ul {
        display: block;
    }

    .slider-caption {
        display: none;
        font-size: 18px;
        left: 10%;
        padding: 15px 20px;
    }
}



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;
    }

    .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;
}



/* =========================================
   3. FOOTER SECTION
   ========================================= */
.site-footer {
    background-color: #fff;
    padding: 60px 0 20px;
}

.footer-title {
    font-size: 24px;
    font-weight: 300;
    color: #888;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-col {
    font-size: 13px;
    color: #777;
    line-height: 1.8;
}

.footer-col p {
    margin-bottom: 5px;
    padding: 0 40px 0px 0;
}

.footer-col-1 {
    flex: 0 0 45%;
}

.footer-col-1 strong {
    color: #444;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-col-2 {
    flex: 0 0 20%;
}

.footer-col-3 {
    flex: 0 0 25%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.social-links .linkedin {
    background-color: #0077b5;
}

.social-links .instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.footer-logo img {
    height: 115px;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #aaa;
}

@media (max-width: 992px) {
    .footer-bottom{
        display: block;
        line-height: 20px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-col-3 {
        justify-content: flex-start;
        margin-top: 20px;
    }
}