:root {
    --bg-color: #000000;
    --text-color: #F5F5F5;
    --text-secondary: #A8A8A8;
    --card-bg: #121212;
    --border-color: #262626;
    --accent-color: #FFFFFF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.2s;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 935px;
    /* Instagram container width-ish */
    margin: 0 auto;
    padding: 0 1.5rem;
}

.t-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.text-secondary {
    color: var(--text-secondary);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    height: 30px;
    /* Adjust based on logo files */
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--text-color);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.profile-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    padding: 3px;
    border: 2px solid var(--border-color);
    /* Instagram story ring placeholder style */
    object-fit: contain;
    background: #000;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.bio-text {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 500px;
    white-space: pre-line;
    /* Allows new lines in text */
}

.stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 3rem;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background: #e0e0e0;
    border-color: #e0e0e0;
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Services Extended */
.highlights {
    padding: 6rem 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-speed);
}

.service-card:hover {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.03);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.service-list {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.service-list li::before {
    content: '•';
    color: var(--text-color);
    font-weight: bold;
}

/* Highlights / Services */
/* The original .highlights rule was updated above */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 column grid generic like Insta */
    gap: 1.5rem;
    /* Gap between squares */
    margin-top: 2rem;
}

.highlight-item {
    background: var(--card-bg);
    /* Placeholder for images */
    aspect-ratio: 1 / 1;
    /* Square */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-title {
    font-size: 1rem;
    font-weight: 600;
}

/* Contact */
.contact {
    padding: 4rem 0 8rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.contact-link {
    display: inline-block;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-top: 2rem;
    min-width: 300px;
}

.contact-link h3 {
    margin-bottom: 0.5rem;
}

.contact-link:hover {
    background: var(--card-bg);
}

/* Footer */
footer {
    padding: 2rem 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
    border-top: 1px solid var(--border-color);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(1, 1fr);
        /* Stack on mobile or keep 3 for insta-feel? Let's stack for services readability */
    }

    .stats {
        width: 100%;
        justify-content: space-around;
        padding: 1rem 0;
        gap: 0;
    }

    .hero {
        padding-top: 100px;
    }
}