:root {
    --bg-dark: #050505;
    --text-main: #f0f0f0;
    --text-muted: #888888;
    --accent: #bda379; /* Elegant gold/bronze tint */
    --line-color: rgba(255, 255, 255, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* We use custom cursor */
}

html {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand, .huge-text {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}

.text-accent { color: var(--accent); }

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4vw;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(189, 163, 121, 0.5);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: 0.15s ease-out;
}

.cursor.hovered {
    width: 60px;
    height: 60px;
    background: rgba(189, 163, 121, 0.1);
    backdrop-filter: blur(2px);
    border: 1px solid var(--accent);
}
.cursor-follower.hovered {
    opacity: 0;
}

/* Background Grid Overlay */
.bg-grid {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: 100px 100px;
    background-image: 
        linear-gradient(to right, var(--line-color) 1px, transparent 1px),
        linear-gradient(to bottom, var(--line-color) 1px, transparent 1px);
    z-index: -1;
    pointer-events: none;
}

/* Reveal Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-line {
    display: block;
    opacity: 0;
    transform: translateY(30px) rotate(2deg);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-title.in-view .fade-up-line {
    opacity: 1;
    transform: translateY(0) rotate(0);
}
.hero-title.in-view .fade-up-line:nth-child(2) { transition-delay: 0.1s; }
.hero-title.in-view .fade-up-line:nth-child(3) { transition-delay: 0.2s; }
.hero-title.in-view .fade-up-line:nth-child(4) { transition-delay: 0.3s; }

/* Header */
.site-header {
    position: fixed;
    top: 0; width: 100%;
    padding: 2.5rem 0; /* Artırıldı */
    z-index: 100;
    mix-blend-mode: difference;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    font-size: 2.5rem; /* Biraz büyültüldü */
    color: #fff;
    text-decoration: none;
    letter-spacing: -2px;
}
.nav-menu {
    display: flex;
    gap: 3.5rem;
}
.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-primary {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.85rem 1.75rem;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-primary:hover {
    background: #fff;
    color: #000;
}

/* Hero Showcase */
.hero-showcase {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 20vh; /* Header ile aradaki mesafe çok daha fazla açıldı */
    padding-bottom: 5vh;
}
.hero-glow {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(189, 163, 121, 0.08) 0%, rgba(5, 5, 5, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}
.hero-top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--line-color);
    padding-bottom: 1rem;
}
.hero-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--accent);
}
.hero-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 8rem); /* Büyültüldü */
    line-height: 1.02;
    letter-spacing: -2.5px;
    margin-bottom: 4rem;
}
.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 5vh;
}
.hero-desc-box {
    max-width: 450px;
}
.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.hero-tags {
    display: flex;
    gap: 1.5rem;
    font-family: 'Syne', sans-serif;
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-tags span {
    position: relative;
}
.hero-tags span:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
}
.circle-btn {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid var(--line-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    gap: 10px;
    transition: 0.4s;
    flex-shrink: 0;
}
.circle-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    transform: scale(1.05);
}
.circle-text {
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

/* Scroll wrapper indicator */
.scroll-wrapper {
    position: absolute;
    bottom: 2rem;
    left: 4vw;
    display: flex;
    align-items: center;
    gap: 15px;
}
.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    transform: rotate(-90deg);
    transform-origin: left center;
    margin-left: 10px;
}
.scroll-indicator {
    width: 1px;
    height: 60px;
    background: var(--line-color);
    position: relative;
    overflow: hidden;
}
.scroll-indicator .mouse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--accent);
    animation: scrollLine 2s cubic-bezier(1,0,0,1) infinite;
}
@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(300%); }
}

/* Ticker Marquee */
.ticker-wrapper {
    padding: 3rem 0;
    border-block: 1px solid var(--line-color);
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    background: rgba(255,255,255,0.01);
}
.ticker-track {
    display: inline-flex;
    animation: scrollTicker 30s linear infinite;
}
.ticker-content {
    display: inline-flex;
    align-items: center;
    padding-right: 2rem;
}
.ticker-content span {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.4);
    letter-spacing: 2px;
}
.ticker-content .dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 2rem;
}
@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Portfolio Section */
.portfolio {
    padding: 10vw 0;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 8vw;
}
.section-title {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1;
}
.section-header p {
    max-width: 300px;
    color: var(--text-muted);
}

