@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Plus+Jakarta+Sans:wght@300;400;500;700&display=swap');

:root {
    --bg-dark: #0a0a0c;
    --bg-card: rgba(255, 255, 255, 0.03);
    --accent-glow: rgba(249, 115, 22, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-color: #fb923c;
    --accent-bright: #ff7e33;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Background Gradients */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(80px);
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--accent-glow);
    opacity: 0.3;
}

.blob-1 {
    top: -100px;
    right: -100px;
    background: rgba(249, 115, 22, 0.3);
    box-shadow: 0 0 100px rgba(249, 115, 22, 0.2);
}

.blob-2 {
    bottom: -100px;
    left: -100px;
    background: rgba(251, 146, 60, 0.3);
    box-shadow: 0 0 100px rgba(251, 146, 60, 0.2);
}

/* Navigation */
nav {
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--nav-height) 10% 0;
    text-align: center;
}

.badge {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    display: inline-block;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.1);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.1);
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.glass-card:hover::after {
    transform: translateX(100%);
}

/* Section Styling */
section {
    padding: 100px 10%;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.fun-fact {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 16px 16px 0;
}

/* Profile Frame Styles */
.profile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.profile-frame {
    position: relative;
    width: 320px;
    height: 400px;
    border-radius: 30px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.profile-frame:hover {
    transform: translateY(-10px) rotateY(5deg);
    border-color: var(--accent-color);
    box-shadow: 0 30px 60px -12px rgba(249, 115, 22, 0.2);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: grayscale(20%) contrast(110%);
    transition: filter 0.5s ease;
}

.profile-frame:hover .profile-img {
    filter: grayscale(0%) contrast(100%);
}

.frame-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, var(--accent-color), transparent, var(--accent-bright)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.profile-frame:hover .frame-border {
    opacity: 1;
    animation: border-rotate 4s linear infinite;
}

@keyframes border-rotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

@media (max-width: 768px) {
    .profile-frame {
        width: 280px;
        height: 350px;
    }
}

/* Footer */
footer {
    padding: 60px 10%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.footer-domain {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
}

/* Utils */
/* Brand and Utility */
.accent {
    color: var(--accent-color);
}

.brand-orange {
    color: #f97316;
    font-weight: 700;
}

/* New Orange Animations */
@keyframes orange-glow {
    0% { filter: drop-shadow(0 0 5px rgba(249, 115, 22, 0.3)); }
    50% { filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.6)); }
    100% { filter: drop-shadow(0 0 5px rgba(249, 115, 22, 0.3)); }
}

.hero h1 .accent {
    animation: orange-glow 3s infinite ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.animated-orange-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s infinite ease-in-out;
}

.ring-1 { top: 20%; left: 5%; }
.ring-2 { bottom: 20%; right: 5%; animation-delay: -3s; }

/* Scroll reveal additions */
.reveal {
    will-change: transform, opacity;
}