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

:root {
    --black: #000000;
    --white: #ffffff;
    --red: #ff0000;
    --yellow: #ffff00;
}

body {
    font-family: 'Bebas Neue', 'Anton', Arial, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation - Fun Circular Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: difference;
}

.logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-circle:hover {
    transform: scale(1.1);
}

.logo-text {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--white);
    text-align: center;
}

.menu-toggle {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    transform: rotate(90deg) scale(1.1);
}

.menu-toggle.active {
    transform: rotate(180deg);
}

.menu-icon {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: all 0.3s ease;
}

.menu-toggle.active .menu-icon:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .menu-icon:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-icon:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Radial Menu */
.radial-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 300px;
    height: 300px;
    z-index: 999;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.radial-menu.active {
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.menu-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--red);
    border-radius: 50%;
}

.menu-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: var(--white);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: var(--yellow);
    transform: translate(-50%, -50%) scale(1.2);
}

.menu-item:nth-child(2) {
    transform: translate(-50%, -50%) translate(0, -120px);
}

.menu-item:nth-child(3) {
    transform: translate(-50%, -50%) translate(120px, 0);
}

.menu-item:nth-child(4) {
    transform: translate(-50%, -50%) translate(0, 120px);
}

.menu-item:nth-child(5) {
    transform: translate(-50%, -50%) translate(-120px, 0);
}

/* Hero - Full Screen */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.hero-mega-title {
    font-size: clamp(60px, 15vw, 180px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--white);
    text-shadow: 4px 4px 0 var(--red), 8px 8px 0 var(--black);
    animation: glitch 3s infinite;
}

.hero-tag {
    font-size: clamp(16px, 3vw, 24px);
    letter-spacing: 4px;
    margin-top: 20px;
    color: var(--yellow);
    font-weight: 700;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes glitch {
    0%, 90%, 100% { text-shadow: 4px 4px 0 var(--red), 8px 8px 0 var(--black); }
    92% { text-shadow: -4px -4px 0 var(--yellow), -8px -8px 0 var(--black); }
    94% { text-shadow: 4px -4px 0 var(--red), 8px -8px 0 var(--black); }
}

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

/* Full Screen Photo Sections */
.work-section {
    background: var(--black);
}

.fullscreen-photo {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.fullscreen-photo img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: contrast(1.1) saturate(1.1);
}

.photo-label {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    background: var(--red);
    padding: 20px 30px;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.fullscreen-photo.reverse .photo-label {
    left: auto;
    right: 40px;
    background: var(--yellow);
    color: var(--black);
    transform: rotate(2deg);
}

.fullscreen-photo:hover .photo-label {
    transform: rotate(0deg) scale(1.05);
}

.photo-label h2 {
    font-size: clamp(32px, 6vw, 56px);
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.photo-label p {
    font-size: clamp(12px, 2vw, 16px);
    letter-spacing: 2px;
    opacity: 0.9;
}

/* About Section */
.about-section {
    min-height: 100vh;
    background: var(--white);
    color: var(--black);
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
}

.about-content {
    flex: 1;
    padding: 40px 20px;
}

.about-title {
    font-size: clamp(48px, 10vw, 120px);
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 40px;
    color: var(--red);
}

.about-text {
    font-family: Arial, sans-serif;
    font-size: clamp(16px, 3vw, 20px);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: clamp(48px, 8vw, 72px);
    line-height: 1;
    color: var(--black);
    font-weight: 900;
}

.stat-label {
    font-size: clamp(14px, 2vw, 18px);
    letter-spacing: 2px;
    color: var(--black);
    opacity: 0.6;
}

.about-image {
    width: 100%;
    height: 60vh;
    margin-top: 40px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    background: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.contact-wrapper {
    width: 100%;
    max-width: 800px;
}

.contact-title {
    font-size: clamp(64px, 12vw, 140px);
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 60px;
    color: var(--black);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-link {
    font-size: clamp(24px, 5vw, 48px);
    color: var(--black);
    text-decoration: none;
    letter-spacing: -1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--red);
    transform: translateX(10px);
}

.social-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-btn {
    padding: 15px 30px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: clamp(16px, 2.5vw, 20px);
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-btn:hover {
    background: var(--red);
    transform: rotate(-2deg) scale(1.05);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
    font-size: 14px;
    letter-spacing: 2px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .navbar {
        padding: 15px;
    }

    .logo-circle {
        width: 60px;
        height: 60px;
    }

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

    .menu-toggle {
        width: 50px;
        height: 50px;
    }

    .menu-icon {
        width: 20px;
        height: 2px;
    }

    .radial-menu {
        width: 250px;
        height: 250px;
    }

    .menu-center {
        width: 80px;
        height: 80px;
    }

    .menu-item {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }

    .menu-item:nth-child(2) {
        transform: translate(-50%, -50%) translate(0, -100px);
    }

    .menu-item:nth-child(3) {
        transform: translate(-50%, -50%) translate(100px, 0);
    }

    .menu-item:nth-child(4) {
        transform: translate(-50%, -50%) translate(0, 100px);
    }

    .menu-item:nth-child(5) {
        transform: translate(-50%, -50%) translate(-100px, 0);
    }

    .photo-label {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }

    .fullscreen-photo.reverse .photo-label {
        right: 20px;
    }

    .about-section {
        padding: 40px 20px;
    }

    .about-stats {
        gap: 30px;
    }

    .about-image {
        height: 40vh;
    }

    .contact-section {
        padding: 40px 20px;
    }

    .social-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .social-btn {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 769px) {
    .about-section {
        flex-direction: row;
        padding: 80px 60px;
    }

    .about-content {
        padding: 60px;
    }

    .about-image {
        width: 50%;
        height: auto;
        margin-top: 0;
    }

    .fullscreen-photo {
        min-height: 100vh;
    }
}

/* Smooth scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .fullscreen-photo {
        opacity: 0;
        transform: translateY(50px);
        animation: fadeInUp 0.8s ease forwards;
    }

    .fullscreen-photo:nth-child(even) {
        animation-delay: 0.1s;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
