/*GENERAL*/

/*@import url('https://fonts.googleapis.com/css2?family=Jersey+15&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*/
@import url('https://fonts.googleapis.com/css2?family=BBH+Hegarty&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0; 
}

body {
   font-family: 'Poppins', sans-serif;
}

.bbh-hegarty-regular {
    font-family: "BBH Hegarty", sans-serif;
  }

html {
    scroll-behavior: smooth;
}

p {
    color: rgb(85,85,85);
}

/*TRANSITION*/
a, 
.btn {
    transition: all 300ms ease;
}

/*DESKTOP NAV*/

nav, 
.nav-links {
    display: flex;
}

nav {
    justify-content: space-around;
    align-items: center;
    height: 17vh;
    position: sticky; 
    top: 0;                 
    background-color: white;
    z-index: 1000;
}

.nav-links {
    gap: 2rem;
    list-style: none;
    font-size: 1.5rem;
    font-family: 'BBH Hegarty', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

a {
    color: black;
    text-decoration: none;
    text-decoration-color: white;
}

a:hover {

    color: grey;

    /*
    text-decotation: underline;
    text-underline-offset: 1rem;
    */
    text-decoration-color: rgb(181,181,181);
}

.logo {
    font-size: 2.5rem;
}

.logo:hover {
    cursor: default;
}

/*HAMBURGER MENU*/

#hamburger-nav {
    display: none;
    font-family: 'BBH Hegarty', sans-serif;
    position: sticky;    
    top: 0;                
    background-color: white; 
    z-index: 1000; 
}

.hamburger-menu {
    position: relative;
    display: inline-block;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
}

.hamburger-icon span {
    width: 100%;
    height: 2px;
    background-color: black;
    transition: all 0.3 ease-in-out;
}

.menu-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    width: fit-content;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3 ease-in-out;
}

.menu-links a {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
    transition: all 0.3 ease-in-out;
}

.menu-links li {
    list-style: none;
}

.menu-links.open {
    max-height: 300px;
}

.hamburger-icon.open span:first-child {
    transform: rotate(45deg) translate(10px, 5px);
}

.hamburger-icon.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.open span:last-child {
    transform: rotate(-45deg) translate(10px, -5px);
}

.hambrger-icon span:first-child {
    transform: none;
}

.hambrger-icon span:first-child {
    opacity: 1;
}

.hambrger-icon span:first-child {
    transform: none;
}

/*SECTIONS*/

section{
    padding-top: 4vh;
    height: 96vh;
    margin: 0 5rem;
    box-sizing:border-box;
    min-height: fit-content;
}

.section-container{
    display: flex;
}

/* profile section*/
 #profile {
    display: flex;
    justify-content: center;
    gap: 4rem;
    height: 80vh;
 }

 .section_pic-container {
    display: flex;
    height: 600px;
    width: 600px;
    margin: auto 0;
    margin-right: 4rem;
 }

 .section_text {
    align-self: center;
    text-align: center;
    margin-right: 5rem;
 }

 .section_text p {
    font-weight: 600;
 }

 .section_text_p1 {
    text-align: center;
 }

 .section__text__p1 {
    font-size: 2rem;
    margin-bottom: 1rem;
 }

 .section__text__p2 {
    font-size: 2rem;
    margin-bottom: 2rem;
 }

 .title {
    font-size: 5rem;
    text-align: center;
    margin-bottom: 1rem;
    white-space: nowrap;
 }

 #socials-container {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 2rem;
 }

 /* Icons */
 .icon {
    cursor: pointer;
    height: 2rem;
 }

.btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 300ms ease;
    padding: 1rem;
    width: 8rem;
    border-radius: 0;

    font-family: 'BBH Hegarty', sans-serif;
    transition: transform 0.1s steps(2), 
    box-shadow 0.1s steps(2),
    background-color 0.1s steps(2);

    image-rendering: pixelated;
    letter-spacing: 0.05em;
}

.btn-color-1, .btn-color-2{
    border: none;
    box-shadow:
        0 0 0 2px rgb(53,53,53),
        4px 4px 0 0 rgb(53,53,53);
}

.btn-color-1:hover, .btn-color-2:hover{
    cursor: pointer;
    transform: translate(4px, 4px);
    box-shadow:
        0 0 0 2px rgb(53,53,53);
}

.btn-color-1 {
    background: rgb(50,50,50);
    color: white;
}

.btn-color-1:hover {
    background: rgb(0,0,0);
}

.btn-color-2 {
    background: white;
    color: rgb(50,50,50);
}

.btn-color-2:hover {
    background: rgb(50,50,50);
    color: white;
}

.btn-container {
    gap: 1rem;
}



/* PROJECT CARD STYLING - MINIMAL DESIGN */
.project-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    margin: 3rem auto;
    max-width: 1600px; 
    padding: 0 3rem;
}

.project-minimal {
    background-color: white;
    border: none; 
    padding: 2rem;
    cursor: pointer;
    position: relative;
}

.project-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(230, 230, 230);
    margin-bottom: 1.5rem;
    font-family: "BBH Hegarty", sans-serif;
}

.project-image-minimal {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.project-image-minimal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-minimal:hover .project-image-minimal img {
    transform: scale(1.05);
}

.project-title-minimal {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: rgb(50, 50, 50);
}

.project-type-minimal {
    font-size: 0.9rem;
    color: rgb(120, 120, 120);
    margin: 0 0 1.5rem 0;
}

.project-details-minimal {
    margin-top: 1rem;
}

.project-description-minimal {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgb(85, 85, 85);
    margin-bottom: 1.5rem;
}

.project-tools-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tool-tag-minimal {
    padding: 0.4rem 0.8rem;
    background-color: rgb(245, 245, 245);
    border: 1px solid rgb(220, 220, 220);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgb(80, 80, 80);
    transition: all 0.2s ease;
}

.tool-tag-minimal:hover {
    background-color: rgb(240, 240, 240);
}

.tool-tag-minimal.orange {
    background-color: #fff0e6;
    border-color: #ff7710;
    color: #ff7710;
    font-weight: 500;
}

/* MORE SECTION */
#more {
    position: relative;
}

#more .section-container {
    justify-content: center;
    align-items: center;
    text-align: center;
}



/* ABOUT FULL PAGE */
#about-full {
    padding: 2rem;
    margin-top: 5rem;
}

.about-details-container {
    display: flex;
    gap: 3rem;
    margin: 3rem auto;
    max-width: 1200px;
    align-items: flex-start;
}

.about-pic-container {
    flex: 1;
}

.about-pic {
    width: 100%;
    border-radius: 2rem;
    object-fit: cover;
}

.about-text-container {
    flex: 1.5;
    text-align: left;
}

.about-text-container h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-text-container p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* MORE PAGE */
#more-full {
    padding: 2rem;
    margin-top: 5rem;
}

.more-container {
    max-width: 1000px;
    margin: 3rem auto;
    text-align: left;
}

.more-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: white;
    border: 1px solid rgb(163, 163, 163);
    border-radius: 2rem;
}

.more-section h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.more-section p,
.more-section ul {
    line-height: 1.8;
}

.more-section ul {
    padding-left: 2rem;
}

.more-section li {
    margin-bottom: 0.5rem;
}
