@charset "utf-8";
/* CSS Document */


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


/* Body Styling */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    height: 100%; /* Add this */
    display: flex;
    flex-direction: column;
    font-family: "Roboto Mono", monospace;
    background-color: #121212;
    color: #E0E0E0;
}


/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    line-height: 1.2;
} 

/* TESTING ONLY  Text and Heading Styles 
h1, h2, h3, h4, h5, h6 {
font-family: "merriweather", serif;
font-weight: 700;
font-style: normal;
} */

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 0.625rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Paragraph and Text Styles */
p, li, ul, td, th {
    font-family: "Roboto Mono", monospace;
    font-size: 1rem;
    line-height: 1.5;
    color: #B0B0B0;
    margin-bottom: 0.9375rem;
}

/* Simple List Indentation */
ul, ol {
    padding-left: 3rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Adjust bullet point size and spacing if needed */
ul li::marker {
    font-size: 1rem; /* Adjust bullet size */
    /* color: #00FFC6; Match heading colour if needed */
}

a/* Default (unvisited) link color */
a:link {
    color: #00FFFF; /* Bright blue */
    text-decoration: none;
}

/* Visited links */
a:visited {
    color: #33CCFF; /* Teal or another easily readable color */
    text-decoration: none;
}

/* Hover effect */
a:hover {
    color: #FF4081; /* Neon pink on hover */
    text-decoration: underline; /* Optional */
}

/* Active (when clicked) */
a:active {
    color: #FFEA00; /* Neon yellow when clicking */
}





/* Navigation Styling */
.nav {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background-color: #242424;
    display: flex;
    justify-content: center;
}

.nav > div {
    width: 100%;
    max-width: 2000px;
    padding: 1rem 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation Styles */
.nav .logo {
    font-family: "Roboto Mono", monospace;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav ul li a {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.nav .logo a {
    color: #00FFC6; /* Bright teal color */
    text-decoration: none;
    display: block;
}

.nav .logo a:visited {
    color: #00FFC6; /* Same bright teal color */
}


.nav ul {
	margin: 0;
	padding: 0;
	height: 100%;
    list-style: none;
    display: flex;
    gap: 1rem;
    align-items: center; 
}

/* Navigation Bar Styling */
.nav ul li a {
    display: inline-block; /* Make links behave like buttons */
    padding:  0.625rem 0.9375rem;  /* Match CTA button padding */
    font-size: 1rem; /* Match CTA button font size */
    font-weight: bold;
    text-transform: uppercase; /* Uppercase text */
    text-decoration: none; /* Remove underline */
    color: #FFFFFF; /* White text */
    background-color: transparent; /* Transparent background */
    border-radius: 4px; /* Optional: Adds a slight rounded edge */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transitions */
}

/* Hover Effect for Navigation Links */
.nav ul li a:hover {
    background-color: #00FFC6; /* Bright teal background on hover */
    color: #121212; /* Black text on hover */
    text-decoration: none; /* Remove underline */
}

/* 404 Page Styles */
.error-container {
            min-height: 100vh;
            width: 100%;
            max-width: 2000px;
            margin: 0 auto;
            background-image: url('../assets/images/0020_404_notfound.png');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
        }

        .error-content {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .error-card {
            background-color: rgba(26, 26, 26, 0.75);
            border: 2px solid #FF4081;
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            max-width: 600px;
            width: 100%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        }

        .error-card h1 {
            color: #FF4081;
            margin-bottom: 1rem;
            font-size: 2.5rem;
        }

        .error-card p {
            margin-bottom: 2rem;
			text-align: left;
        }

/* Breadcrumb Styling */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: "Roboto Mono", monospace;
    margin-bottom: 2rem;
	flex-wrap: wrap; /* Adding this for wrapping */
    line-height: 1.5; /* Adding this for wrap spacing */
}

.breadcrumb a {
    color: #00FFC6;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FF4081;
}

.breadcrumb-separator {
    color: #448AFF;
    font-weight: bold;
}

.breadcrumb-current {
    color: #B0B0B0;
}

/* Blog Navigation Styles */

.blog-nav-container {
    margin-bottom: 2rem;
}

.blog-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: "Roboto Mono", monospace;
}

.blog-nav-link {
    color: #448AFF;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.blog-nav-link:hover {
    color: #00FFC6;
}

.nav-separator {
    color: #448AFF;
    font-weight: normal;
}

.nav-arrow {
    font-family: monospace;
    font-weight: normal;
}

/* Hide prev/next navigation elements by default */
.blog-nav-link.prev-post,
.blog-nav-link.next-post {
    display: none;
}

/* Show prev/next when explicitly set to inline */
.blog-nav-link.prev-post[style*="display: inline"],
.blog-nav-link.next-post[style*="display: inline"] {
    display: inline-flex;
}

/* Keep separators hidden by default */
.nav-separator {
    display: none;
}

/* Show separators when adjacent to visible elements */
.blog-nav-link[style*="display: inline"] + .nav-separator,
.nav-separator + .blog-nav-link[style*="display: inline"] {
    display: inline;
}

/* Always show the middle blog list link */
.blog-nav-link:not(.prev-post):not(.next-post) {
    display: inline-flex;
}

.blog-entry h3 a {
    color: #00FFC6;  /* Matches your existing heading color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-entry h3 a:hover {
    color: #FF4081;  /* Uses your existing hover color scheme */
}

.blog-entry {
    margin-bottom: 2rem;  /* Maintains spacing between entries */
}

/* Tag Styling */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border: 2px solid #448AFF;
    border-radius: 1rem;
    color: #448AFF;
    background-color: transparent;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: rgba(68, 138, 255, 0.1);
}

.tag.active {
    background-color: #448AFF;
    color: #121212;
}

/* Filter Section Styling */
.filter-section {
    background-color: #1a1a1a;
    border: 2px solid #448AFF;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filter-section h2 {
    color: #00FFC6;
    margin-bottom: 0.5rem;
}

.filter-section p {
    color: #B0B0B0;
    margin-bottom: 1rem;
}

/* Blog Entry Tag Container */
.blog-entry .tag-container {
    margin-top: 0.5rem;
}

.blog-entry .tag {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin: 1rem 0;
}

.no-posts p {
    color: #B0B0B0;
    font-style: italic;
    margin: 0;
}

/* Footer Styling */
.footer {
    width: 100%;
    background-color: #242424;
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.footer-inner {
    width: 100%;
    max-width: 2000px; /* Match your main container max-width */
    padding: 1.5rem 40px; /* Changed right/left padding to 40px */
    text-align: left; /* Change from center to left */
}


.footer-inner p {
    text-align: left;
    margin: 0;
}

/* Home Container */
.home-container {
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* Home Page Grid Layout */
.home-container .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 1.25rem;
    max-width: 2000px;
    margin: 0 auto;
}

/* Index Grid Layout */
.index-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 auto;
    padding: 40px 40px 40px 40px;
}

/* Index Card Styling */
.index-card {
    display: flex;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    min-height: 300px;
}

/* Individual Card Styles */
.index-card.blog {
    border: 2px solid #FF4081; /* Neon pink */
}

.index-card.gallery {
    border: 2px solid #448AFF; /* Neon blue */
}

.index-card.about {
    border: 2px solid #FFEA00; /* Neon yellow */
}

.index-card.styler {
    border: 2px solid #00FFC6; /* Neon teal */
}

/* Create an image container */
.index-card .image-container {
    width: 40%;
    overflow: hidden;
    position: relative;
}

.index-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.index-card:hover img {
    transform: scale(1.1);
}

.index-card .card-description {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.index-card h2 {
    font-size: 1.5rem;
    color: #448AFF;
    margin-bottom: 0.9375rem; 
}

.index-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #B0B0B0;
    margin-bottom: 1.25rem;
}

.index-card .card-description .button {
    margin-top: auto;
    align-self: flex-start;
}

/* General Card Styling */
.home-container .grid-item {
    height: 300px; /* Set fixed height for consistent card size */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    align-items: center; /* Centers content horizontally */
    background-size: cover; /* Ensures the image fills the card */
    background-position: top; /* Aligns the image to the top */
    background-repeat: no-repeat;
    color: #E0E0E0; /* Light text for contrast */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: relative; /* Allows positioning of text overlay */
    overflow: hidden; /* Prevent content overflow */
    text-align: center;
}
.home-container .grid-item h2, 
.home-container .grid-item p, 
.home-container .grid-item a {
    background-color: rgba(0, 0, 0, 0.7) !important; /* Reinforce transparency */
    padding: 0.625rem 0.9375rem;
    border-radius: 4px;
    display: inline-block; /* Prevent text elements from stretching */
    margin: 0.3125rem 0; /* Adds spacing between text blocks */
    color: #E0E0E0 !important; /* Ensure light text */
    text-align: center;
    text-decoration: none; /* Removes underlines on links */
    font-weight: bold;
    transition: all 0.3s ease; /* Smooth hover effect */
}

/* Grid Item - Base Styles */
.home-container .grid-item {
    position: relative; /* Establish a positioning context */
    overflow: hidden; /* Keeps scaling effect within the card */
}

/* Pseudo-element for Background Image */
.home-container .grid-item::before {
    content: ""; /* Creates the pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease-in-out; /* Smooth scaling effect */
    z-index: 0; /* Places the pseudo-element below the content */
}

/* Assign Background Images to Each Card */
.home-container .blog-card::before {
    background-image: url('../assets/graphics/blog.png');
	 background-position: top center; /* Move image down to show more at the top */
}

.home-container .gallery-card::before {
    background-image: url('../assets/graphics/gallery.png');
		 background-position: top center; /* Move image down to show more at the top */
}

.home-container .about-card::before {
    background-image: url('../assets/graphics/about.png');
}

.home-container .style-switcher::before {
    background-image: url('../assets/graphics/styler.png');
}

/* Scale the Background Image on Hover */
.home-container .grid-item:hover::before {
    transform: scale(1.1); /* Slightly grow the background image */
}

/* Content (Text) Layer */
.home-container .grid-item * {
    position: relative; /* Ensures content stays above the background */
    z-index: 1;
    text-align: center;
}


/* Hover Effect for Buttons */
.home-container .grid-item a:hover {
    background-color: #00FFC6; /* Neon teal background on hover */
    color: #121212; /* Dark text on hover */
}
/* Blog Card */
.home-container .blog-card {
    background-image: url('../assets/graphics/blog.png');
    border: 2px solid #FF4081; /* Neon pink border */
}

/* Gallery Card */
.home-container .gallery-card {
    background-image: url('../assets/graphics/gallery.png');
    border: 2px solid #448AFF; /* Neon blue border */
}

/* Style Switcher Card */
.home-container .style-switcher {
    background-image: url('../assets/graphics/styler.png');
    border: 2px solid #00FFC6; /* Neon teal border */
}

/* About Card */
.home-container .about-card {
    background-image: url('../assets/graphics/about.png');
    border: 2px solid #FFEA00; /* Neon yellow border */
}


/* Disabled Button Style */
.button.disabled {
    border: 2px solid #666666;
    color: #666666;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: default;
    opacity: 0.7;
}

.button.disabled:hover {
    background-color: rgba(0, 0, 0, 0.3);
    color: #666666;
    border-color: #666666;
}


/* Base Button Style */
.button {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
	display: inline-block;
    padding: 0.625rem 0.9375rem; 
    border: 2px solid #00FFC6;
    color: #00FFC6;
    text-transform: uppercase;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover Effect for All Buttons */
.button:hover {
    background-color: #00FFC6; /* Neon teal */
    color: #121212; /* Dark text */
    border-color: #121212; /* Dark border */
}

/* Styler-Specific Button Enhancements */
.styler-button {
    composes: button; /* Inherit all base button styles */
    margin: 5px 0; /* Add spacing between Styler buttons */
}

/* Navigation-Specific Buttons */
.nav-button {
    composes: button; /* Ensure nav buttons inherit base styles */
    padding: 0 0.75rem; /* Compact padding */
    font-size: 0.9rem; /* Smaller font size */
    background-color: transparent;
    border: none; /* No border */
}

.nav-button:hover {
    color: #FF4081; /* Neon pink */
    background-color: transparent; /* Transparent background */
    text-decoration: underline; /* Add underline effect */
}

.home-container .grid-item a {
    display: inline-block;
    padding: 10px 15px;
    border: 2px solid #00FFC6; /* Bright teal border */
    background-color: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
    color: #E0E0E0; /* Light grey text */
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Hover Effect */
.home-container .grid-item a:hover {
    background-color: #00FFC6; /* Neon teal background */
    color: #121212; /* Dark text on hover */
    border-color: #121212; /* Dark border on hover */
}

/* Force specificity with a stronger selector */
body .home-container .grid-container .grid-item a:hover {
    background-color: #00FFC6 !important;
    color: #121212 !important;
    border-color: #121212 !important;
}

/* Gallery Styles */

/* Gallery Header Styling */
.gallery-header {
    margin: 0 auto;
    padding: 40px 40px 20px 40px;
}

.gallery-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00FFC6;
    margin-bottom: 1.25rem;
}

/* Gallery Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
}

/* Gallery Card Styling */
.gallery-card {
    display: flex;
    background-color: #1a1a1a;
    border: 2px solid #448AFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
	min-resolution: 300px; /* changed from fixed height */
}

/* Create an image container */
/* Update image container styles */
.gallery-card .image-container {
    width: 40%;
    overflow: hidden;
    position: relative;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
	transition: transform 0.3s ease-in-out;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card .card-description {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* Change from center to flex-start */
  /*  overflow-y: auto;   Allow scrolling if content is too long */
}

.gallery-card h2 {
    font-size: 1.5rem;
    color: #448AFF;
    margin-bottom: 0.9375rem; 
}

.gallery-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #B0B0B0;
    margin-bottom: 1.25rem;
}

.gallery-card .card-description .button {
    margin-top: auto;
    align-self: flex-start;
}

/* Gallery List Card - Base Styles */
.gallery-list-card {
    display: flex;
    background-color: #1a1a1a;
    border: 2px solid #448AFF;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.3s ease;
    min-height: 180px; /* Changed from fixed height */
}

.gallery-list-card:hover {
    border-color: #FF4081;
}

.gallery-list-card .card-image {
    flex: 0 0 180px; /* Keep image width fixed */
    position: relative; /* Added for image positioning */
}

.gallery-list-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute; /* Position image absolutely within container */
    transition: transform 0.3s ease;
}

.gallery-list-card .card-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-list-card h2 {
    color: #448AFF;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.gallery-list-card p {
    color: #B0B0B0;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .gallery-list-card {
        flex-direction: column;
        align-items: flex-start; /* Align items to the left */
        min-height: 0;
    }

    .gallery-list-card .card-image {
        width: 180px; /* Maintain fixed width */
        height: 180px; /* Maintain fixed height */
    }
}


/* Reset the base container */
.project-container {
	max-width: 2000px; 
	margin: 0 auto;
    padding: 2rem 40px;
    display: flex;
    flex-direction: column;
	/* background-color: rgba(100, 100, 100, 1.0);   temporary grey */
}

/* Main content area */
.project-content {
    display: flex;
    gap: 2rem;
    width: 100%;
    min-height: 0; /* Prevent flex item overflow */
	/* background-color: rgba(0, 0, 255, 1.0);   temporary light blue */
}

/* Fixed width left side */
.left-side {
    flex: 0 0 800px;
    display: flex;
    flex-direction: column;
    min-width: 0; /* Prevent flex item overflow */
}

/* Responsive right side */
.project-text-side {
    flex: 1;
    min-width: 0; /* Critical for text wrap */
    max-width: calc(100% - 800px - 2rem); /* Account for left side and gap */
	/* background-color: rgba(255, 0, 0, 0.5);  temporary light red */
}

.project-header {
    margin: 0 0 2rem 0; 
}

.project-header h1 {
    color: #448AFF;
    margin-bottom: 1rem;
}

.project-header p {
    max-width: 800px;
}

.project-image-container {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background-color: #1a1a1a;  /* ADD this */
    border: 2px solid #448AFF;  /* ADD this */
    border-radius: 0.5rem;      /* ADD this */
}

.project-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-grid {
    display: grid;
    gap: 10px;
    width: 100%;
    margin-top: 1rem;
    grid-template-columns: repeat(auto-fit, 180px);  /* Changed from repeat(4, 180px) */
    justify-content: start;
	/* background-color: rgba(255, 255, 0, 0.5);  temporary light yellow */
}

.thumbnail {
    width: 180px;
    height: 180px;
    border: 1px solid #448AFF;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease; /* Add transition for smooth border change */
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Ensures images fill the square */
}

.thumbnail.active {
    border-width: 3px;
    border-color: #FF4081; /* Neon pink to match theme */
}

/* Details Section */
.details-section {
    border-top: 1px solid rgba(68, 138, 255, 0.3);
    width: 100%;
    background-color: #1a1a1a;
    border: 2px solid #448AFF;
    border-radius: 0.5rem;
    margin-top: 1rem; 
	/*  background-color: purple; Temporary */
}

/* Details Toggle */
.details-toggle {
    display: block; /* Makes the button behave like a block-level element */
    background: #007bff; /* Blue background */
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    text-align: left; /* Align text to the left */
    margin: 0 auto 8px auto; /* Center the button and add spacing below */
    width: 100%; /* Ensure the button spans the full width of the image */
    box-sizing: border-box; /* Include padding in the width */
}

.details-toggle:hover {
    background: #0056b3; /* Darker blue on hover */
}

.details-icon {
    transition: transform 0.2s ease;
}

.details-toggle.active .details-icon {
    transform: rotate(90deg);
}

/* Details Content */
.details-content {
    display: none;
    /* background-color: rgba(0, 0, 0, 0.2);  Semi-transparent black background */
	background-color: #242424; /* Same as header/footer */
    color: #000; /* Default text color */
    padding: 12px; /* Add padding for content */
    margin-top: 8px; /* Space between toggle and content */
    border-radius: 4px; /* Slightly rounded corners */
    width: 100%; /* Match the width of the parent container (image width) */
    box-sizing: border-box; /* Include padding in the width */
    overflow: hidden; /* Prevent overflow issues */
}

/* Details Content (Visible) */
.details-content.active {
    display: block;
}

/* Metadata Grid */

/* Metadata and Technical Text */
.metadata-item,
.prompt-code,
.details-content {
    font-family: "Roboto Mono", monospace;
}

.metadata-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
}

