/* RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: #121212; 
    color: #ffffff;
    background-image: radial-gradient(circle at 10% 20%, rgba(234, 88, 12, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(234, 88, 12, 0.05) 0%, transparent 40%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover { color: #ea580c; }

/* HERO */
.hero { max-width: 1200px; margin: 0 auto 5rem auto; padding: 4rem 1.5rem 0 1.5rem; text-align: center; }

.profile-wrapper { position: relative; margin-bottom: 2rem; display: inline-block; }

.profile-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, #ea580c, #dc2626);
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.4;
    animation: pulse 2s infinite;
}

@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.6; } }

.profile-img {
    position: relative;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #ffffff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description { color: #9ca3af; font-size: 1.125rem; font-weight: 300; margin-bottom: 2rem; }

/* THE Y & G FIX */
.descender-safe {
    display: block;
    line-height: 1.6;
    padding-bottom: 0.6em;
    overflow: visible;
}

.follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ea580c;
    color: white;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3);
}

.follow-btn:hover { transform: scale(1.05); background-color: #f97316; }

/* GALLERY */
.gallery-section { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem 6rem 1.5rem; }

.gallery-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; }

.gallery-title { font-size: 1.5rem; font-weight: 700; }

.gallery-line { flex: 1; height: 1px; background: rgba(255, 255, 255, 0.1); margin-left: 2rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }

/* POSTS */
.ig-post {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s;
    text-decoration: none;
}

.ig-post:hover { transform: translateY(-8px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5); }

.post-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }

.ig-post:hover .post-img { transform: scale(1.1); }

.video-badge { position: absolute; top: 1rem; right: 1rem; background: rgba(0,0,0,0.6); padding: 0.5rem; border-radius: 0.75rem; backdrop-filter: blur(4px); }

.post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.ig-post:hover .post-overlay { opacity: 1; }

.post-caption { color: white; font-size: 0.8rem; margin-bottom: 1rem; transform: translateY(1rem); transition: transform 0.4s; }

.ig-post:hover .post-caption { transform: translateY(0); }

.post-link { color: #ea580c; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* UTILS */
.icon-sm { width: 1.25rem; height: 1.25rem; }
.icon-xs { width: 1rem; height: 1rem; color: white; }

.footer { padding: 3rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; color: #4b5563; font-size: 0.875rem; }

.loader { grid-column: 1 / -1; text-align: center; padding: 5rem 0; color: #6b7280; }
.spinner { width: 2rem; height: 2rem; border: 2px solid #ea580c; border-top-color: transparent; border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 1rem auto; }
@keyframes spin { to { transform: rotate(360deg); } }