/* Base Styles */
:root {
    --dark-bg: #0F1621;
    --primary: #4ECDC4;
    --secondary: #FF6B6B;
    --accent: #FFE66D;
    --text: #F7F7F7;
    --dark-text: #333333;
    --terminal-bg: #1E2D3D;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Skip Button */
.skip-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    transition: all 0.3s ease;
}

.skip-button:hover {
    background-color: var(--primary);
    color: #000;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(15, 22, 33, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary);
    border-radius: 5px;
}

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

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.name {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease;
    text-shadow: 0 0 15px rgba(78, 205, 196, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Terminal Styling */
.terminal {
    background-color: var(--terminal-bg);
    width: 600px;
    max-width: 90%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(78, 205, 196, 0.2);
    animation: slideUp 1s ease 0.5s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terminal-header {
    background-color: #2C3E50;
    padding: 10px;
    display: flex;
    align-items: center;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.red {
    background-color: #FF5F56;
}

.yellow {
    background-color: #FFBD2E;
}

.green {
    background-color: #27C93F;
}

.terminal-title {
    margin-left: 10px;
    font-size: 0.9rem;
    color: #aaa;
    font-family: 'Roboto Mono', monospace;
}

.terminal-body {
    padding: 20px;
    font-family: 'Roboto Mono', monospace;
    line-height: 1.8;
}

.prompt {
    color: var(--primary);
}

.command {
    color: var(--text);
}

.response {
    color: var(--accent);
}

.cursor {
    font-weight: bold;
    animation: blink 1s infinite;
}

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

/* Basic responsive adjustments */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-links {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 0.5rem;
    }
    
    .terminal {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 2.5rem;
    }
    
    .terminal-body {
        padding: 10px;
        font-size: 0.9rem;
    }
}
/* Add these styles to your styles.css file */

/* Particles background container */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    background-color: var(--dark-bg);
}

/* Ensure all content sits on top of particles */
nav, #hero, section {
    position: relative;
    z-index: 1;
}

/* Update background color for better particle visibility */
body {
    background-color: #070b11; /* Darker background for better contrast */
}

/* Enhance terminal glow for the new background */
.terminal {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(78, 205, 196, 0.3);
    opacity: 1 !important; /* Force terminal to be visible */
    transform: translateY(0) !important; /* Ensure terminal is positioned correctly */
}

/* Make text more visible against particles */
.name {
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.6), 0 0 40px rgba(0, 0, 0, 0.8);
    color: #fff;
}

/* Enhance nav for better visibility */
nav {
    background-color: rgba(9, 15, 26, 0.8);
    backdrop-filter: blur(8px);
}
/* Add these styles to your styles.css file to make elements pop more */

/* Enhanced name with stronger glow */
.name {
    text-shadow: 0 0 25px rgba(78, 205, 196, 0.8), 0 0 45px rgba(78, 205, 196, 0.4);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    animation: pulse-subtle 3s infinite ease-in-out;
}

@keyframes pulse-subtle {
    0%, 100% {
        text-shadow: 0 0 25px rgba(78, 205, 196, 0.8), 0 0 45px rgba(78, 205, 196, 0.4);
    }
    50% {
        text-shadow: 0 0 30px rgba(78, 205, 196, 0.9), 0 0 60px rgba(78, 205, 196, 0.6);
    }
}

/* Enhanced terminal with more pronounced glow */
.terminal {
    background-color: rgba(30, 45, 61, 0.95);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6), 0 0 30px rgba(78, 205, 196, 0.5);
    border: 1px solid rgba(78, 205, 196, 0.3);
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Make terminal text brighter */
.terminal-body {
    color: #f7f7f7;
}

.prompt {
    color: #5EEEE5; /* Brighter cyan */
    font-weight: bold;
}

.response {
    color: #FFE66D; /* Brighter yellow */
}

/* Navigation enhancements */
.nav-container {
    max-width: 1400px; /* Wider navigation */
}

.logo {
    border-color: #5EEEE5;
    color: #5EEEE5;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.3);
}

.logo:hover {
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.6);
}

.nav-links a {
    color: #f7f7f7;
    font-weight: 500;
}

.nav-links a:hover {
    color: #5EEEE5;
}

/* Overall page enhancements */
body {
    background-color: #050a10; /* Darker background for contrast */
}

/* Enhanced scrollbar for a tech feel */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 22, 33, 0.8);
}

::-webkit-scrollbar-thumb {
    background: rgba(78, 205, 196, 0.7);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(78, 205, 196, 0.9);
}
/* Updated quote styling for a more fancy, centered appearance */
.quote-container {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 1rem 0;
  }
  
  .minimalist-quote {
    width: 100%;
    max-width: 320px; /* Match your image width */
    text-align: center;
    padding: 1.5rem 1rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-left: none;
  }
  
  /* Add fancy backdrop */
  .minimalist-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 45, 61, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(78, 205, 196, 0.15);
    z-index: -1;
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.1);
  }
  
  .minimalist-quote q {
    font-size: 1.2rem;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
    letter-spacing: 0.05rem;
    font-weight: 300;
    display: block;
    position: relative;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.4);
  }
  
  .minimalist-quote q span {
    will-change: opacity, filter;
    opacity: 0;
    filter: blur(0);
  }
  
  .minimalist-quote q:before,
  .minimalist-quote q:after {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.9;
    text-shadow: 0 0 15px rgba(78, 205, 196, 0.7);
    line-height: 0.1;
    position: absolute;
  }
  
  .minimalist-quote q:before {
    content: '"';
    left: -20px;
    top: -10px;
  }
  
  .minimalist-quote q:after {
    content: '"';
    right: -20px;
    bottom: -30px;
  }
  
  .minimalist-quote cite {
    display: block;
    text-align: right;
    margin-top: 1.2rem;
    font-size: 1rem;
    color: var(--primary);
    opacity: 0;
    animation: fadeIn 1.5s forwards;
    animation-delay: 3.5s;
    font-style: normal;
    letter-spacing: 1px;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.8; }
  }
  
  /* Center quote properly by fixing the layout */
  .about-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .about-image-frame {
    margin-bottom: 1.5rem;
  }