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

html { scroll-behavior: smooth; }

body {
    background: #080808;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(10px);
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo span { color: #999; }

.navbar nav { display: flex; gap: 35px; }
.navbar nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    background: #111;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.25));
    z-index: -2;
}

.hero-content { max-width: 800px; }

.small-text {
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(60px, 11vw, 150px);
    line-height: .9;
    letter-spacing: -6px;
}

.hero-description {
    margin-top: 30px;
    font-size: 20px;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn {
    padding: 15px 25px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #555;
}

.scroll {
    position: absolute;
    bottom: 30px;
    right: 6%;
    font-size: 11px;
    letter-spacing: 3px;
}

.section { padding: 140px 8%; }

.section-title p {
    color: #777;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: clamp(40px, 6vw, 80px);
    letter-spacing: -3px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.about-text h3 {
    font-size: 45px;
    margin-bottom: 30px;
}

.about-text p {
    color: #aaa;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 70px;
    border-top: 1px solid #222;
    border-left: 1px solid #222;
}

.skill-card {
    padding: 40px;
    min-height: 220px;
    border-right: 1px solid #222;
    border-bottom: 1px solid #222;
    transition: background .3s, transform .3s;
}

.skill-card:hover {
    background: #111;
    transform: translateY(-4px);
}

.skill-card span { color: #666; font-size: 12px; }

.skill-card h3 {
    margin-top: 45px;
    font-size: 25px;
}

.skill-card p {
    margin-top: 12px;
    color: #777;
    line-height: 1.6;
}

.software { margin-top: 80px; }
.software > p {
    color: #666;
    letter-spacing: 3px;
    font-size: 11px;
}

.software-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.software-list span {
    border: 1px solid #333;
    padding: 15px 20px;
}

.showreel {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.showreel-video video {
    width: 100%;
    display: block;
    background: #111;
}

.showreel-info p {
    color: #888;
    line-height: 1.7;
}

.showreel-info h3 {
    font-size: 45px;
    margin: 20px 0;
}

.work-grid {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.project-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: #111;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s;
}

.project-card:hover img { transform: scale(1.06); }

.project-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 35px;
    background: linear-gradient(transparent, rgba(0,0,0,.9));
}

.project-info span { color: #888; }

.project-info h3 {
    font-size: 35px;
    margin-top: 10px;
}

.project-info p {
    color: #aaa;
    margin-top: 8px;
}

.feature {
    margin-top: 180px;
    max-width: 700px;
}

.feature > p:first-child {
    color: #777;
    letter-spacing: 3px;
    font-size: 12px;
}

.feature h2 {
    font-size: 60px;
    margin: 25px 0;
}

.feature p {
    color: #888;
    line-height: 1.7;
}

.contact {
    text-align: center;
    border-top: 1px solid #222;
}

.contact > p {
    color: #777;
    letter-spacing: 3px;
    font-size: 12px;
}

.contact h2 {
    font-size: clamp(50px, 8vw, 110px);
    line-height: .95;
    margin: 40px 0;
    letter-spacing: -5px;
}

.contact-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 18px 30px;
    text-decoration: none;
    font-weight: 700;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 80px;
}

.socials a {
    color: #888;
    text-decoration: none;
}

.socials a:hover { color: #fff; }

footer {
    padding: 30px 8%;
    border-top: 1px solid #222;
    color: #555;
    font-size: 12px;
}

@media (max-width: 768px) {
    .navbar { padding: 20px 5%; }
    .navbar nav { gap: 15px; }
    .navbar nav a { font-size: 10px; }

    .hero { padding: 0 6%; }
    .hero h1 { letter-spacing: -3px; }
    .hero-description { font-size: 16px; }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .skills-grid { grid-template-columns: 1fr; }
    .showreel { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }

    .project-card { height: 400px; }
    .feature h2 { font-size: 45px; }

    .socials {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .navbar nav { gap: 9px; }
    .navbar nav a { font-size: 8px; }
    .logo { font-size: 16px; }

    .hero h1 { font-size: 58px; }
    .hero-buttons { flex-direction: column; width: max-content; }

    .section { padding: 100px 6%; }

    .skill-card { padding: 30px; }
    .project-card { height: 350px; }
}
