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

html, body {
    cursor: none !important;
    background-color: #d9d9d9;
    color: #7b636b;
}

body {
    font-family: "Jersey 20", sans-serif;
    line-height: 1.4;
    overflow-x: hidden;
}

.custom-cursor {
    position: fixed;
    width: 100px;
    height: 100px;
    background-image: url('./cursors/current/ncursor2.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    opacity: 0;
}

.custom-cursor.active { opacity: 1; }
.custom-cursor.hover { transform: translate(-50%, -50%) scale(1.5); }

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 18vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 4vh 2vh 4vh; /* matches 4vh horizontal margin */
    z-index: 100;
    background-color: #d9d9d9;
}

.name-link {
    text-decoration: none;
    color: inherit;
}

.name {
    font-size: clamp(40px, 14vh, 120px);
    line-height: 0.8;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.name:hover {
    opacity: 0.7;
}

.menu-options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.menu-options a, .menu-options p {
    font-size: 20px;
    text-decoration: underline;
    color: #7b636b;
}

.active-page {
    text-decoration: none !important;
    font-weight: bold;
    opacity: 0.6;
}

.menu-options a:hover {
    opacity: 0.7;
}

.statement-container {
    padding-top: 22vh; /* clears the 18vh header with some extra breathing room */
    padding-left: 4vh;
    padding-right: 4vh;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.content-wrapper {
    max-width: 1000px; /* prevents lines from being too long to read */
}

.content-wrapper p {
    font-family: "Jersey 20", sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;
}

.contact-info {
    margin-top: 40px; /* space between paragraph and contact info */
    display: flex;
    flex-direction: column;
    gap: 8px; /* space between the email line and instagram line */
}

/* base style for the contact text */
.contact-info p, .contact-info .contact-link {
    font-family: "Jersey 20", sans-serif;
    font-size: 1.1rem;
    color: #7b636b;
    text-align: left; /* keeps it aligned with the paragraph start */
}

/* styling the specific clickable links */
.contact-link {
    text-decoration: underline;
    transition: opacity 0.2s ease;
    display: inline-block; /* helps with hover area */
}

.contact-link:hover { opacity: 0.6; }

.contact-info p { text-decoration: none; }

@media (max-width: 768px) {
    body { cursor: auto; }
    .custom-cursor { display: none; }

    .main-header {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding-top: 20px;
    }

    .menu-options {
        align-items: flex-start;
        margin-top: 10px;
    }

    .statement-container {
        padding-top: 28vh; /* more space for stacked header */
    }

    .name {
        font-size: 48px;
    }
}