:root {
    --bg-primary: #050506;
    --bg-secondary: #0a0a0c;
    --bg-tertiary: #0f0f12;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-strong: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.07);
    --border-soft: rgba(255, 255, 255, 0.04);
    --text-primary: #e8ecf7;
    --text-secondary: #aab0c3;
    --text-dim: #6f7385;
    --accent-cyan: #00e5ff;
    --accent-violet: #6f00ff;
    --accent-green: #2cf1a0;
    --shadow-strong: 0 26px 80px rgba(0, 0, 0, 0.65);
    --shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.45);
    --radius-md: 14px;
    --radius-lg: 18px;
    --nav-height: 78px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Space Grotesk", "Rubik", system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at 20% 20%, rgba(111, 0, 255, 0.08), transparent 35%),
        radial-gradient(circle at 80% 0%, rgba(0, 229, 255, 0.07), transparent 28%),
        linear-gradient(180deg, #050506 0%, #0a0b10 55%, #050506 100%);
    color: var(--text-primary);
    line-height: 1.7;
    letter-spacing: 0.01em;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 0),
        radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 0);
    background-size: 140px 140px, 240px 240px;
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

::selection {
    background: rgba(0, 229, 255, 0.25);
    color: var(--text-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2rem, 3vw, 3rem);
}

h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

p {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: var(--text-primary);
    opacity: 0.9;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
}

/* NAV SECTION */

nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 5, 6, 0.88);
    backdrop-filter: blur(12px) saturate(150%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px clamp(22px, 5vw, 64px);
    height: var(--nav-height);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03), 0 24px 60px rgba(0, 0, 0, 0.68);
}

nav::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.5), rgba(111, 0, 255, 0.4), transparent);
    pointer-events: none;
}

.list-item {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 32px);
    font-weight: 400;
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.list-item a {
    position: relative;
    padding-bottom: 12px;
}

.list-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.8), rgba(111, 0, 255, 0.9));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.35);
}

.list-item a:hover::after {
    transform: scaleX(1);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo img {
    width: 52px;
    cursor: pointer;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.65));
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.last-nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

.user-text {
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    cursor: pointer;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--text-primary);
    border: 1px solid var(--border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: 0.2s ease;
}

.user-text:hover {
    border-color: rgba(0, 229, 255, 0.5);
    color: var(--accent-cyan);
}

.last-nav a {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(111, 0, 255, 0.2));
    border: 1px solid var(--border);
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--text-primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.last-nav a:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 229, 255, 0.6);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.55), 0 0 18px rgba(0, 229, 255, 0.25);
}

/* NAV DROPDOWN + SIDEBAR */

.respo {
    display: none;
}

.hidebar-list {
    left: 57%;
    position: relative;
    display: none;
    width: 170px;
}

.h-list-item {
    cursor: pointer;
    font-weight: 400;
    font-size: 12px;
    color: var(--text-secondary);
    display: block;
    z-index: 1;
    position: absolute;
    background: rgba(15, 15, 18, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.h-list-item li {
    align-items: center;
    justify-content: center;
    padding: 16px 26px;
}

.h-list-item li:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
}

.hide-btn {
    display: none;
    position: absolute;
    left: 5%;
    top: 1.8%;
}

.hide-btn i {
    font-size: 19px;
    cursor: pointer;
    color: var(--text-primary);
}

.open-icon {
    display: inline;
}

.close-icon {
    display: none;
}

.sidebar-list {
    width: 100%;
    position: absolute;
    display: none;
    z-index: 10;
    background: rgba(10, 11, 15, 0.95);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.sidebar-list li {
    align-items: center;
    justify-content: flex-start;
    padding: 18px 0 18px 32px;
    border: 1px solid var(--border-soft);
}

.sidebar-list a {
    color: var(--text-primary);
}

.sidebar-list li:hover {
    background: rgba(0, 229, 255, 0.05);
}

/* Slider SECTION */

.slider-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
    position: relative;
    padding-bottom: 30px;
}

.slider-wrapper::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.14), rgba(111, 0, 255, 0.1));
    opacity: 0.25;
    filter: blur(60px);
    pointer-events: none;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 1920px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    background: radial-gradient(circle at 20% 20%, rgba(0, 229, 255, 0.08), transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(111, 0, 255, 0.08), transparent 35%),
        #07070b;
    box-shadow: var(--shadow-strong);
}

