:root {

    --primary-color: #ebe5ee;
    --secondary-color: #eeecf0;
    --accent-color: #d8b3f3;
    --special-color: #e6e1e9;
    --background-color: #f3eef5;
    --text-color: #1b1522;
    --paragraph-color: #484548;
    --bold-color: #6b1582;
    --hover-color: #44264d;
    --hover-color2: #f3f0f4;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Rubik", sans-serif;
    background-color: var(--background-color);
    color: black;
    line-height: 1.6;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {

    margin-bottom: 15px;
    font-weight: bold;

}

p {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: var(--hover-color);
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
}

/* NAV SECTION */

nav {
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 60px 0px 60px;
    height: 3.2rem;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 300;
    font-size: 13px;
    color: var(--text-color);
    transition: ease-in 0.5s;

}

.list-item:hover {
    color: var(--hover-color);
}

.list-item a,
li {
    transition: ease-in 0.4s;
    margin: 0px;
}

.list-item a {
    text-underline-offset: 6px;
    transition: ease-in-out 0.1s;
}

.list-item a:hover {
    text-underline-offset: 3px;
    text-decoration: underline 2px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo img {
    width: 50px;
    cursor: pointer;
}

.logo-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: ease-in 0.5s;
    margin: 0;
}

.last-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.user-icon {
    cursor: pointer;
    font-size: 18px;
    transition: ease-in 0.4s;
}

.user-icon:hover {
    color: var(--hover-color);
}

.user-text {
    font-size: 13px;
    font-weight: 300;
    margin: 0;
    cursor: pointer;
    transition: ease-in 0.3s;
}

.user-text:hover {
    color: var(--hover-color);
}

/* NAV SECTION */



/* Hidebar SECTION */


.respo {
    display: none;
}


.hidebar-list {
    left: 57%;
    position: relative;
    display: none;
    width: 150px;
}

.h-list-item {
    cursor: pointer;
    font-weight: 300;
    font-size: 13px;
    color: var(--text-color);
    display: block;
    z-index: 1;
    position: absolute;
    background-color: var(--secondary-color);
}

.h-list-item li {
    align-items: center;
    justify-content: center;
    padding: 20px 40px 20px 40px;
}

.h-list-item li:hover {
    background-color: var(--hover-color2);
}

/* Hidebar SECTION */



/* Sidebar SECTION */

.hide-btn {
    display: none;
    position: absolute;
    left: 5%;
    top: 1.8%;
}

.hide-btn i {
    font-size: 19px;
    cursor: pointer;
    align-items: center;
}

/* Çarpı ikonu başlangıçta gizli olacak */
.open-icon {
    display: inline;
}

.close-icon {
    display: none;
    /* Kapama ikonu başlangıçta gizli */
}


.sidebar-list {
    width: 100%;
    position: absolute;
    display: none;
    z-index: 1;
    background-color: var(--secondary-color);
    font-size: 15px;
    font-weight: 400;
}

.sidebar-list li {
    align-items: center;
    justify-content: left;
    padding: 20px 0 20px 30px;
    border: 1px solid rgb(224, 223, 223);
    /* Çerçeve rengi ve kalınlığı */
}

.sidebar-list a {
    color: var(--text-color);
}

.sidebar-list li:hover {
    background-color: var(--hover-color2);
}

/* Sidebar SECTION */




/* Slider SECTION */

.slider-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 1920px;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    /* Görüntüyü yukarı doğru çekmek için */

}

.slider-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 400px;
    color: #fff;
}

.slider-content a {
    color: #fff;
}

.tag {
    display: inline-block;
    background-color: #51cb51;
    /* Vurgulu yeşil renk */
    color: #000;
    padding: 5px 10px;
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 10px;
}

.slider-content h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    line-height: 1.2;
}

.slider-content p {
    font-weight: 300;
    font-size: 1em;
    margin-bottom: 20px;
}

.slider-content button {
    background-color: var(--bold-color);
    color: #fff;
    padding: 10px 70px;
    font-size: 1em;
    font-weight: 500;
    border: none;
    cursor: pointer;
    border-radius: 1px;
    transition: background-color 0.5s ease;
}

.slider-content button:hover {
    background-color: var(--hover-color);
}

button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(12, 12, 12, 0.5);
    color: #fff;
    border: none;
    padding: 5px;
    cursor: pointer;
    font-size: 21px;
    user-select: none;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


/* Mobil versiyon slider content */
.slider-content-mobile {
    flex-wrap: nowrap;
    display: none;
    padding: 20px;
    color: #fff;
    border-radius: 5px;
    margin: 20px;
    text-align: left;
}

.slider-content-mobile a {
    color: #fff;
}

.slider-content-mobile .tag {
    margin-bottom: 10px;
    background-color: #51cb51;
    /* Vurgulu yeşil renk */
    color: #000;
    padding: 5px 10px;
    font-size: 0.9em;
    font-weight: 500;
}

.slider-content-mobile h2 {
    color: var(--text-color);
    font-size: 1.8em;
    margin-bottom: 10px;
}

