@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    --bg-color: #0c0806; /* Deep Brown Black */
    --card-bg: rgba(255, 255, 255, 0.03);
    --primary: #f97316; /* Vibrant Orange */
    --secondary: #fbbf24; /* Amber */
    --accent: #ea580c; /* Deep Orange */
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --glow: rgba(249, 115, 22, 0.3);
    --glass: rgba(15, 12, 10, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
}

.cursor-follower {
    width: 35px;
    height: 35px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
}

/* Background Effects */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #1a120f 0%, #0c0806 100%);
}

.blob {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-contact {
    background: var(--primary);
    color: #fff;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px var(--glow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.btn-contact:hover {
    transform: translateY(-3px) scale(1.05);
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.hero-text h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-socials {
    display: flex;
    gap: 1.5rem;
}

.hero-socials a {
    color: var(--text-dim);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.hero-socials a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 110%;
    max-width: 700px;
    z-index: 2;
    filter: drop-shadow(0 0 50px rgba(249, 115, 22, 0.2));
}

/* Floating Elements like inspiration */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.card-quote {
    bottom: 10%;
    left: -10%;
    width: 300px;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Sections */
.section {
    padding: 10rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 5rem;
    text-align: left;
    color: #fff;
}

.section-title span {
    color: var(--primary);
}

/* Horizontal Scroll Section */
.horizontal-container {
    width: 100%;
    background: #080504;
}

.horizontal-content {
    display: flex;
    width: 300vw;
    height: 100vh;
    align-items: center;
}

.project-slide {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5rem;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 4rem;
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader-text {
    font-size: 8vw;
    font-weight: 900;
    font-family: 'Outfit';
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--primary);
    background: rgba(249, 115, 22, 0.02);
}

.social-link-large {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link-large:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0 10px 25px var(--glow);
    border-color: var(--primary);
}

/* Responsive Refinements */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 4.5rem; }
    .project-card { padding: 2rem; gap: 2rem; }
}

@media (max-width: 768px) {
    body { cursor: default; }
    .custom-cursor, .cursor-follower { display: none; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
    }

    .hero-container { grid-template-columns: 1fr; text-align: center; padding-top: 4rem; }
    .hero-text h1 { font-size: 3.2rem; }
    .hero-text h2 { font-size: 1.2rem; }
    .hero-subtitle { margin: 0 auto 2rem auto; }
    .hero-actions { flex-direction: column; gap: 1.5rem; }
    .hero-image { width: 100%; margin-top: 2rem; }
    
    .section-title { font-size: 2.5rem; text-align: center; }
    .glass-card { padding: 2rem; }
    
    .horizontal-content { width: 100%; height: auto; flex-direction: column; }
    .project-slide { width: 100%; height: auto; padding: 5rem 1.5rem; }
    .project-card { grid-template-columns: 1fr; text-align: center; }
    .project-card div:last-child { height: 250px; }
    .project-info h3 { font-size: 2.2rem !important; }
    
    .nav-btn { display: none; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
}

.menu-toggle {
    display: none;
    color: var(--text-main);
}
