/* Font Face */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('/Fonts/HelveticaNeue.ttc') format('truetype');
    font-weight: 400;
    font-style: normal;
}




/* Global Styles */
* {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='8' fill='black' /%3E%3C/svg%3E") 16 16, pointer;
}

.dark-mode * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='8' fill='white' /%3E%3C/svg%3E") 16 16, pointer;
}

html, body {
    background-color: white;
    color: black;
    transition: background-color 0.5s ease, color 0.5s ease;
}

body.dark-mode {
    background-color: black !important;
}

.dark-mode {
    color: white !important;
}

.light-mode {
    color: black !important;
}




/* Styling for the round button */
.round-button {
    width: 2.7vw;
    height: 2.7vw;
    border-radius: 50%;
    background-color: black;
    border: none;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='8' fill='white' /%3E%3C/svg%3E") 16 16, pointer;
    transition: transform 0.2s ease;
}

.round-button.dark-mode {
    background-color: white !important;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='8' fill='black' /%3E%3C/svg%3E") 16 16, pointer;
}

/* Button hover effect */
.round-button:hover {
    transform: scale(1.1);
}




/* HR Styles */
hr {
    margin-bottom: 20px;
    height: 2px;
    border: none;
    background-color: black;
    width: calc(100% - 40px);
    margin-left: 20px;
}

hr.light-mode {
    background-color: black;
}

hr.dark-mode {
    background-color: white;
}




/* Hidden Element */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}




/* Headings */
h1 {
    font-weight: 400;
    font-size: 1.9rem;
    padding: 20px;
    max-width: 700px;
}

h2 {
    font-weight:400;
    font-size:min(2.3vw, 2.5rem);
    margin-left:120px;
}




/* Container and Rows */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
}

.row.row-1 {
    width: 100vw;
    font-size: min(2.3vw, 2.5rem);
}

.column {
    padding: 20px;
}

.row-1 .column.left {
    width: 100%;
}

.column.right {
    max-width: 700px;
}

.column.right p {
    letter-spacing: -0.1px;
}

.row-2 .column.left {
    font-size: min(2.3vw, 2.5rem);
}

.row-2 .column.right {
    font-size: 0.8rem;
}




/* Row 1 */
.row-1 .left {
    display: flex;
    align-items: flex-start;
}

.row-1 .right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}




/* Row 2 */
.row-2 .left {
    align-self: flex-end;
}

.row-2 .right {
    display: flex;
    justify-content: flex-end;
    align-self: flex-end;
    width: 100%;
}




/* Inner Columns */
.inner-columns {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.inner-column p {
    padding:3px 0;
}

.inner-column {
    width: 23%;
    text-align: left;
    padding: 0;
}

.inner-column:nth-child(1) p {
    letter-spacing: 1px;
}

.inner-column:nth-child(2) p, .inner-column:nth-child(3) p, .inner-column:nth-child(4) p {
    letter-spacing: 0.2px;
}

.column.left p a {
    color: black;
    text-decoration: none;
    opacity: 1; /* Default opacity */
    transition: opacity 0.3s; /* Smooth transition */
}

.column.left p a:hover {
    opacity: 0.6; /* Opacity on hover */
}




/* Mobile Only */
.mobile-only {
    display: none;
}





/* Media Queries */

@media (min-width: 1200px) {
    .column.right {
        min-width: 62.5vw !important;
        max-width: 62.5vw !important;
    } 
}


@media (max-width: 768px) {
    h2 {
        font-size:2.5rem;
    }

    .row.row-1 {
        font-size:2.5rem;
    }

    .row.row-2 .column.left {
        font-size:2.5rem;
    }

    .round-button {
        width: 3rem;
        height: 3rem;
    }


    .container {
        flex-direction: column;
    }

    .row-1, .row-2 {
        flex-direction: column;
    }

    .row-1 .column.left {
        order: 1;
    }

    .row-1 .column.right {
        order: 2;
        margin-top: 80px;
    }

    .row-2 .column.right {
        order: 3; 
    }

    .row-2 .column.left {
        order: 4;
    }

    .column {
        width: 100%;
    }

    .mobile-only {
        display: block;
    }
}

@media (max-width: 576px) {
    .inner-columns {
        flex-direction: column !important;
    }

    .inner-columns p {
        padding: 3px 0;
    }

    .inner-column {
        width: 100%;
        margin-bottom: 25px;
    }

    .inner-column:nth-child(1) {
        font-size: 0.8rem;
    }

    .inner-column {
        font-size: 1rem;
    }
}
