/* Nothing Phone Aesthetic CSS */
@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-color: #f2f2f2;
    --text-color: #111111;
    --text-secondary: #444444;
    --accent-color: #00BFA5;
    --border-color: #e0e0e0;
    --grid-line: #e5e5e5;
    --surface-color: #ffffff;
    --font-heading: 'Doto', sans-serif;
    --font-body: 'Doto', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    /* Dot Matrix Background Pattern */
    background-image: radial-gradient(var(--grid-line) 1px, transparent 1px);
    background-size: 20px 20px;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-color);
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px dotted var(--border-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.highlight {
    color: var(--text-color);
    font-weight: 600;
}

/* Layout Grid (Bento Grid Style) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 4rem 0;
}

.card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

.card-header {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 4rem 0;
}

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

.glitch-text {
    position: relative;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

/* Badge / Tech Stack Pills */
.pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

.pill {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-family: var(--font-heading);
}

.pill:hover {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
}

.contact-btn {
    background: var(--text-color);
    color: var(--bg-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.contact-btn:hover {
    opacity: 0.8;
}

/* Decorative Elements */
.accent-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}