/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Mono', monospace; /* Google Font - DM Mono */
    background-color: #E8E4DC; /* Light beige/cream background */
    color: #1A1A1A; /* Dark text color */
    line-height: 1.6;
    padding: 40px 60px;
    cursor: none; /* Hide default cursor */
}

/* Custom cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #1A1A1A;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1.5px solid #1A1A1A;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.2s ease;
}

/* Cursor hover effect on interactive elements */
a:hover ~ .cursor-outline,
button:hover ~ .cursor-outline {
    transform: scale(1.5);
    border-color: #1A1A1A;
}

/* Header styles */
header {
    margin-bottom: 120px;
}

.site-name {
    font-family: 'Gowun Batang', serif;
    font-size: 20px;
    font-weight: normal;
    color: #1A1A1A;
}

/* Main container */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;
}

/* Main headline */
.headline {
    font-family: 'Gowun Batang', serif; /* Google Font - Gowun Batang for headline */
    font-size: 58px;
    font-weight: 400;
    margin-bottom: 80px;
    line-height: 1.0;
}

/* Bio section - two columns */
.bio-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 80px;
    position: relative;
}

/* Vertical divider between columns */
.bio-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1.5px;
    background-color: #1A1A1A;
    transform: translateX(-50%);
}

.bio-column {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    color: #4D4D4D;
}

.bio-column strong {
    font-weight: 500;
}

.bio-column strong em {
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 700;
    font-style: oblique;
}

.bio-column a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.bio-column a:hover {
    opacity: 0.7;
}

/* Portfolio note */
.note {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 50px;
    color: #4A4A4A;
}

/* CTA buttons container */
.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Mono', monospace;
    letter-spacing: 1px;
    text-decoration: none;
    color: #1A1A1A;
    background-color: transparent;
    border: 1.5px solid #1A1A1A;
    border-radius: 50px; /* Pill-shaped buttons */
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Button hover effect */
.btn:hover {
    background-color: #1A1A1A;
    color: #E8E4DC;
    transform: translateY(-2px);
}

/* Button active/focus states for accessibility */
.btn:focus {
    outline: none;
}

.btn:active {
    transform: translateY(0);
}

/* Responsive design for tablets */
@media (max-width: 768px) {
    body {
        padding: 30px 40px;
    }

    header {
        margin-bottom: 60px;
    }

    .headline {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .bio-section {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    /* Hide vertical divider on smaller screens */
    .bio-section::before {
        display: none;
    }

    .bio-column {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
        width: 100%;
        max-width: 300px;
    }
}

/* Responsive design for mobile phones */
@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    header {
        margin-bottom: 50px;
    }

    .site-name {
        font-size: 12px;
    }

    .headline {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .bio-column {
        font-size: 14px;
    }

    .note {
        font-size: 11px;
    }

    .btn {
        font-size: 12px;
        padding: 12px 24px;
    }
}
