@charset "utf-8";

/*
    Freelance Home Stylesheet
    Author: Jose Sanchez
    Date: 2/12/2026

    Filename: gf_stylesheet1.css
*/

/* Color Palette */
:root {
    --primary-color: #E7E2DD;
    --secondary-color: #D1C7BD;
    --accent-color: #AF8C5C;
    --footer-color: #474440;
}

/* Font Styles */
.figtree-regular {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}


/* HTML & Body Styles */
html {
    background-color: var(--primary-color);
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Figtree", sans-serif;
}

/* Contact Styles */
.contact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: baseline;
    width: 100%;
}

.facebook-icon {
    display: block;
    width: 3.4rem;
    margin: 0.6rem;
}

.email-icon {
    display: block;
    width: 4rem;
    margin: 1.1rem;
}


/* Logo Styles */
.logo {
    display: flex;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 50px;
    width: 100%;
}

.logo img {
    display: block;
    width: 80%;
}




/* Profile Styles */

.profile {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    justify-items: center;
    margin-bottom: 2rem;
}

.intro h1 {
    margin-bottom: 0;
}

.intro p {
    font-size: 1.5rem;
    margin-top: 0;
}

.about-me {
    font-size: 1.3rem;
    padding: 0px 25px;
}

/* Websites Styles */
.websites {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-items: center;
    width: 90%;
    margin: 0 auto;
    border-top: 3px solid black;
    padding-bottom: 50px;
}

.info {
    margin-top: 40px;
    font-size: 1.3rem;
}

/* Button Styles */
.buttons {
    margin-top: 10px;
}

.button {
    border-radius: 0.75em;
    background-color: #000000;
    border: 1px solid #000000;
    font-size: 1.4rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.btn {
    display: block;
    text-decoration: none;
    box-sizing: border-box;
    border: 2px solid black;
    border-radius: 0.75em;
    padding: 0.75em 1.5em;
    background: var(--accent-color);
    color: black;
    transform: translateY(-0.2em);
    transition: transform 0.1s ease;
}

.button:active .btn,
.button.pressed .btn {
    transform: translateY(0);
}

.explore {
    margin-top: 2rem;
}



/* Slide In Animation */
/* from right to left */
.slide-in-left {
    opacity: 0;
    transform: translateX(50px);
    animation: slideIn 1.3s ease forwards;
}
/* From left to right*/
.slide-in-right {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1.3s ease forwards;
}
/* From top to bottom */
.logo {
    opacity: 0;
    transform: translateY(-50px);
    animation: slideIn 1.3s ease forwards;
}

.intro {
    opacity: 0;
    transform: translateX(50px);
    animation: slideIn 1.3s ease forwards;
}

/* From bottom to top */
.profile-pic {
    opacity: 0;
    transform: translateY(50px);
    animation: slideIn 1s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Fade-in Animation on Scroll*/
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.3s ease, transform 1.3s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}


/* Footer Styles */
footer {
    display: flex;
    flex-direction: column;
    background-color: var(--footer-color);
    margin-top: 0;
    text-align: center;
    border-top: 2px solid var(--accent-color);
}

footer img {
    width: 100%;
    align-items: center;
    margin: 0 auto;
}

.foot-logo {
    display: block;
    width: 8rem;
    padding-top: 20px;
}

footer p {
    margin: 5px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.links {
    display: flex;
    flex-direction: column;
    line-height: 1.5rem;
}

.foot-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
}

.links a {
    text-decoration: underline var(--accent-color);
    color: var(--accent-color);
    padding: 5px;
}

.links h3 {
    margin-bottom: 5px;
    text-decoration: none;
}

/* Smaller Phone Screens */
@media (max-width: 380px) {
    .foot-nav {
        width: 70%;
    }

    .button {
        font-size: 1.3rem;
    }
}


/* Desktop Query */
@media (min-width: 1024px) {
    body {
        max-width: 1440px;
        margin: 0 auto;
    }

    /* Contact Styles */
    .facebook-icon {
        width: 5rem;
    }

    .email-icon {
        width: 6rem;
    }


    /* Logo Styles */
    .logo {
        width: 45rem;
        max-width: 50rem;
        margin: 0 auto;
    }

    /* Profile */
    .profile {
        width: 40rem;
        margin: 0 auto;
    }

    .websites {
        width: 45rem;
        margin: 0 auto;
    }

    .buttons {
        width: 50%;
        padding-top: 50px;
        margin: 0 auto;
    }

    /* Footer Styles */
    footer {
        font-size: larger;
    }

    footer p {
        font-size: 1rem;
    }


}