 /*
A submission for SC Johnson's Capstone Project
	My Design is titled SC Portfolio
	My Name is SC Johnson
	My solution is utilizng structural components from "How To Build a Responsive Navigation Bar with Flexbox"
		– Code written by @yuvrajghule281 
        - https://www.geeksforgeeks.org

    Developed with guidance from Microsoft Copilot (GPT-4)
    Copilot assisted in the HTML structure and the footer.
    Tool: https://copilot.microsoft.com/
    Date: November 2025

    "Vapor" Theme developed by Thomas Park 
        - Licensed under MIT
        - https://bootswatch.com/vapor/
*/ 

/*	This CSS file accompanies my Capstone Project */


/*	/////  CSS CITATIONS */
/* 	This CSS file is released under the Creative Commons License - 
		- https://creativecommons.org/licenses/by-nc-sa/4.0/  /* 
/* License allows: distribution, adaptations, and non commercial use, but requires ShareAlike and attribution to me /*


/* 	/////  IMAGE AND VIDEO CITATIONS */
/* 	Images are all cited below and not included in the CC4.0 above, which is limited to the CSS only /* 

/*	All other images and videos are cited below and released under Creative Commons License CC BY-SA 4.0, and belong to the author of this website
    - https://creativecommons.org/licenses/by-sa/4.0/  
			- SC_Demo_Reel_Fixed.mp4 
            - SC_Portrait_Fixed.jpg
*/

/* main.css */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Logo */

.logo a {
    text-decoration: none;
    font-size: 24px;
    display: none;
}

/* Navigation Bar */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    padding-top: 20px;
    background-color: #77b8f0;
    color: #fff;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s, text-decoration 0.3s, background-color 0.3s;
    padding: 5px 10px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e0e0e0;
    background-color: #361d87;
    border-radius: 4px;
}

/* Menu Toggle */

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    background-color: #fff;
    height: 3px;
    width: 25px;
    margin: 5px;
}

/* Home Page */

main {
    padding: 2em;
}

.demo {
    text-align: center;
    padding: 50px;
    border-radius: 4px;
}

.demo p {
    color: rgb(199, 199, 199);
    margin-top: 20px;
}

/* Footer */

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1em;
    margin-top: 2em;
}

/* About Page */

.portrait {
    text-align: center;
    border-radius: 4px;
    padding: 20px;
}

.about h2 {
    text-align: center;
    padding-bottom: 10px;
}
.about {
    border-radius: 4px;
    padding: 30px;
}

/* Services Page */

.services-content {
    border-radius: 4px; 
}

.services-content h1, h4 {
    text-align: center;
}

.modeling {
    border-radius: 4px; 
    padding: 40px;
    margin-bottom: 30px;
}

.photoshop {
    border-radius: 4px; 
    padding: 40px;
}

/* Mobile View */

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
    /* I will modify the background color to better fit website theme */    
        background-color: #2f9bf9;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }
}