.metadata-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #B0B0B0;
}

.metadata-icon {
    color: #448AFF;
}

/* Prompt Section */

.prompt-section,
.notes-section {
    padding: 0 1.5rem 1.5rem;
    box-sizing: border-box;
}


.prompt-section h3 {
    color: #448AFF;
    margin-bottom: 0.5rem;
}


.prompt-code {
    background-color: rgba(0, 0, 0, 1);
    padding: 1rem;
    border-radius: 0.25rem;
    font-family: monospace;
    font-size: 0.875rem;
    color: #B0B0B0;
}

/* Notes Section */
.notes-section {
    padding: 0 1.5rem 1.5rem;
	/* background-color: rgba(0, 255, 255, 0.3);  cyan */
}

.notes-section h3 {
    color: #448AFF;
    margin-bottom: 0.5rem;
}


/* Notes Section */
.notes-section {
    padding: 0 1.5rem 1.5rem;
}

.notes-section h3 {
    color: #448AFF;
    margin-bottom: 0.5rem;
}

/* Related Content Section */
.related-section {
    padding: 0 1.5rem 1.5rem;
}

.related-section h3 {
    color: #448AFF;
    margin-bottom: 0.5rem;
}

.related-content {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 0.25rem;
}

.related-content h4 {
    color: #00FFC6;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.related-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.related-content ul:last-child {
    margin-bottom: 0;
}