.slides {
    display: flex;
    transition: transform 0.7s ease;
}

.slide {
    min-width: 100%;
    position: relative;
    isolation: isolate;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) brightness(0.7);
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(5, 5, 6, 0.75), rgba(10, 10, 12, 0.45), rgba(5, 5, 6, 0.8));
    z-index: 1;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 560px;
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.last-nav a.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    padding: 18px 25px;
    text-decoration: none;
}

.last-nav a.btn span {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    white-space: nowrap; /* taşmayı engeller */
}

/* ----- Responsive (Mobil) ----- */
@media (max-width: 480px) {
    .last-nav a.btn {
        width: 90%;           /* buton daha geniş olsun */
        padding: 12px 18px;   /* daha ince padding */
    }

    .last-nav a.btn span {
        font-size: 0.85rem;   /* yazı küçülsün */
    }
}

@media (max-width: 768px) {
    .last-nav a.btn {
        width: 85%;
        padding: 15px 20px;
    }

    .last-nav a.btn span {
        font-size: 0.95rem;
    }
}


.last-nav a.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    padding: 18px 25px;
    text-decoration: none;
}

.last-nav a.btn span {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    /* taşmayı engeller */
}

.slider-content .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.06);
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

.slider-content h2 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    line-height: 1.15;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.slider-content p {
    font-weight: 400;
    font-size: 1rem;
    color: #d8dce7;
    max-width: 540px;
}

.slider-content button {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.8), rgba(111, 0, 255, 0.65));
    color: #fff;
    padding: 13px 46px;
    font-size: 0.95em;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(0, 229, 255, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.slider-content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.65), 0 0 28px rgba(0, 229, 255, 0.35);
}

button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: 1px solid var(--border);
    padding: 9px 12px;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    z-index: 2;
}

button.prev:hover,
button.next:hover {
    transform: translateY(-50%) translateY(-2px);
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.55), 0 0 18px rgba(0, 229, 255, 0.22);
}

.prev {
    left: 16px;
}

.next {
    right: 16px;
}

.slider-content-mobile {
    flex-wrap: nowrap;
    display: none;
    padding: 24px;
    color: #fff;
    border-radius: 16px;
    margin: 22px;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.slider-content-mobile .tag {
    display: inline-flex;
    align-items: center;
    color: var(--accent-cyan);
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.35);
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.35);
}

.slider-content-mobile h2 {
    color: var(--text-primary);
    font-size: 1.8em;
    margin-bottom: 10px;
}

.slider-content-mobile p {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 1em;
    margin-bottom: 12px;
}

.slider-content-mobile button {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.8), rgba(111, 0, 255, 0.65));
    color: #fff;
    padding: 12px 36px;
    font-size: 0.95em;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
}

.slider-content-mobile button:hover {
    transform: translateY(-2px);
    box-shadow: 0 23px 45px rgba(0, 0, 0, 0.58);
}

/* Music Button */

.music-button {
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 15;
}

.music-button button {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(111, 0, 255, 0.2));
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.music-button i {
    color: var(--accent-cyan);
    font-size: 18px;
}

.music-button button:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 229, 255, 0.45);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
}

/* Product SECTION */

.product-container {
    display: flex;
    gap: 24px;
    margin: 70px 0 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    width: 320px;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 1rem;
    transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.25s ease;
    overflow: hidden;
    position: relative;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.04), rgba(111, 0, 255, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 32px rgba(0, 229, 255, 0.2);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--border-soft);
}