/* Hype Button */
.hype-container {
    position: relative;
    z-index: 10;
}
.hype-btn {
    background: linear-gradient(135deg, #bda379, #e6d3a8);
    color: #000;
    border: none;
    padding: 1rem 3.5rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    letter-spacing: 3px;
    box-shadow: 0 0 20px rgba(189, 163, 121, 0.3), inset 0 0 10px rgba(255,255,255,0.5);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.hype-btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 40%);
    opacity: 0;
    transform: scale(0.5);
    transition: 0.3s;
    pointer-events: none;
}
.hype-btn:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 15px 40px rgba(189, 163, 121, 0.6);
}
.hype-tooltip {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Hype Effect Classes */
.hype-active.hype-btn {
    transform: scale(0.9);
}
.hype-active.hype-btn::after {
    animation: hypeExplosion 0.5s ease-out;
}
.hype-screen-shake {
    animation: screenShake 0.4s cubic-bezier(.36,.07,.19,.97) both;
}
.hype-particle {
    position: fixed;
    border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    box-shadow: 0 0 15px var(--accent);
}

@keyframes hypeExplosion {
    0% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.8; transform: scale(1.2); }
    100% { opacity: 0; transform: scale(2); }
}

@keyframes screenShake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-2px, -3px) rotate(-1deg); }
    20% { transform: translate(-4px, 0px) rotate(1deg); }
    30% { transform: translate(4px, 3px) rotate(0deg); }
    40% { transform: translate(2px, -2px) rotate(1deg); }
    50% { transform: translate(-2px, 3px) rotate(-1deg); }
    60% { transform: translate(-4px, 2px) rotate(0deg); }
    70% { transform: translate(4px, 2px) rotate(-1deg); }
    80% { transform: translate(-2px, -2px) rotate(1deg); }
    90% { transform: translate(2px, 3px) rotate(0deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.project-row {
    display: flex;
    align-items: center;
    gap: 8vw; /* Aradaki boşluğu biraz daha açtık */
    margin-bottom: 15vh;
}
.project-row.reverse {
    flex-direction: row-reverse;
}
.project-video-wrapper {
    flex: 3;
    max-width: 320px;
    aspect-ratio: 9/16;
    height: auto;
    position: relative;
    border-radius: 20px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: #000;
}
.project-video {
    width: 100%;
    height: 100%;
    transform: scale(1.02); 
    object-fit: cover;
}
.instagram-wrapper {
    background: #000;
}
.project-details {
    flex: 7;
}

/* Badges */
.badge-container {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.highlight-badge {
    background: linear-gradient(135deg, #111 0%, #202020 100%);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(189, 163, 121, 0.15);
}

.project-category {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}
.project-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.project-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 3rem;
}
.tag {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    color: #ccc;
}
.detail-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    position: relative;
}
.detail-link::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0; width: 0; height: 1px;
    background: var(--accent);
    transition: 0.4s;
}
.detail-link:hover::after {
    width: 100%;
}

/* Vision */
.vision {
    padding: 10vw 0;
    background: #000;
    border-top: 1px solid var(--line-color);
}
.vision-inner h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    text-align: center;
    margin-bottom: 6vw;
}
.vision-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
}
.stat {
    border-left: 2px solid var(--accent);
    padding-left: 2rem;
}
.stat h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.stat p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    padding: 8vw 0 2vw;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6vw;
}
.huge-text {
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 0.9;
    margin-bottom: 2rem;
}
.email-link {
    font-size: 1.5rem;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 5px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* Footer Instagram Profile Embed */
.instagram-profile-card {
    display: block;
    max-width: 300px;
    padding: 0.8rem 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    transition: 0.3s;
}
.instagram-profile-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
    border-color: rgba(189, 163, 121, 0.4);
}
.ig-profile-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
}
.ig-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}
.ig-avatar img {
    width: 100%; height: 100%; object-fit: cover;
}
.ig-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ig-username {
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Syne', sans-serif;
}
.ig-bio {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-links {
    display: flex;
    gap: 6vw;
    text-align: right;
}
.link-group h4 {
    color: #555;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}
.link-group a, .link-group p {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.8rem;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line-color);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-menu { display: none; }
    .hero-bottom { flex-direction: column; align-items: flex-start; gap: 3rem; }
    .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
    .project-row, .project-row.reverse { flex-direction: column; gap: 4rem; text-align: center; margin-bottom: 25vh; }
    .project-details { padding: 0 2vw; display: flex; flex-direction: column; align-items: center; }
    .project-desc { font-size: 1.05rem; }
    .project-video-wrapper { width: 100%; max-width: 320px; margin: 0 auto; }
    .badge-container { justify-content: center; }
    .detail-link { justify-content: center; }
    .tags { justify-content: center; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 15vw; }
    .vision-stats { grid-template-columns: 1fr; gap: 10vw; }
    .footer-top { flex-direction: column; gap: 4rem; }
    .footer-links { text-align: left; flex-direction: column; gap: 3rem; }
    .cursor, .cursor-follower { display: none; }
    * { cursor: auto; }
}
