	/* Reset */

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

	
	/* Color Pencils Group */
        :root {
		--color-primary: purple;
		--color-primary-dark: indigo;
		--color-primary-light: violet;
		--color-meteorite: darkviolet;
		--color-dark: #1d1e20;
		--color-gray: #727586;
		--color-gray-light: #f2f3f6;
		--color-light: #fff;
		--color-success: #00b090;
		--color-warning: magenta;
        }


	/* navigation stick above page & styling */
        nav {
            background-color: var(--color-dark);
	    opacity: 0.87
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
	/* helps the navigation bar horizontally */
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }
	
        /* Spacing within navigation bar so they don't all get sandwiched into one word */
        nav a {
            display: block;
            color: var(--color-light);
            text-decoration: none;
            padding: 15px 25px;
            transition: background-color 0.3s ease;
            font-weight: 500;
        }
        
	/* Reponsive hover for the words in the nav bar */
        nav a:hover {
            background-color: var(--color-primary);
        }
        

	/* Main Focus outside under navigation bar */
	body {
		font-family: 'Segoe UI', sans-serif;
		background: #f0f4f8;
		color: #333;
	}


	/* header section */
	header {
		background-color: var(--color-dark);
		color: var(--color-light);
		padding: 60px 20px;
		text-align: center;
	
	}

	header > h1 {
		
		font-size: 48px;
		margin-bottom: 10px;
		font-weight: 700;
	}

	header > h2 {
		
		font-size: 28px;
		margin-bottom: 10px;
		font-weight: 700;
	}


	header > h3 {
		
		font-size: 18px;
		margin-bottom: 10px;
		font-weight: 700;
	}

	/* Mini-Gallery Image Section for Portfolio */
	.gallery-section {
    		max-width: 1170px;
    		margin: 0 auto;
    		padding: 70px 20px;
  	}

  	.gallery-section h2 {
    		font-size: 28px;
    		color: var(--color-dark);
    		margin-bottom: 30px;
    		text-align: center;
    		font-weight: 700;
  	}

  	.gallery-grid {
    		display: grid;
    		grid-template-columns: 1fr 1fr 1fr;
    		gap: 30px;
    		margin-bottom: 30px;
  	}

  	.gallery-item img {
    		width: 100%;
    		height: auto;
    		border-radius: 12px;
    		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  	}

  	.gallery-description {
    		text-align: center;
    		font-size: 15px;
    		color: var(--color-gray);
    		line-height: 1.7;
    		max-width: 800px;
    		margin: 0 auto;
  	}

	


	/* Flex Columns */
	.flex-columns {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.flex-columns .card {
		background: var(--color-primary);
		color: var(--color-light);
		padding: 18px 20px;
		border-radius: 8px;
		font-size: 1rem;
		font-weight: 500;
		transition: transform 0.2s, background 0.2s;
	}

	.flex-columns .card:hover {
		background: var(--color-primary-dark);
		transform: translateX(6px);
	}

	.flex-rows {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 14px;
	}

	.flex-rows .card {
		flex: 1 1 140px;
		background: var(--color-primary);
		color: white;
		padding: 20px;
		border-radius: 8px;
		text-align: center;
		font-weight: 600;
		font-size: 0.95rem;
		transition: transform 0.2s, background 0.2s;
	}

	.flex-rows .card:hover {
		background: var(--color-primary);
		transform: translateY(-4px);
	}
	

	/* Table Code */
	table {
  		font-family: arial, sans-serif;
  		border-collapse: collapse;
  		width: 100%;
	}

	td, th {
  		border: 1px solid #dddddd;
  		text-align: left;
  		padding: 8px;
	}

	tr:nth-child(even) {
  		background-color: #727586;
	}

	tr:nth-child(odd) {
		background-color: #1d1e20;

	}
	.orange-item {
  		color: orange;
	}

	.yellow-item {
  		color: yellow;
	}

	.purple-item {
  		color: magenta;
	}


	#accordion {
		font-size: 0.95rem;
	}

	#accordion h3 {
		font-size: 1 rem;
	}

	#accordion p {
		line-height: 1.6;
		color: var(--color-primary);
	}

	.clear {
		clear: both;
	}

	a {
		color: var(--color-primary);
		text-decoration: none;
	}

	a: hover {
		color: var(--color-primary);
		text decoration: underline;
	}


	ul {
		list-style: none;
	}



	/* Footer below everything */
        footer {
            background-color: var(--color-dark);
            color: var(--color-light);
            padding: 40px 20px;
            text-align: center;
            margin-top: 5px;
        }
        
	/* First paragraph of the footer section */
        footer p {
            margin-bottom: 10px;
            opacity: 0.9;
        }
        
	/* Colors for as such at rest or non-engaged */
        footer a {
            color: var(--color-meteorite);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
	/* animation for the footer section */
        footer a:hover {
            color: var(--color-primary-light);
        }
        
	/* vertical spacing between footer information and button */
        .social-links {
            margin-top: 20px;
        }
        
	/* Colors for as such at rest or non-engaged */
        .social-links a {
            display: inline-block;
            margin: 0 10px;
            padding: 8px;
            background-color: var(--color-primary);
            border-radius: 5px;
            transition: background-color 0.3 ease, transform 0.3s ease;
        }

	/* animation for the social media links section on hover */
	.social-links a img {
		width: 24px;
		height: 24px;
		display: block;
		filter: brightness(1);
		transition: filter 0.3 ease;
	}

        /* animation for the media links section */
        .social-links a:hover {
            background-color: var(--color-meteorite);
	    transform: scale(1.1);
        }

	.social-links a: hover img {
		filter: brightness(1.2);
	}



	/* Mobile Device Specifics */

        @media (max-width: 768px) {
            header h1 {
                font-size: 2rem;
            }
            
            header p {
                font-size: 1.1rem;
            }
            
            .hero-section {
                padding: 40px 20px;
            }
            
            .hero-section h2 {
                font-size: 1.7rem;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav a {
                text-align: center;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
            }
	
        }