.product-card h3 {
    font-size: 1.6em;
    margin: 14px 0 6px;
    padding: 10px;
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.95em;
    margin: 8px 0 20px;
    padding: 0 16px;
}

.product-card button {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.85), rgba(111, 0, 255, 0.75));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px;
    cursor: pointer;
    font-size: 0.95em;
    margin: 14px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.5);
}

.product-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.6);
}

/* PROJECT SECTION */

.project-container {
    overflow: hidden;
    max-width: 100%;
    margin: 110px auto;
    padding: 0 clamp(18px, 4vw, 26px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}

.project-container h1 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-align: left;
    width: 92%;
}

.project-dec-hide {
    display: none;
    font-size: 15px;
    font-weight: 300;
    width: 100%;
    margin-bottom: 36px;
    color: var(--text-secondary);
}

.project-carousel p {
    font-size: 20px;
    font-weight: 400;
    width: 15%;
    margin-right: 35px;
    color: var(--text-secondary);
}

.project-carousel-container {
    width: 92%;
    display: flex;
    justify-content: flex-start;
}

.project-carousel {
    display: flex;
    transition: transform 0.35s ease;
}

.project-card {
    cursor: pointer;
    width: 420px;
    margin: 0 15px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    text-align: left;
    margin-bottom: 35px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.24);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 28px rgba(0, 229, 255, 0.2);
}

.project-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    filter: saturate(1.05);
}

.project-card-content {
    padding: 18px;
}

.project-card h2 {
    font-size: 1.22rem;
    color: var(--text-primary);
}

.project-card h3 {
    font-weight: 500;
    font-size: 0.86rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.project-card p {
    width: 100%;
    font-size: 1rem;
    color: var(--text-secondary);
}

.project-slider {
    width: 60%;
    margin: 18px auto 12px;
    appearance: none;
    height: 5px;
    outline: none;
    cursor: pointer;
    background: linear-gradient(to right, rgba(0, 229, 255, 0.8) 0%, rgba(111, 0, 255, 0.7) 0%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 999px;
}

.project-slider::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 0 6px rgba(0, 229, 255, 0.15);
}

.project-nav-buttons {
    display: flex;
    justify-content: center;
    width: 120px;
    margin: 10px auto;
    gap: 14px;
}

.project-nav-buttons button {
    background: rgba(0, 229, 255, 0.12);
    border: 1px solid var(--border);
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 10px;
    transition: 0.2s ease;
}

.project-nav-buttons button:hover {
    border-color: rgba(0, 229, 255, 0.5);
}

.project-nav-buttons button:disabled {
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--text-dim);
    cursor: not-allowed;
}

/* Footer SECTION */

footer {
    margin-top: 90px;
    background: linear-gradient(180deg, #0a0a0d 0%, #050506 60%, #020203 100%);
    border-top: 1px solid var(--border);
    box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 10%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.12), transparent 55%);
    filter: blur(30px);
    opacity: 0.6;
}

