/* **Site Defaults** */
    /* **Global Site Settings** */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            /* Color Scheme */
            --primary: #9685f9;
            --secondary: #6D7993;
            --light: #9099A2;
            --default: #D5D5D5;
        }
        body {
            /* Font Sizing Style & Color */
            /* <uniquifier>: Use a uniquifier for the class name 
            <weight>: Use a value from 100 to 900 */
            font-family: "Raleway", sans-serif;
            font-optical-sizing: auto;
            font-style: normal;
            font-size: 16px;
            line-height: 1.5;
            background: var(--default);
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: black;
        }
        ul {
            list-style: none;
        }
        img {
            /* Image Sizing Style & Color */
            max-width: 100%;
        }

    /* **Top & Bottom Of Page Navigation & Format** */
        .navbar {
            background: var(--default);
            padding: 20px;
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .navbar .main-menu ul {
            display: flex;
        }
        .navbar ul li a {
            /* Set Default Nav Bar Spacing & Font Attributes */
            padding: 10px 20px;
            display: block;
            font-weight: 600;
            transition: 0.5s;
        }
        .navbar ul li a:hover {
            /* Sets Color For Hover Action */
            color: var(--primary);
        }
        .navbar ul li a i {
            /* Adds Space After Nav Bar Icons */
            margin-right: 10px;
        }
        .navbar ul li:last-child a {
            /* Adds Space Before Nav Bar Last Item */
            margin-left: 10px;
        }

    /* **Hamburger Menu Button** */
        .hamburger-button {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1000;
        }
        .hamburger-button .hamburger-line {
            width: 30px;
            height: 3px;
            background: var(--secondary);
            margin: 6px 0;
        }

    /* **Mobile Menu** */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 250px;
            height: 100%;
            z-index: 100;
            background: var(--default);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
            transition: right 0.3s ease-in-out;
        }
        .mobile-menu.active {
            right: 0;
        }
        .mobile-menu ul {
            margin-top: 100px;
            padding-right: 10px;
        }
        .mobile-menu ul li {
            margin: 10px 0;
        }
        .mobile-menu ul li a {
            font-size: 20px;
            transition: 0.3s;
        }

    /* **Footer** */
        .footer {
            padding: 40px 0;
        }
        .footer h4 {
            margin-bottom: 10px;
        }
        .footer ul li {
            line-height: 2.5;
        }
        footer a {
            color: black;
        }
        .footer i {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 30px;
            justify-content: center;
            align-items: center;
        }
        .footer .card {
            margin: 20px 30px 30px 0;
        }
        .footer input[type='email'] {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--primary);
            border-radius: 5px;
            margin: 20px 0;
        }


/* **Index Home** */
    /* **Index Page Main Element** */
        .intro {
            padding-left: 10px;
            padding-right: 10px;
            margin-bottom: 10px;
        }
        .intro .container {
            /* Photo by Aleksandar Pasaric: https://www.pexels.com/photo/view-of-cityscape-325185/ */
            /* background: url('../images/pexels-aleksandar-pasaric-325185.jpg') no-repeat; */
            background-size: contain;
            background-position: center bottom;
            height:auto;
        }
        .intro .intro-content {
            width: 90%
        }
        .intro .intro-text {
            width: 70%;
            margin-bottom: 20px;
        }
    /* **Index Page Secondary Element** */
        .example {
            padding: 10px 0 40px;
        }
        .example .example-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .example .preview {
            margin-bottom: 20px;
            border-radius: 10px;
        }
        /* **Index Page Projet Element** */
        .projects .projects-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            margin-top: 50px;
            gap: 30px;
        }
        .projects .project-card-header {
            margin-left: 5px;
            margin-right: 5px;
        }
        .projects .project-card-body {
            margin-left: 5px;
            margin-right: 5px;
        }
        .projects .project-card-subheading {
            margin-bottom: 30px;
            border-bottom: 1px solid var(--default);
        }
        .projects ul {
            margin: 30px;
        }
        .projects ul li {
            margin-bottom: 20px;
        }
        .projects ul li i {
            margin-right: 10px;
        }
        .projects .container-sm p {
            padding: 10px;
        }


