﻿/* Project: James Ponthieux
*/

:root {
    --bg-color: #0d0d0d;
    --nav-bg: #1a1a1a;

    /* --- Chekov Radiation Blue --- */
    --text-main: #3bdcff; 
    --accent-bright: #ffffff;
    --scan-color: rgba(59, 220, 255, 0.5);
    --font-data: 'Share Tech Mono', monospace;
}

body {
    background-color: #000;
    color: var(--text-main);
    font-family: var(--font-data);
    margin: 0;
    padding: 0;
    overflow-x: clip;
}

/* --- Header & Nav --- */
header {
    text-align: center;
    padding: 30px 0;
    background: var(--nav-bg);
    border-bottom: 2px solid var(--text-main);
}

header h1 {
    font-size: 2.2rem;
    margin: 0;
    text-shadow: 0 0 10px var(--text-main);
}

nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: rgba(26, 26, 26, 0.95);
    border-bottom: 2px solid var(--text-main);
    z-index: 1000;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav li a {
    display: block;
    color: var(--text-main);
    text-decoration: none;
    padding: 20px 25px;
    text-transform: uppercase;
}

nav li a:hover {
    color: var(--accent-bright);
    background-color: rgba(59, 220, 255, 0.1);
}

header h1::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
}

header h1::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
}

/* --- Main Section --- */
main {
    max-width: 950px;
    margin: 40px auto;
    padding: 10px;
}

/* --- Box Style (Chekov Blue Theme) --- */
.box {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--text-main); /* was pink */
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(6px);
}

.box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px var(--scan-color); /* blue glow */
}

.box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 220, 255, 0.15), /* blue instead of pink */
        transparent
    );
}

.box:hover::after {
    left: 100%;
    transition: 0.8s;
}

.box p {
    color: var(--accent-bright); /* cleaner than off-white */
    font-size: 16px;
    font-family: var(--font-data); /* keeps your theme consistent */
    line-height: 1.6;
    letter-spacing: 0.5px;
}
.image-row {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.image-row img {
    width: 250px;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-row img:hover {
    box-shadow: 0 0 20px rgba(13, 13, 13, 0.9);
    transform: scale(1.1) rotate(2deg);
}
footer {
    text-align: center;
    padding: 20px 0 60px 0;
    background: rgba(13, 13, 13, 0.9);
    border-top: 1px solid var(--text-main);
}

.contact-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.contact-links a:hover {
    color: var(--accent-bright);
    text-shadow: 0 0 8px var(--text-main);
}

.separator {
    color: var(--text-main);
    margin: 0 15px;
}

/* Desktop */
.phone {
    display: none;
}

/* Mobile */
@media screen and (max-width: 768px) {
.email {
	display: none;
	}

.phone {
	display: inline;
 	}
}

/* Media Query for Mobile Viewport */
@media screen and (max-width: 480px), print {    
	.grid {
	display: grid;
	grid-template-columns: auto;
	grid-gap: 10px;
	    }
}