.footer-container {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 18px clamp(18px, 4vw, 60px);
    color: var(--text-primary);
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.footer-column {
    display: flex;
    flex: 1;
    padding: 14px;
    align-items: flex-start;
    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(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    position: relative;
    padding-bottom: 6px;
}

.footer-column ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.5), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.footer-column ul li a:hover {
    color: var(--text-primary);
}

.footer-column ul li a:hover::after {
    transform: scaleX(1);
}

.footer-column-header {
    display: flex;
    font-size: 15px;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 6px;
}

.social-media {
    display: flex;
    gap: 14px;
    font-size: 15px;
    flex-direction: row;
    margin-right: clamp(20px, 7vw, 70px);
    margin-top: 18px;
}

.social-media a {
    color: #fff;
    text-decoration: none;
    height: 38px;
    width: 38px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.03);
    transition: 0.2s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.social-media a:hover {
    color: var(--accent-cyan);
    border-color: rgba(0, 229, 255, 0.6);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 18px rgba(0, 229, 255, 0.24);
}

.last-fot {
    padding: 0 clamp(18px, 4vw, 60px) 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.lang-item {
    display: flex;
    align-items: center;
    margin: 0px;
    gap: 10px;
}

.lang-item i {
    font-size: 18px;
    margin: 0px;
    cursor: pointer;
    color: var(--accent-cyan);
    transition: ease-in-out 0.2s;
}

.lang-item i:hover {
    color: var(--text-primary);
}

.lang-item h4 {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
    margin: 0px;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    width: 100%;
    margin-top: 14px;
}

/* RESPONSIVE */

@media (max-width:1200px) {
    .list-item {
        gap: 14px;
    }

    .slides img {
        height: 55vh;
    }

    .project-container {
        margin: 90px auto;
    }

    .project-container h1 {
        font-size: 1.6rem;
    }

    .project-carousel p {
        font-size: 17px;
        width: 18%;
        margin-right: 26px;
    }

    .project-card h2 {
        font-size: 1.1rem;
    }

    .project-card h3 {
        font-weight: 500;
        font-size: 0.7rem;
        margin-bottom: 8px;
    }

    .project-card p {
        font-size: 0.95rem;
    }

    .project-card {
        width: 360px;
    }

    .project-card img {
        height: 300px;
    }
}

@media (min-width:993px) {
    .h-list-item {
        display: none;
    }
}

@media (max-width:992px) {
    .hide-item {
        display: none;
    }

    .respo {
        display: block;
        color: var(--text-primary);
    }

    .slides img {
        height: 50vh;
    }

    .social-media {
        flex-direction: column;
    }

    .product-card {
        width: 280px;
    }

    .product-card h3 {
        font-size: 1.4em;
    }

    .product-card p {
        font-size: 0.92em;
    }
}

@media (min-width:769px) {
    .sidebar-list li {
        display: none;
    }
}

@media (max-width:768px) {
    nav {
        padding: 0 32px;
    }

    .hide-btn {
        display: block;
    }

    .list-item {
        display: none;
    }

    .sidebar-list {
        display: none;
    }

    .slider-wrapper {
        flex-direction: column;
    }

    .slides img {
        height: 45vh;
    }

    .slider-content {
        display: none;
    }

    .slider-content-mobile {
        display: block;
    }

    .project-container {
        margin: 70px auto;
    }

    .project-container h1 {
        font-size: 1.25rem;
        width: 100%;
    }

    .project-carousel-container {
        width: 100%;
    }

    .project-carousel p {
        display: none;
    }

    .project-dec-hide {
        display: block;
    }

    .project-card h2 {
        font-size: 1rem;
    }

    .project-card h3 {
        font-size: 0.6rem;
    }

    .project-card p {
        font-size: 0.85rem;
    }

    .project-card {
        width: 280px;
    }

    .project-card img {
        height: 250px;
    }

    .navbar-logo img {
        margin-left: 24px;
    }

    .logo-text {
        font-size: 18px;
    }

    footer {
        margin-top: 50px;
    }
}

@media (max-width:576px) {
    .navbar-logo {
        gap: 6px;
    }

    .navbar-logo img {
        width: 42px;
    }

    .user-text {
        display: none;
    }

    .slides img {
        height: 42vh;
    }

    .slider-content-mobile {
        margin: 18px;
    }

    .slider-content-mobile button {
        padding: 12px 30px;
        font-size: 0.9em;
    }

    .social-media {
        flex-direction: row;
        margin-right: 0;
        margin-left: 8px;
        margin-bottom: 12px;
        flex-wrap: wrap;
    }

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

    .logo-text {
        font-size: 15px;
    }

    .last-fot {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hide-btn {
        left: 5%;
        top: 1.6%;
    }

    .hide-btn i {
        font-size: 17px;
    }

    .music-button {
        opacity: 0.8;
    }

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

    .project-container h1 {
        font-size: 1.35rem;
    }

    .project-card p {
        font-size: 0.75rem;
    }

    .project-card {
        width: 230px;
    }

    .project-card img {
        height: 190px;
    }
}