.related-content li {
    margin-bottom: 0.25rem;
}

.related-content a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-content a:hover {
    color: #00FFC6;
}

/* Navigation Links - Visible by Default */
#nav-links {
    display: flex; /* Visible on larger screens */
	align-items: center; /* Match the logo's vertical alignment */
	height: 100%; /*takes full height of container */
    gap: 1rem;
}

/* Hide hamburger menu by default on larger screens */
.hamburger {
    display: none;
}




/* Details Section */
.details {
    padding: 1rem;
}

.details-toggle {
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    color: #448AFF;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: left; /* I changed this from center */
    gap: 0.5rem;
}

.details-toggle:hover {
    background-color: rgba(68, 138, 255, 0.1);
}

.details-icon {
    transition: transform 0.3s ease;
}

.details-toggle.active .details-icon {
    transform: rotate(90deg);
}

/* TEMPORARILY HIDDEN 
.details-content {
    display: none;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.2);
}
*/

.details-content.active {
    display: block;
}

.metadata-list {
    margin-bottom: 2rem;
}

.metadata-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #B0B0B0;
}

.metadata-icon {
    color: #448AFF;
}

/* About Page Specific Styles */

.about-page.project-container {
    padding: 2rem 40px;
    margin: 0; /* Remove auto margin */
    max-width: none; /* Allow full width */
}