.slider-content-mobile p {
    color: var(--paragraph-color);
    font-weight: 300;
    font-size: 1em;
    margin-bottom: 20px;
}

.slider-content-mobile button {
    background-color: var(--bold-color);
    color: #fff;
    padding: 10px 70px;
    font-size: 1em;
    font-weight: 500;
    border: none;
    cursor: pointer;
    border-radius: 1px;
    transition: background-color 0.3s ease;
}

.slider-content-mobile button:hover {
    background-color: var(--hover-color);
}


/* Slider SECTION */


/* Music Button */

.music-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.music-button button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

.music-button i {
    color: var(--bold-color);
    font-size: 17px;
}

.music-button button:hover {
    transform: scale(1.1);
}


/* Music Button */


/* Product SECTION */

.product-container {
    display: flex;
    gap: 20px;
    margin: 50px 0 20px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 1rem;
}

.product-image {
    width: 100%;
    height: auto;
}

.product-card h3 {
    font-size: 1.7em;
    margin: 16px 0;
    padding: 10px;
}

.product-card p {
    color: #666;
    font-size: 0.9em;
    margin: 8px 0;
    padding: 10px;
}

.product-card button {
    background-color: #0078d4;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 0.9em;
    margin-top: auto;
    margin: 10px;
    border-radius: 5%;
    /* Bu satır butonu en alta sabitler */
}

.product-card button:hover {
    background-color: #005a9e;
}


/* Product SECTION */




/* PROJECT SECTION */

.project-container {
    overflow: hidden;
    max-width: 100%;
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.project-container h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
    width: 90%;
}

.project-dec-hide {
    display: none;
    font-size: 15px;
    font-weight: 300;
    width: 100%;
    margin-bottom: 45px;
}

.project-carousel p {
    font-size: 22px;
    font-weight: 300;
    width: 15%;
    margin-right: 35px;
}

.project-carousel-container {
    width: 90%;
    display: flex;
    justify-content: flex-start;

}

.project-carousel {
    display: flex;
    transition: transform 0.3s ease;
}

.project-card {
    cursor: pointer;
    width: 420px;
    margin: 0 15px;
    background-color: white;
    border-radius: 2px;
    box-shadow: 4px 5px 7px -2px rgba(0, 0, 0, 0.6);
    text-align: left;
    margin-bottom: 35px;

}

.project-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 2px;
}

.project-card-content {
    padding: 15px;
}

.project-card h2 {
    font-size: 1.25rem;
    color: #333;
}

.project-card h3 {
    font-weight: 500;
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 10px
}

.project-card p {
    width: 80%;
    font-size: 1rem;
    color: #555;
}

.project-slider {
    width: 60%;
    margin: 20px auto;
    appearance: none;
    height: 4px;
    outline: none;
    cursor: pointer;
    background: linear-gradient(to right, #8a2be2 0%, #8a2be2 0%, #ddd 0%, #ddd 100%);
    transition: background 0.3s ease;
}

.project-slider::-webkit-slider-thumb {
    appearance: none;
    width: 0;
    height: 0;
}

.project-nav-buttons {
    display: flex;
    justify-content: center;
    width: 100px;
    margin: 10px auto;
}

.project-nav-buttons button {
    background-color: #8a2be2;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: 5px 10px;
}

.project-nav-buttons button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* PROJECT SECTION */





/* Footer SECTION */



/* Genel footer ayarları */
.footer-container {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 10px;
    color: var(--text-color);
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
}

.footer-column {
    display: flex;
    flex: 1;
    padding: 14px;
    align-items: center;
    justify-content: center;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;

}

.footer-column li {
    padding: 7px 0 7px 0;

}

.footer-column ul li a {
    color: var(--paragraph-color);
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;

}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-column-header {
    display: flex;
    font-size: 14px;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-color);
    font-weight: 500;
}


/* Sosyal medya ve copyright ayarları */
.social-media {
    display: flex;
    gap: 15px;
    font-size: 14px;
    flex-direction: row;
    margin-right: 70px;
    margin-top: 15px;
}

.social-media a {
    color: var(--bold-color);
    text-decoration: none;
}

.social-media a:hover {
    color: var(--hover-color);
}

.social-media i {
    color: var(--text-color);
    font-size: 16px;
}

.social-media :hover {
    color: var(--hover-color);

}


/* Last Footer Section */

.last-fot {
    padding-left: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lang-item {
    display: flex;
    align-items: center;
    margin: 0px;
    gap: 10px;
}

.lang-item i {
    font-size: 19px;
    margin: 0px;
    cursor: pointer;
    color: var(--bold-color);
    transition: ease-in-out 0.4s;
}

.lang-item i:hover {
    color: var(--hover-color);
}

.lang-item h4 {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color);
    margin: 0px;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: var(--paragraph-color);
    width: 100%;
    margin-top: 20px;
}



/* Footer SECTION */


/* RESPONSIVE */


/* Büyük Ekran */

