/* Global Styles */

:root {

    --primary-color: #e62e31;

    /* Kayo Red/Orange from original site */

    --secondary-color: #333;

    --text-color: #1a1a1a;

    --light-gray: #f4f4f4;

    --white: #ffffff;

    --font-family: 'Roboto', sans-serif;

}



* {



    margin: 0;

    padding: 0;

}



body {

    font-family: var(--font-family);

    line-height: 1.6;

    color: var(--text-color);

    background-color: var(--white);

}



a {

    text-decoration: none;

    color: inherit;

    transition: color 0.3s;

}



ul {

    list-style: none;

}



img {

    max-width: 100%;

    display: block;

}



/* Header */

header {

    background-color: var(--white);

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    position: sticky;

    top: 0;

    z-index: 1000;

    border-bottom: 1px solid #eee;

    /* Subtle bottom border for header */

}



.top-bar {

    background-color: var(--primary-color);

    color: var(--white);

    padding: 10px 0;

    font-size: 1.1rem;

    font-weight: bold;

}



.top-bar-content {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.top-bar-social {

    display: flex;

    align-items: center;

}



.top-bar-text {

    flex-grow: 1;

    text-align: center;

    padding: 0 10px;

}



.nav-container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 10px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}



/* Center the nav element */

header nav {

    margin: 0 auto;

}



.logo img {

    height: 50px;

}



.nav-menu {

    display: flex;

    gap: 30px;

}



.nav-menu li a {

    font-weight: 700;

    text-transform: uppercase;

    font-size: 1.1rem;

    /* Increased font size */

    padding-bottom: 5px;

    border-bottom: 3px solid transparent;

    transition: all 0.3s;

}



.nav-menu li a:hover,

.nav-menu li a.active {

    color: var(--primary-color);

    /* Remove the underline effect */

}



.mobile-menu-btn {

    display: none;

    font-size: 1.5rem;

    cursor: pointer;

    margin-left: auto;

    order: 3;

}



/* Slider Section */

.slider-container {

    width: 100%;

    max-width: 100%;

    margin: 0;

    /* Remove margin for edge-to-edge look */

    position: relative;

    overflow: hidden;

    height: 500px;

    /* Fixed height retained */

    background: #000;

}



.slider-wrapper {

    display: flex;

    transition: transform 0.5s ease-in-out;

    height: 100%;

}



.slide {

    min-width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}



.slide img,

.slide video {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.slider-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background: rgba(0, 0, 0, 0.5);

    color: white;

    border: none;

    padding: 10px 15px;

    cursor: pointer;

    font-size: 24px;

    z-index: 10;

}



.prev-arrow {

    left: 10px;

}



.next-arrow {

    right: 10px;

}



/* Categories */

.categories-section {

    max-width: 1200px;

    margin: 40px auto;

    padding: 0 20px;

    text-align: center;

}



.categories-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 20px;

    margin-top: 30px;

}



.category-card {

    position: relative;

    overflow: hidden;

    border-radius: 8px;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}



.category-card img {

    transition: transform 0.3s;

}



.category-card:hover img {

    transform: scale(1.05);

}



.category-title {

    position: absolute;

    bottom: 20px;

    left: 0;

    width: 100%;

    text-align: center;

    color: black;

    font-size: 1.5rem;

    font-weight: bold;

    text-shadow: none;

}



/* Scrolling Banner */

.scrolling-banner {

    background-color: white;

    overflow: hidden;

    white-space: nowrap;

    padding: 0px 0;

}



.scrolling-content {

    display: inline-block;

    font-size: 110px;

    animation: scroll-left 120s linear infinite;

    font-weight: 900;

    letter-spacing: 3px;

    font-family: 'Impact', 'Arial Black', 'Bebas Neue', 'Anton', sans-serif;

    will-change: transform;

    backface-visibility: hidden;

    perspective: 1000px;

    transform: translateZ(0);

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

}

.scrolling-content span.kayo {
    color: #fc4c02;
}

.scrolling-content span.turkiye {
    -webkit-text-fill-color: white;
    -webkit-text-stroke: 3px #fc4c02;
    text-stroke: 2px #fc4c02;
    background-color: transparent;
    border: none;
    padding: 0 10px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}



/* Footer */

footer {

    background-color: var(--secondary-color);

    color: var(--white);

    padding: 40px 20px;

    margin-top: 50px;

}



.footer-content {

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 40px;

}



.footer-column h3 {

    margin-bottom: 20px;

    border-bottom: 2px solid var(--primary-color);

    display: inline-block;

    padding-bottom: 5px;

}



.footer-column ul li {

    margin-bottom: 10px;

}



.footer-column ul li a:hover {

    color: var(--primary-color);

}



/* Responsive */

@media (max-width: 768px) {

    .nav-menu {

        display: none;

        /* Hide for now, requires JS toggle */

        flex-direction: column;

        position: absolute;

        top: 60px;

        left: 0;

        width: 100%;

        background: white;

        padding: 20px;

        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);

    }



    .nav-menu.active {

        display: flex;

    }



    .mobile-menu-btn {

        display: block;

        margin-left: auto;

    }



    .slider-container {

        height: auto;

        aspect-ratio: 12/5;

        /* Maintain aspect ratio */

    }


    /* Mobil için kayan yazı düzenlemeleri */
    .scrolling-content {
        font-size: 80px;
    }

    .scrolling-content span.turkiye {
        color: white;
        -webkit-text-fill-color: white;
        -webkit-text-stroke: 0;
        text-stroke: 0;
        /* Text-shadow ile kenarlık efekti */
        text-shadow:
            -1px -1px 0 #fc4c02,
            1px -1px 0 #fc4c02,
            -1px 1px 0 #fc4c02,
            1px 1px 0 #fc4c02,
            -2px 0 0 #fc4c02,
            2px 0 0 #fc4c02,
            0 -2px 0 #fc4c02,
            0 2px 0 #fc4c02;
        padding: 0 5px;
    }

}