/* --- Font Setup --- */
@font-face {
    font-family: 'Acidic';
    src: url('Acidic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --font-main: 'Acidic', 'Courier New', monospace; 
    --bg-color: #ffffff;
    --text-color: #000000;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Custom Cursor --- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: black;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline.hovered {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.1);
    border-color: transparent;
    backdrop-filter: invert(1);
}

/* --- Scroll Progress --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: black;
    width: 0%;
    z-index: 9998;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
    color: white;
}

.site-logo {
    height: 40px;
    filter: grayscale(100%) contrast(120%);
    transition: transform 0.5s ease;
}

.site-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.menu-btn {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(50px);
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    z-index: -1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: black;
    top: 10%;
    left: -10%;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: black;
    bottom: 10%;
    right: -5%;
}

/* --- About Section --- */
.about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    position: relative;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
}

.circular-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating-text-svg {
    animation: rotateText 20s linear infinite;
}

.circle-text {
    font-size: 11px;
    letter-spacing: 4px;
    fill: black;
    text-transform: uppercase;
}

.center-graphic {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid black;
    border-radius: 50%;
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-text {
    max-width: 500px;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid black;
    display: inline-block;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: 1px;
}

/* --- Socials Section --- */
.socials {
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
}

.social-link {
    text-decoration: none;
    color: black;
    font-size: 2rem;
    text-align: center;
    padding: 2rem;
    border: 1px solid black;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-link::before {
    content: attr(data-hover);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.social-link:hover {
    background: black;
    color: white;
    border-color: black;
}

.social-link:hover span {
    opacity: 0;
}

.social-link:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.social-link span {
    transition: opacity 0.3s;
    display: block;
}

/* --- Footer --- */
footer {
    padding: 3rem;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.6;
    border-top: 1px solid #eee;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    nav { padding: 1.5rem; }
    .hero h1 { font-size: 3.5rem; }
    .about-container { flex-direction: column; text-align: center; }
    .circular-wrapper { width: 250px; height: 250px; }
    .social-link { font-size: 1.5rem; padding: 1.5rem; }
}