/* **Portfolio** */
        /* **Introduction** */
        .portfolio-intro {
            margin-bottom: 10px;
        }
        .portfolio-intro .container {
            background-size: contain;
            background-position: center bottom;
            height:auto;
        }
        .portfolio-intro-content {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .portfolio-intro-heading {
            width: 90%;
            text-align: left;
        }
        .portfolio-intro-text {
            width: 80%;
            margin-bottom: 10px;
            text-align: justify;
        }
        /* **Showcase Advertisement** */
        .advert .preview {
            margin-bottom: 20px;
            border-radius: 10px;
        }
        /* **Artifacts** */
        .artifact {
            margin-bottom: 10px;
        }
        .artifact .container {
            background-size: contain;
            background-position: center bottom;
            height:auto;
        }
        .artifact-content {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .artifact-heading {
            width: 80%;
            text-align: left;
        }
        .artifact-text {
            width: 70%;
            margin-bottom: 10px;
            text-align: left;
        }
        .artifact-skills {
            width: 50%;
            margin-bottom: 10px;
            text-align: left;
        }
        /* **Showcase** */
        .showcase {
            margin-bottom: 10px;
        }
        .showcase .container-sm {
            background-size: contain;
            background-position: center bottom;
            height: auto;
        }
        .showcase-content .preview {
            margin-top: 20px;
            margin-bottom: 20px;
            border-radius: 10px;
        }
        .showcase-content .row {
            display: flex;
            align-items: center;

        }
        .showcase-content .column {
            flex: 33.33%;
            padding: 5px;
        }
        .showcase-content .image {
            margin-top: 1px;
            margin-bottom: 1px;
            border-radius: 10px;
        }
        .showcase-content video {
            margin-top: 10px;
            margin-bottom: 1px;
            border-radius: 10px;
        }
        /* **Outro Buttons** */
        .outro {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;
            margin-bottom: 10px;
            align-items: center;
        }
        .outro .container {
            height:auto;
            align-items: center;
        }
        .outro .outro-content {
            width: 100%;
            align-items: center;
        }
        .outro .outro-buttons {
            display: flex;
            flex-direction: row;
            align-items: center;
        }



/* **Utility Classes** */
    /* **Containters** */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .container-sm {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 15px;
        }

    /* **Card** */
        .card {
            background: var(--default);
            color: black;
            border-radius: 10px;
            padding: 20px;
        }

    /* **Buttons** */
        .btn {
            display: inline-block;
            padding: 13px 20px;
            background: var(--light);
            color: black;
            font-weight: 600;
            text-decoration: none;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            text-align: center;
            transition: 0.5s;
        }
        .btn:hover {
            opacity: 0.8;
        }
        .btn-primary {
            background: var(--primary);
            color: black;
        }
        .btn-secondary {
            background: var(--secondary);
            color: black;
        }
        .btn-block {
            display: block;
            width: 100%;
        }

    /* **Text Classes** */
            .text-xxl {
                font-size: 3rem;
                line-height: 1.2;
                font-weight: 600;
                margin: 40px 0 20px;
            }
            .text-xl {
                font-size: 2.2rem;
                line-height: 1.4;
                font-weight: normal;
                margin: 40px 0 20px;
            }
            .text-lg {
                font-size: 1.8rem;
                line-height: 1.4;
                font-weight: normal;
                margin: 30px 0 20px;
            }
            .text-md {
                font-size: 1.2rem;
                line-height: 1.4;
                font-weight: normal;
                margin: 20px 0 20px;
            }
            .text-sm {
                font-size: 0.9rem;
                line-height: 1.4;
                font-weight: normal;
                margin: 10px 0 5px;
            }
            .text-center {
                text-align: center;
            }

    /* **Background** */
        .bg-primary {
            background: var(--primary);
            color: black;
        }
        .bg-secondary {
            background: var(--secondary);
            color: black;
        }
        .bg-light {
            background: var(--light);
            color: black;
        }
        .bg-default {
            background: var(--default);
            color: black;
        }

/* **Media Queries for Responsiveness** */
    @media (max-width: 960px) {
        .text-xxl {
            font-size: 2.5rem;
        }

        .blog-container {
            width: 300px;
        }
    }
    @media (max-width: 670px) {
        .navbar .main-menu {
            display: none;
        }

        .navbar .hamburger-button {
            display: block;
        }

        .projects .projects-grid {
            grid-template-columns: 1fr;
        }

        .footer .footer-grid {
            grid-template-columns: 1fr;
        }

        .footer .card {
            margin-right: 0;
        }

        .footer .footer-grid > div {
            text-align: center;
        }
        /* **Text** */
        .text-xl {
            font-size: 1.9rem;
        }

        .text-lg {
            font-size: 1.5rem;
        }

        .text-md {
            font-size: 1.1rem;
        }      
    }

    @media (max-width: 500px) {
        .text-xxl {
            font-size: 2rem;
        }
    }