/* Main Styles */
html, body {
    --border-radius: 100px;
    background: #000000;
    color: #ffffff;
    font-family: "Syne",sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 10px;
    padding: 0;
}

section {
    position: relative;
    display: flex;
    width: 100%;
    height: calc(100vh - 80px);
    top: 80px;
    z-index: 2;
}

section.sticky {
    position: sticky;
    margin-top: 80px;
 
}

section.full-screen {
    height: 100vh;
    top: 0;
    margin-top: 0;
    z-index: 3;
}

/* Navigation Styles */
nav {
    position: fixed;
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
    right: 0;
    font-size: 20px;
    z-index: 1;
}

nav ul {
    display: flex; 
    align-items: center;
    padding: 0 20px;
    margin: 0;
    width: 100%;
    height: 100%;
}

nav ul li {
    list-style: none;
    margin-left: 45px;
}

nav ul li a {
    color: #ffffff;
    font-family: "Space Mono", serif;
}

/* Headings and Links Styles */
h1 {
    font-size: 80px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 40px;
}

a {
    color: #3ff8df;
    text-decoration: none;
}

/* About Section Styles */
section.about .empty {
    flex-basis: 37.5vw;
    background: #e5e5e5;
    border-radius: var(--border-radius);
    margin: 10px;
}

section.about article {
    flex: 1;
    display: flex;
    flex-direction: column;
}

section.about article .title {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1c47ff;
    border-radius: var(--border-radius);
    padding: 3vw;
    margin: 10px;
}

section.about article .description {
    flex: 1;
    display: flex;
    align-items: center;
    background: #d6a3fb;
    border-radius: var(--border-radius);
    padding: 3vw;
    color: #000000;
    margin: 10px;
}

section.services article {
  display: flex;
  width: 100%;
}

section.services figure {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 56.25vw;
  margin: 10px;
  background: #97f5ab;
  border-radius: var(--border-radius);
  margin-bottom: 35px;
}

section.services figure img {
  width: 50%;
}


section.services .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  background: #423a3a;
  padding: 3vw;
  border-radius: var(--border-radius);
  margin: 10px;
  margin-bottom: 35px;
}

section.services .text a {
  font-family: monospace;
}

/* Services Section overrides */

section.services.services-html figure {
  background: #e76e6e;
}

section.services.services-css figure {
  background: #4ceb4c;
}

section.services.services-js figure {
  background: #bf3ae0;
}

section.services.services-js .text h2,
section.services.services-js .text a {
  color: #bf3ae0;
}

section.services.services-css .text h2,
section.services.services-css .text a {
  color: #4ceb4c;
}

section.services.services-html .text h2,
section.services.services-html .text a {
  color: #e76e6e;
}

/* Contact Section Styles */
section.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(#fa5555 10%, #97f5ab 30%, #289470 60%, #583cf5 100%);
    border-radius: var(--border-radius);
    height: 100vh;
    margin: 10px;
    width: calc(100% - 20px);
}

section.contact a {
    color: #000000;
    font-family: "Space Mono", serif;
    font-weight: bold;
    font-size: 100px;
    padding: 6.25vw;
    text-align: center;
    width: 100%;
}

/* Add these media queries at the end of the file */
@media screen and (max-width: 768px) {
    html, body {
        --border-radius: 50px;
        --gutter:6.25vw;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    nav {
        height: 60px;
    }

    nav ul {
        justify-content: center;
        gap: 40px;
    }

    nav ul li {
        margin: 0;
    }

    section {
        height: auto;
        min-height: calc(100vh - 60px);
        top: 60px;
    }

    section.about {
        flex-direction: column;
    }

    section.about .empty {
        display: none;
    }

    section.about article .title {
        padding: 6vw;
    }

    section.about article .description {
        padding: 6vw;
    }

    section.services article {
        flex-direction: column;
        padding: 10px;
    }

    section.services figure {
        flex-basis: auto;
        padding: 40px 20px;
    }

    section.services figure img {
        width: 70%;
    }

    section.services .text {
        padding: 6vw;
    }

    section.contact {
        margin: 10px;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: calc(100% - 20px);
    }

    section.contact a {
        font-size: 30px;
        padding: 20px;
        word-break: break-all;
        width: 100%;
        display: block;
        margin: 0 auto;
    }
}

/* Additional mobile adjustments for very small screens */
@media screen and (max-width: 480px) {
    nav ul {
        padding: 0 10px;
    }

    nav ul li a {
        font-size: 16px;
    }

    section.about article .title {
        padding: 20px;
    }

    section.about article .description {
        padding: 20px;
    }

    section.services .text {
        padding: 20px;
    }
}