@media (max-width:1200px) {

    .list-item {
        gap: 15px;
    }

    .slides img {
        height: 55vh;
    }

    .project-container {
        margin: 80px auto;
    }

    .project-container h1 {
        font-size: 1.5rem;
    }

    .project-carousel p {
        font-size: 17px;
        font-weight: 300;
        width: 12%;
        margin-right: 30px;
    }

    .project-card h2 {
        font-size: 1.1rem;
        color: #333;
    }

    .project-card h3 {
        font-weight: 500;
        font-size: 0.6rem;
        color: #333;
        margin-bottom: 10px
    }

    .project-card p {
        width: 78%;
        font-size: 0.9rem;
        color: #555;
    }

    .project-card {
        width: 350px;

    }

    .project-card img {
        width: 100%;
        height: 300px;
    }
}

@media (min-width:993px) {
    .h-list-item {
        display: none;
    }


}

/* Büyük Ekran */

/* Orta Ekran */

@media (max-width:992px) {

    .hide-item {
        display: none;
    }

    .respo {
        display: block;
    }

    .slides img {
        height: 50vh;
    }

    .social-media {
        flex-direction: column;

    }

    .product-card {
        width: 250px;
    }

    .product-card h3 {
        font-size: 1.5em;
    }
    
    .product-card p {
        font-size: 0.9em;
    }
}

/* Orta Ekran */

@media (min-width:769px) {

    .sidebar-list li {
        display: none;
    }

}

/* Küçük Ekran */

@media (max-width:768px) {

    .hide-btn {
        display: block;
    }

    .list-item {
        display: none;
    }

    .sidebar-list {
        display: none;
    }

    nav {
        padding: 0 40px 0 40px;
    }

    .h-list-item {
        display: none;
    }


    .slider-wrapper {
        flex-direction: column;

    }

    .slides img {
        height: 45vh;
    }


    .slider-content {
        display: none;
    }

    .slider-content-mobile {
        display: block;
        /* Mobil içerik görünür olacak */
    }

    .project-container {
        margin: 70px auto;
    }

    .project-container h1 {
        font-size: 1.2rem;
        width: 100%;
    }

    .project-carousel-container {
        width: 100%;

    }

    .project-carousel p {
        font-size: 15px;
        font-weight: 300;
        width: 10%;
        margin-right: 30px;
        display: none;
    }

    .project-dec-hide {
        display: block;
    }

    .project-card h2 {
        font-size: 1rem;
        color: #333;
    }

    .project-card h3 {
        font-weight: 500;
        font-size: 0.6rem;
        color: #333;
        margin-bottom: 8px
    }

    .project-card p {
        width: 78%;
        font-size: 0.8rem;
        color: #555;
    }

    .project-card {
        width: 280px;

    }

    .project-card img {
        width: 100%;
        height: 250px;
    }

    
    .navbar-logo img {
        margin-left: 40px;
    }
    
    .logo-text {
        font-size: 20px;
        font-weight: 500;
        color: var(--text-color);
        cursor: pointer;
        transition: ease-in 0.5s;
        margin: 0;
    }
}

/* Küçük Ekran */


/* Ekstra Küçük Ekran */

@media (max-width:576px) {

    .navbar-logo {
        gap: 5px;
    }

    .navbar-logo img {
        width: 40px;
    }

    .user-icon {
        font-size: 15px;
    }

    .user-text {
        display: none;
    }

    .slides img {
        height: 42vh;
    }

    .slider-content-mobile button {
        padding: 10px 40px;
        font-size: 0.9em;
    }


    .social-media {
        flex-direction: row;
        margin-right: 0px;
        margin-left: 10px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .footer-container {
        flex-direction: column;
    }

    .logo-text {
        font-size: 15px;

    }

    .last-fot {
        flex-direction: column;
        justify-content: left;

    }

    .hide-btn {
        left: 5%;
        top: 1.6%;
    }

    .hide-btn i {
        font-size: 17px;
    }

    .music-button {
        opacity: 0.7;
    }

    .lang-item h4 {
        font-size: 11px;
    }

    .project-container {
        margin: 50px auto;
    }

    
    .product-card {
        width: 300px;
    }

    .product-card h3 {
        font-size: 1.2em;
    }
    
    .product-card p {
        font-size: 0.8em;
    }



    .project-container {
        margin: 40px auto;
    }

    .project-container h1 {
        font-size: 1.5rem;
        width: 100%;
    }

    .project-carousel-container {
        width: 100%;

    }

    .project-carousel p {
        font-size: 12px;
        font-weight: 300;
        width: 10%;
        margin-right: 30px;
        display: none;
    }

    .project-dec-hide {
        display: block;
    }

    .project-card h2 {
        font-size: 1rem;
        color: #333;
    }

    .project-card h3 {
        font-weight: 500;
        font-size: 0.6rem;
        color: #333;
        margin-bottom: 8px
    }

    .project-card p {
        width: 78%;
        font-size: 0.6rem;
        color: #555;
    }

    .project-card {
        width: 220px;

    }

    .project-card img {
        width: 100%;
        height: 180px;
    }
}

/* Ekstra Küçük Ekran */