/* Custom Fonts */
@font-face {
  font-family: 'BARNEGAT';
  src: url('fonts/Barnegat-Regular.woff2') format('woff2'),
       url('fonts/Barnegat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Silka';
  src: url('fonts/Silka-Regular.woff2') format('woff2'),
       url('fonts/Silka-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Silka';
    src: url('fonts/Silka-Regular-Italic.woff2') format('woff2'),
        url('fonts/Silka-Regular-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
  font-family: 'Silka';
  src: url('fonts/Silka-Medium.woff2') format('woff2'),
       url('fonts/Silka-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

body {
    font-family: 'Silka', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #f4f4f9;
    min-height: 100vh;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #50eaaa;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.main-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    padding: 40px;
    width: 100%;
    max-width: 1100px;
}

.logo {
    height: 50px;
    width: 96.457px;
    fill: #000405;
}

.intro-section {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 40px;
}

.name-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.name {
    font-family: 'BARNEGAT', sans-serif;
    font-size: 32px;
    color: #0d0d0e;
    letter-spacing: -1.6px;
    font-weight: 700;
}

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-weight: 500;
    color: #888888;
    font-size: 21px;
    line-height: normal;
}

.intro-text p {
    margin: 0;
}

.about-skills {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section h2 {
    font-family: 'BARNEGAT', sans-serif;
    font-size: 24px;
    color: #0d0d0e;
    letter-spacing: -1.2px;
    font-weight: 700;
}

.section p {
    font-size: 16px;
    color: #313439;
    line-height: 1.5;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 16px;
    color: black;
    margin-top: 36px;
}

.links a {
    white-space: nowrap;
}

.footer {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 14px;
    color: #141618;
    max-width: 706px;
    padding-top: 2rem;
}

.footer p {
    margin: 0;
}

.pantone-panel {
    display: none;
    flex-direction: column;
    min-height: 100vh;
    align-items: flex-end;
    padding: 60px;
}

.pantone-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border: 1px solid #888888;
    border-radius: 8px;
}

.pantone-box h2 {
    font-family: 'BARNEGAT', sans-serif;
    font-size: 24px;
    color: #0d0d0e;
    letter-spacing: -1.2px;
    font-weight: 400;
    margin: 0;
}

.pantone-years {
    font-size: 16px;
    color: #888888;
    line-height: normal;
}

.pantone-years p {
    margin: 0;
}

@media (min-width: 768px) {
    .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .main-content {
        padding: 60px;
    }

    .name {
        font-size: 64px;
    }

    .about-skills {
        flex-direction: row;
    }

    .section {
        flex: 1;
        min-width: 0;
    }

    .footer {
        padding-top: 0;
    }

    .pantone-panel {
        display: flex;
    }
}