.about-page .project-content {
    display: flex;
    gap: 2rem;
    justify-content: flex-start; /* Force left alignment */
    max-width: 2000px;
    margin: 0; /* Remove auto margin */
}

.about-page .project-text-side {
    flex: 0 0 800px;
    max-width: 800px;
}


.about-page .left-side {
    flex: 0 0 auto;
    min-width: 300px;
    max-width: 400px;
}

.about-page .profile-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    max-width: 400px; /* This will help control when wrapping occurs */
}


.about-page .project-image-container {
    width: 180px;
    height: 180px;
    background-color: #808080;
    margin: 0;
    flex: 0 0 auto;
}

.about-page .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    min-width: 180px;
}



/* First thumbnail reduction while beside image */
@media (max-width: 1250px) {
    /* Gallery grid styles */
    
	.index-grid {
        grid-template-columns: 1fr;
        padding: 0 20px 20px 20px;
    }
	
	.gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 20px 20px 20px;
    }
    
    /* Project container and content adjustments */
    .project-container {
        padding: 2rem 40px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
		margin-left: 0;  /* Add this to override the auto margin */
        max-width: none;  /* Add this to allow full width */
    }
    
    .project-content {
        flex-direction: column;
        gap: 0;
        max-width: 800px;
        width: 100%;
        align-items: flex-start;
    }
	

    
