/* Genel */
@import url('https://fonts.googleapis.com/css2?family=Unbounded&family=Bebas+Neue&display=swap');

body {
    margin: 0;
    font-family: 'Unbounded', sans-serif;
    background-color: #000;
    color: #fff;
    cursor: none;
    overflow-x: hidden;
}

/* Video Arka Plan */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* sadece viewport yüksekliği kadar */
    object-fit: cover;
    filter: brightness(0.6);
    z-index: -1;
    /* içeriklerin arkasında */
}

/* Porsche Stili Yazı */
.porsche-text {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    letter-spacing: 1px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.3;
    user-select: none;
}

/* Chevron Bounce Animasyonu */
@keyframes chevron-bounce {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(4px) rotate(45deg);
    }
}

.animate-chevron-bounce {
    animation: chevron-bounce 1.5s infinite ease-in-out;
}

/* Özel Cursor */
#cursor {
    width: 32px;
    height: 32px;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease, transform 0.08s ease;
    mix-blend-mode: difference;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

#cursor.cursor--large {
    width: 100px !important;
    height: 100px !important;
}

/* Scroll Reveal Animasyonu */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar linklerde cursor gizle */
nav a {
    cursor: none !important;
    user-select: none;
}

/* Logo */
.mainLogo {
    width: 15%;
    height: auto;
    user-select: none;
    pointer-events: none;
}

/* Button içindeki span geçişleri */
button div span {
    transition: all 0.3s ease-in-out;
}

/* About Bölümü paragraf hover */
#about p:hover {
    color: rgba(255, 255, 255, 1);
    transition: color 0.5s ease;
    cursor: default;
}

/* Sayfa yüklenirken scroll engelle */
body.loading-active {
    overflow: hidden;
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    user-select: none;
}

#loader.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Responsive: Küçük ekranlar için hizalama */
@media (max-width: 770px) {
    .center-on-small {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        align-items: center !important;
    }
}

/* Mobilde custom cursor gizle */
@media (max-width: 768px) {
    #cursor {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}