/* =====================================================
   Core Variables
   ===================================================== */
:root {
    --background-color: #0a0a1a;
    --surface-color: #111133;
    --surface-color-light: #1e1e4b;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --primary-color: #6366f1;
    --primary-color-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --success-color: #10b981;
    --error-color: #ef4444;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.5);
    --max-width: 1200px;
    --header-height: 70px;
    --border-radius: 10px;
    --grid-gap: 2rem;
    --section-padding: 5rem 2rem;
    --transition-speed: 0.3s;
    --grid-pattern: radial-gradient(
        rgba(255, 255, 255, 0.1) 1px,
        transparent 1px
    );
}

/* =====================================================
   Base Styles
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    background-size: 40px 40px;
    background-image: var(--grid-pattern);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15), transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body.nav-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    /* Add animated gradient for headings */
    background: linear-gradient(
        to right, 
        var(--primary-color), 
        var(--secondary-color),
        var(--accent-color),
        var(--secondary-color),
        var(--primary-color)
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 8s linear infinite;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button, .button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-align: center;
    /* Gradient background for buttons */
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    background-size: 200% auto;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

button:hover, .button:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.4);
}

.button.primary {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    background-size: 200% auto;
}

.button.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding);
}

/* Animated gradient keyframes */
@keyframes shine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* =====================================================
   Intro Screen
   ===================================================== */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease;
}

.intro-screen.fade-out {
    opacity: 0;
}

.intro-screen .logo {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.intro-screen .logo .logo-dot {
    color: var(--primary-color);
}

.intro-screen .logo .logo-ai {
    background: linear-gradient(
        to right, 
        var(--primary-color), 
        var(--secondary-color)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loading-sequence {
    width: 80%;
    max-width: 600px;
}

.terminal {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    color: var(--success-color);
    height: 300px;
    overflow: hidden;
    position: relative;
}

.terminal-content {
    height: 100%;
    overflow: hidden;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 18px;
    background-color: var(--success-color);
    animation: blink 1s infinite;
    vertical-align: middle;
}

.construction-notice {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 3s;
    opacity: 0;
}

.construction-notice p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* =====================================================
   Header & Navigation
   ===================================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-nav.header-hidden {
    transform: translateY(-100%);
}

.main-nav.header-scrolled {
    background-color: rgba(10, 10, 26, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

header.header-scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    background-color: rgba(10, 10, 26, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

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

.logo .logo-dot {
    color: var(--primary-color);
}

.logo .logo-ai {
    background: linear-gradient(
        to right, 
        var(--primary-color), 
        var(--secondary-color)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-nav-toggle span:nth-child(1) {
    top: 0px;
}

.mobile-nav-toggle span:nth-child(2) {
    top: 10px;
}

.mobile-nav-toggle span:nth-child(3) {
    top: 20px;
}

.mobile-nav-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-nav-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-section .container {
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-section .lead {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* =====================================================
   About Section
   ===================================================== */
.about-section {
    background-color: rgba(10, 10, 26, 0.7);
    padding: 6rem 2rem;
}

.vision-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--grid-gap);
    margin-top: 3rem;
}

.vision-card {
    background: rgba(30, 30, 75, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.vision-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vision-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.vision-icon i {
    font-size: 1.5rem;
    color: white;
}

.vision-card h3 {
    margin-bottom: 1rem;
}

.vision-card p {
    color: var(--text-secondary);
}

/* =====================================================
   Projects Section
   ===================================================== */
.projects-section {
    padding: 6rem 2rem;
}

.project-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.project-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.project-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: var(--primary-color);
}

.project-buttons {
    display: flex;
    gap: 1rem;
}

.project-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(30, 30, 75, 0.3);
    border: 1px solid var(--border-color);
    padding: 1rem;
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* =====================================================
   Contribute Section
   ===================================================== */
.contribute-section {
    background-color: rgba(10, 10, 26, 0.7);
    padding: 6rem 2rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.contribute-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--grid-gap);
}

.contribute-option {
    background: rgba(30, 30, 75, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contribute-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contribute-option i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contribute-option h3 {
    margin-bottom: 1rem;
}

.contribute-option p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.learn-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease, gap 0.3s ease;
}

.learn-more:hover {
    color: var(--secondary-color);
    gap: 0.75rem;
}

.learn-more::after {
    content: '→';
}

/* =====================================================
   Contact Section
   ===================================================== */
.contact-section {
    padding: 6rem 2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    color: var(--text-secondary);
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-method i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-form {
    background: rgba(30, 30, 75, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

/* =====================================================
   Footer
   ===================================================== */
footer {
    background-color: rgba(5, 5, 15, 0.7);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section p {
    color: var(--text-secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-tertiary);
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 1200px) {
    .project-highlight {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-method {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .button {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav-toggle {
        display: none;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: rgba(10, 10, 26, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        z-index: 1000;
        transition: right 0.3s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .vision-card,
    .contribute-option {
        transform: translateY(0);
        opacity: 1;
    }
    
    .project-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 3rem 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .intro-screen .logo {
        font-size: 3rem;
    }
    
    .terminal {
        padding: 1rem;
        height: 250px;
    }
}

/* =====================================================
   Animation Classes
   ===================================================== */
.revealed {
    animation: reveal 0.8s ease forwards;
}

@keyframes reveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Particle animation for added visual flair */
.particle {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    animation: float 15s linear infinite;
    opacity: 0;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-1000px) translateX(200px) rotate(360deg);
        opacity: 0;
    }
}

/* Featured Project Section */
.featured-project {
    padding: 6rem 2rem;
    background-color: rgba(10, 10, 26, 0.7);
}

.featured-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(30, 30, 75, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.featured-info {
    text-align: center;
}

.status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.status.active {
    background: linear-gradient(90deg, var(--primary-color-dark), var(--primary-color));
    color: white;
}

.featured-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-list {
    text-align: left;
    margin: 0 auto 2rem;
    max-width: 500px;
}

.feature-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.featured-image {
    display: none;
}

/* Diagram Placeholder */
.diagram-placeholder {
    background-color: rgba(30, 30, 75, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.diagram-placeholder h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.diagram-placeholder p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.system-note {
    background-color: rgba(99, 102, 241, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-style: italic;
}

/* Project Card */
.project-card {
    background: rgba(30, 30, 75, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.project-content {
    max-width: 800px;
    margin: 0 auto;
}

.project-description {
    margin: 1.5rem 0;
}

.key-features {
    margin: 1.5rem 0;
}

.key-features ul {
    list-style: none;
    padding-left: 1rem;
}

.key-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.key-features li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.project-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Placeholder Actions */
.placeholder-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 2rem;
}