/* Basic Setup */
body {
    background-color: #111;
    /* Add a subtle noise texture */
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 2px, transparent 2px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 2px, transparent 2px);
    background-size: 100px 100px, 100px 100px;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
    cursor: none;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 2rem;
    box-sizing: border-box;
}

/* Custom Font */
@font-face {
    font-family: 'Keanon';
    src: url('KEANON-trial.otf') format('opentype');
}

/* Header and Navigation */
header {
    width: 100%;
}

nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #888;
}

/* Main Content */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.title {
    font-family: 'Keanon', sans-serif;
    font-size: 15vw;
    font-weight: normal;
    text-align: center;
    margin: 0;
    line-height: 1;
    letter-spacing: 0.05em;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.1s ease;
    z-index: 9999;
}

.cursor.expand {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
}

/* Overlay Styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 10000;
    overflow-y: auto;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    max-width: 900px;
    width: 90%;
    padding: 4rem;
    color: #fff;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: #fff;
    text-decoration: none;
}

.overlay h2 {
    font-family: 'Keanon', sans-serif;
    font-size: 5rem;
    margin-bottom: 2rem;
}

.overlay p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 3rem;
}

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

.card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.email-link {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.email-link:hover {
    background: #fff;
    color: #111;
}