.left-side,
.project-text-side {
    align-self: flex-start;  /* Add this line */
    width: 100%;
    max-width: 800px;
	/* background-color: rgba(0, 255, 0, 0.1);        light green */
}

    .details-section {
        margin-bottom: 0;
    }

    .project-header {
        max-width: 800px;
        width: 100%;
        margin: 0 0 1rem 0;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(4, 180px);
        justify-content: flex-start;
        width: 100%;
    }
}

/* Drop to 3 columns when container gets too tight */
@media (max-width: 900px) {
	
	.index-card {
        min-height: 250px;
    }
	
    .project-container {
        padding: 2rem 40px;
    }
    
    .left-side {
        max-width: none;
        gap: 1rem;
    }
    
    .project-text-side {
        max-width: none;
        margin-top: 1rem;
    }

    .project-content {
        gap: 0;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(3, 180px);
    }
	
	 .gallery-card {
        min-height: 250px;
    }
}

/* Mobile navigation and layout adjustments */
@media (max-width: 767px) {
    /* Navigation menu styles - keep these from your original */
    #nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
        cursor: pointer;
        color: #00FFC6;
        font-size: 24px;
    }

    #nav-links.open {
        display: flex !important;
        flex-direction: column !important;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(26, 26, 26, 0.95);
        padding: 15px;
        z-index: 1000;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    }

    #nav-links.open ul {
        display: flex !important;
        flex-direction: column !important;
        width: 100%;
        gap: 10px;
        padding: 0;
    }

	    .index-card {
        flex-direction: column;
        min-height: 0;
    }
	
	    .index-card .image-container {
        width: 100%;
        height: 200px;
    }

    .index-card .card-description {
        width: 100%;
        padding: 20px;
    }
	
    /* Project container adjustments */
    .project-container {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        background-color: #121212; /* Match body background */
    }

    /* Left side content */
    .left-side {
        flex: 1;
        width: 100%;
        max-width: 100%;
        margin: 0;
        background-color: transparent; /* Remove background */
    }

    .project-image-container {
        width: 100%;
        height: auto;
        margin: 0;
        background-color: #1a1a1a; /* Match existing theme */
    }

    .project-image-container img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Details section */
    .details-section {
        margin: 0.5rem 0;
        width: 100%;
        background-color: #1a1a1a; /* Keep your original background */
    }

    /* Thumbnail grid */
    .thumbnail-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 5px;
        width: 100%;
        margin-top: 1rem;
        background-color: transparent; /* Remove background */
    }

    .thumbnail {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        background-color: #1a1a1a; /* Match theme */
    }

    /* Right side content */
    .project-text-side {
        width: 100%;
        max-width: 100%;
        margin-top: 1rem;
        padding: 0;
        background-color: transparent; /* Remove background */
    }

    /* Project header */
    .project-header {
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem 0;
        background-color: transparent; /* Remove background */
    }

    /* Project content wrapper */
    .project-content {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        background-color: transparent; /* Remove background */
    }
	
	/* Breadcrumb */
	    .breadcrumb {
        font-size: 0.9rem;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
	
	.gallery-card {
        flex-direction: column;
        min-height: 0;
    }

    .gallery-card .image-container {
        width: 100%;
        height: 200px;
        position: relative;
    }

    .gallery-card .card-description {
        width: 100%;
        padding: 20px;
    }
}
	@media (max-width: 600px) {
    .gallery-list-card {
        flex-direction: column;
        min-height: 0;
    }

    .gallery-list-card .card-image {
        flex: none;
        height: 180px;
        position: relative;
    }

    .gallery-list-card .card-image img {
        position: relative;
    }

    .gallery-list-card .card-content {
        padding: 1rem;
    }
		
	 .error-content {
         padding: 1rem;
     }

     .error-card {
         padding: 1.5rem;
     }
}
	

/* Extra small devices */
@media (max-width: 480px) {
    .index-card .image-container {
        height: 180px;
    }
    
    .index-card .card-description {
        padding: 15px;
    }
	
    .project-container {
        padding: 0.5rem;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Ensure containers are transparent at smallest breakpoint */
    .project-content,
    .left-side,
    .project-text-side,
    .thumbnail-grid {
        background-color: transparent;
    }
	
    /* Gallery card styles */
    .gallery-card .image-container {
        height: 180px;
    }
    
    .gallery-card .card-description {
        padding: 15px;
    }

    /* Gallery list card styles for smallest screens */
    .gallery-list-card .card-image {
        height: 160px;
    }

    .gallery-list-card .card-content {
        padding: 0.75rem;
    }

    .gallery-list-card h2 {
        font-size: 1.1rem;
    }

    .gallery-list-card p {
        font-size: 0.85rem;
    }
}