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

body {
    font-family: 'Raleway', sans-serif;
    background-color: #1c1d25;
    color: white;
}

.buttonText {
    font-family: 'PT Serif', serif;
}

.WIP {
    font-weight: 800;
    font-size: 65px;
    color: white;
}

section {
    background-color: #1c1d25;
    color: white;
}

.hero {
    background: #1c1d25;
    min-height: 100vh;
    color: white;
    font-size: 40px;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
}

.logo {
    height: 80px;
    width: 150px;
}

ul {
    display: flex;
    list-style-type: none;
    width: 500px;
    justify-content: space-around;
    font-size: 30px;
}

li {
    text-decoration: none;
}

/* --- HERO AREA --- */
.hero-area {
    display: flex;
    min-height: calc(100vh - 100px);
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
}

.hero-text {
    max-width: 60%;
    margin-left: 80px;
}

.cursiveName {
    text-align: center;
    font-family: 'Tangerine', cursive;
}

.abbasIntro {
    font-weight: 400;
    font-size: 20px;
    margin-top: 15px;
}

/* --- FIXED VERTICAL SIDEBAR (RIGHT EDGE) --- */
.socials {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 100;
    margin: 0;
    padding: 0;
}

.spacing{
    padding-top: 12px;
}
.social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social:hover {
    transform: scale(1.15);
    opacity: 0.85;
}

.social svg {
    display: block;
    width: 40px;
    height: 40px;
}

/* --- BUTTONS --- */
button {
    width: 200px;
    height: 50px;
    border-radius: 125px;
    border: none;
    background-color: rgb(81, 234, 219);
    text-align: center;
    font-size: 24px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    margin-top: 25px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: rgb(165, 241, 248);
}

button:active {
    background-color: darkgrey;
    color: rgb(83, 97, 96);
}

/* --- TYPOGRAPHY & GENERAL --- */
h1 {
    font-size: 90px;
    margin: 0;
}

h2 {
    font-size: 60px;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
}

p {
    margin: 0;
    font-weight: 200;
}

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

hr {
    margin: 20px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- SUB-SECTIONS & PROJECTS --- */
.sub-section {
    display: flex;
    justify-content: space-between;
    padding: 60px;
}

.sub-section-alternative {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 60px;
}

html{
    scroll-behavior: smooth;
}
a{
    text-decoration: underline;
    text-decoration-color: blue;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
    font-weight: bold;
}
.headshot {
    width: 275px;
    margin-right: 25px;
    border-radius: 150px;
}

.headshot-container {
    display: flex;
    align-items: center;
}

.project-container {
    display: flex;
    margin-bottom: 40px;
    justify-content: space-around;
    gap: 20px;
}

.project-card {
    width: 300px;
    height: 550px;
    box-shadow: 5px 5px 20px rgba(77, 143, 179, 0.825);
    background-color: #242630;
    border-radius: 10px;
    overflow: hidden;
}

.projectImages {
    margin-top: 20px;
    width: 100%;
}

.projectLink {
    text-decoration: none;
    color: #a855f7;
}

.subtext {
    font-size: 15px;
    font-weight: 400;
}

.information {
    margin-left: 75px;
}

/* --- FOOTER --- */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: white;
    background-color: rgba(77, 143, 179, 0.825);
    padding: 40px 20px;
}

.footerSocials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footerSocials svg {
    width: 35px;
    height: 35px;
}

.contactSocials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    background-color: transparent;
}
.bottomPageContactLink {
    font-weight: 400;
    text-decoration: none;
}

hr {
    height: 2.5px;
    border: none;
    background: white;
}
/* --- MOBILE & RESPONSIVENESS --- */
.hamburger {
    display: none;
}

.hamburger:focus {
    outline: 0;
}

@media only screen and (max-width: 1000px) {
    .hero-area {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-text {
        max-width: 100%;
        margin-left: 0;
    }

    .hamburger {
        display: block;
        width: 50px;
        height: 50px;
        border: 0;
        background-color: transparent;
        color: white;
        margin: 10px;
        align-self: flex-end;
        cursor: pointer;
    }

    ul {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 15px;
        background-color: #2c2c30;
        padding: 20px 0;
    }

    ul.show {
        display: flex;
    }

    nav {
        flex-direction: column;
        align-items: stretch;
        background-color: #2c2c30;
        padding: 10px 20px;
    }

    .project-container {
        flex-wrap: wrap;
    }
}