:root {
    --primary-color: #2d3436;
    --secondary-color: #00cec9;
    --accent-color: #fd79a8;
    --background-color: #0a0a0a;
    --text-color: #dfe6e9;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-effect: rgba(255, 255, 255, 0.1);
}

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

body {
    background: var(--background-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

header {
    background: rgba(45, 52, 54, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem;
    border-bottom: 1px solid var(--glass-effect);
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav {
    margin-top: 1rem;
}

.tab-button {
    background: var(--glass-effect);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    margin: 0 0.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.tab-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--secondary-color);
}

.tab-button.active {
    background: var(--accent-color);
    box-shadow: 0 0 25px var(--accent-color);
    color: var(--text-color);
}

.tab-button:hover {
    color: #000;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem 2rem;
    flex: 1;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

.tab-content {
    display: none;
}

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

.tab-content a {
    color: var(--secondary-color);
}

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

.project-card {
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-effect);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 206, 201, 0.05),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card:hover::before {
    opacity: 1;
    animation: flashOnce 1s ease-out forwards;
}

@keyframes flashOnce {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.blog-post {
    background: var(--card-bg);
    border: 1px solid var(--glass-effect);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.blog-post time {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

footer {
    margin-top: auto;
    background: rgba(45, 52, 54, 0.95);
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 2rem;
    color: white;
    width: 100%;
}

footer a {
    color: white;
}

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

.tech-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    margin: 0.4rem 0.4rem 0.4rem 0;
    background: transparent;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 0 10px var(--secondary-color);
    position: relative;
}

.tech-tag {
    animation: none;
    border: none;
    box-shadow: none;
}

.tech-tag:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 15px var(--secondary-color);
}

.technologies {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
}

.project-link:hover {
    transform: translateX(5px);
}

.blog:a {
    color: #00cec9;
}

.read-more {
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    font-weight: bold;
    padding: 0.5rem 0;
    transition: transform 0.2s;
}

.read-more:hover {
    transform: translateX(5px);
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, transform 0.2s;
    transform: translateY(100px);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

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

h2 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
    /* text-shadow: 0 0 10px var(--secondary-color); */
} 



.blog-content {
    margin: 1.5rem 0;
}

.blog-content h1 {
    font-size: 2em;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.blog-content h2 {
    font-size: 1.5em;
    margin-bottom: 0.8rem;
}

.blog-content h3 {
    font-size: 1.2em;
    margin-bottom: 0.6rem;
}

.blog-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-content a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.blog-content a:hover {
    border-color: var(--secondary-color);
}

.blog-content code {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9em;
}

.blog-content pre {
    position: relative;
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    overflow: auto;
    margin: 1.5rem 0;
    border: 1px solid var(--glass-effect);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    resize: both;
    min-height: 100px;
    min-width: 200px;
    max-height: 800px;
    max-width: 100%;
}

.blog-content pre::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, 
        transparent 0%,
        transparent 50%,
        var(--secondary-color) 50%,
        var(--secondary-color) 100%
    );
    cursor: se-resize;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.blog-content pre:hover::after {
    opacity: 1;
}

.blog-content pre[class*="language-"] {
    margin: 1.5rem 0;
    background: #1a1a1a;
}

.blog-content :not(pre) > code[class*="language-"],
.blog-content pre[class*="language-"] {
    background: #1a1a1a;
}

.blog-content .token.comment,
.blog-content .token.prolog,
.blog-content .token.doctype,
.blog-content .token.cdata {
    color: #666;
}

.blog-content .token.punctuation {
    color: #999;
}

.blog-content .token.property,
.blog-content .token.tag,
.blog-content .token.boolean,
.blog-content .token.number,
.blog-content .token.constant,
.blog-content .token.symbol,
.blog-content .token.deleted {
    color: var(--accent-color);
}

.blog-content .token.selector,
.blog-content .token.attr-name,
.blog-content .token.string,
.blog-content .token.char,
.blog-content .token.builtin,
.blog-content .token.inserted {
    color: var(--secondary-color);
}

.blog-content ul, .blog-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: var(--secondary-color);
    font-style: italic;
}

.error-message {
    color: var(--accent-color);
    padding: 1rem;
    border-left: 3px solid var(--accent-color);
    margin: 1rem 0;
}

/* Add styles for full-page post view */
.post-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.full-post {
    background: var(--background-color);
    border: 1px solid var(--glass-effect);
    border-radius: 8px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.post-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-right: 2rem;
    position: relative;
}

.post-header h2 {
    grid-column: 1;
    margin-bottom: 0;
}

.post-header time {
    grid-column: 2;
    color: var(--secondary-color);
    font-size: 0.9rem;
    white-space: nowrap;
}

.open-full-page {
    grid-column: 3;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem;
    transition: transform 0.2s;
    white-space: nowrap;
}

.close-post {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: none;
    background: var(--accent-color);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    z-index: 1;
}

.close-post:hover {
    transform: scale(1.1);
}

.post-content {
    line-height: 1.8;
}

/* Custom scrollbar for the full post */
.full-post::-webkit-scrollbar {
    width: 8px;
}

.full-post::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.full-post::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

.full-post::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Add styles for full page post view */
.full-page-post {
    max-width: 900px;
    margin: 6rem auto 2rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--glass-effect);
}

.back-button {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: var(--secondary-color);
    color: var(--background-color);
}

.open-full-page {
    position: absolute;
    top: 0;
    right: 3rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem;
    transition: transform 0.2s;
}

.open-full-page:hover {
    transform: translateY(-2px);
} 

.nav-link {
    background: var(--glass-effect);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    margin: 0 0.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--secondary-color);
}

.nav-link.active {
    background: var(--accent-color);
    box-shadow: 0 0 25px var(--accent-color);
}

.content-section {
    animation: fadeIn 0.5s;
    position: relative;
    overflow: visible;
    padding: 1rem;
    border: 1rem;
    padding-top: 6rem;
} 

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

#bg-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid #ddd;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
}

#bg-toggle:hover {
    transform: scale(1.1);
} 

/* Add these new styles for blog reading mode */
.blog-reading-mode {
    max-width: 720px;
    margin: 0 auto;
    margin-top: 1rem;
    padding: 2rem;
    background: var(--background-color);
    color: #e0e0e0;
}

.blog-reading-mode .back-link {
    color: var(--secondary-color);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.blog-reading-mode .back-link:hover {
    color: #999;
}

.blog-reading-mode h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.blog-reading-mode time {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2rem;
}

.blog-reading-mode .blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.blog-reading-mode .blog-content h2 {
    color: #fff;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    text-shadow: none;
}

.blog-reading-mode .blog-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.blog-reading-mode .blog-content p {
    margin-bottom: 1.5rem;
}

.blog-reading-mode .blog-content a {
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-reading-mode .blog-content a:hover {
    color: #999;
}

.blog-reading-mode .blog-content code {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 0.9em;
}

.blog-reading-mode .blog-content pre {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 4px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-reading-mode .blog-content pre code {
    background: none;
    padding: 0;
}

.blog-reading-mode .blog-content ul,
.blog-reading-mode .blog-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-reading-mode .blog-content li {
    margin-bottom: 0.5rem;
}

/* Adjust the header for blog reading mode */
.blog-reading-mode ~ header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Remove glowing effects and fancy transitions in blog reading mode */
.blog-reading-mode * {
    text-shadow: none !important;
    box-shadow: none !important;
    transition: color 0.3s ease !important;
} 

.about-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.profile-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
    align-items: start;
    float: left;
}

.profile-image-wrapper {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.profile-image {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.profile-content {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto;
}

.profile-content h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.interests-section {
    margin-top: 2rem;
}

.interests-section h3 {
    margin-bottom: 1rem;
}

.interests-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.interests-section li:before {
    content: "->";
    position: absolute;
    left: 0;
    color: #666;
}

@media (max-width: 768px) {
    .profile-container {
        grid-template-columns: 1fr;
    }
    
    .profile-content {
        margin-top: 2rem;
    }
} 

.blog-post-preview {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.blog-post-preview:last-child {
    border-bottom: none;
}

.blog-post-preview h3 {
    margin-bottom: 0.5rem;
}

.blog-post-preview h3 a {
    text-decoration: none;
    color: inherit;
}

.blog-post-preview h3 a:hover {
    color: #666;
}

.blog-post-preview time {
    color: #666;
    font-size: 0.9rem;
}

.fade-scroll {
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.profile-image-wrapper {
    position: relative;
}

.project-image {
    width: 60%;
    border-radius: 8px;
    margin-top: 1rem;
    float: right;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

figure {
    border: thin var(--glass-effect) solid;
    padding: 10px;
    margin: 1rem 0;
    background: var(--card-bg);
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
}
  
figure img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background: #1a1a1a;
    padding: 1rem;
}
  
figcaption {
    font-style: italic;
    font-size: 0.9rem;
    padding: 0.5rem 0 0;
    text-align: center;
    color: var(--text-color);
    opacity: 0.8;
}

/* Add styles for the side-by-side figures */
.figure-container {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.figure-container figure {
    flex: 1;
    margin: 0;
    min-width: 0;
}

.figure-container.three-columns {
    flex-wrap: nowrap;
}

.figure-container.three-columns figure {
    width: calc(33.333% - 1rem);
}

@media (max-width: 768px) {
    .figure-container,
    .figure-container.three-columns {
        flex-direction: column;
    }
    
    .figure-container figure,
    .figure-container.three-columns figure {
        width: 100%;
        max-width: 100%;
    }
}

/* Table container styles */
.blog-content .table-container {
    position: relative;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 0 2rem;
    overflow-x: auto;
}

/* Table styles */
.blog-content table {
    width: 75%;
    min-width: 800px;
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-effect);
}

/* Cell styles */
.blog-content th,
.blog-content td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--glass-effect);
}

.blog-content th {
    background: rgba(0, 206, 201, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
    white-space: nowrap;
}

.blog-content td {
    background: rgba(0, 0, 0, 0.2);
}

/* First column styles */
.blog-content td:first-child {
    width: 250px;
    min-width: 250px;
    background: rgba(0, 0, 0, 0.3);
}

/* Other columns */
.blog-content td:not(:first-child) {
    min-width: 175px;
    padding: 1rem 1.5rem;
}

/* Row hover effect */
.blog-content tr:hover td {
    background: rgba(0, 206, 201, 0.05);
}

/* Table corner radius */
.blog-content tr:first-child th:first-child {
    border-top-left-radius: 8px;
}

.blog-content tr:first-child th:last-child {
    border-top-right-radius: 8px;
}

.blog-content tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.blog-content tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

/* Scrollbar styles */
.blog-content .table-container::-webkit-scrollbar {
    height: 8px;
    background: var(--background-color);
}

.blog-content .table-container::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

.blog-content .table-container::-webkit-scrollbar-track {
    background: var(--card-bg);
    border-radius: 4px;
}

/* Add styles for the file path display */
.code-block-header {
    background: #141414;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--glass-effect);
    color: var(--secondary-color);
    font-family: 'Fira Code', monospace;
    font-size: 0.9em;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Wrapper for code blocks with headers */
.code-block-wrapper {
    margin: 1.5rem 0;
    border-radius: 8px;
    border: 1px solid var(--glass-effect);
    background: #1a1a1a;
}

.code-block-wrapper pre {
    margin: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: none;
}

/* Add copy button styles */
.copy-code-button {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: var(--secondary-color);
    border: none;
    border-radius: 4px;
    color: var(--background-color);
    font-size: 0.8rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
}

.code-block-wrapper {
    position: relative;
}

.code-block-wrapper:hover .copy-code-button {
    opacity: 1;
}

/* Update code block wrapper styles */
.code-block-wrapper pre {
    margin: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: none;
    padding-top: 2.5rem; /* Make room for copy button */
}

/* Line numbers styles */
.line-numbers .line-numbers-rows {
    border-right-color: var(--glass-effect);
}

.line-numbers-rows > span:before {
    color: #666;
}

.consulting-offerings {
    margin: 1em 0;
    padding-left: 1.5em;
}

.consulting-offerings li {
    margin: 0.5em 0;
    line-height: 1.6;
}

.expertise-section, .cta-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5em;
    border-radius: 8px;
    margin: 1.5em 0;
}

.contact-options {
    display: flex;
    gap: 1em;
    margin-top: 1em;
}

.contact-button {
    display: inline-block;
    padding: 0.8em 1.5em;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.contact-button:hover {
    background: #0056b3;
}

.contact-prompt {
    margin: 1em 0;
    font-weight: 600;
}

.expertise-section ul, .cta-section ul {
    list-style-type: none;
    padding-left: 0;
}

.expertise-section li, .cta-section li {
    margin: 0.5em 0;
    padding-left: 1.5em;
    position: relative;
}

.expertise-section li:before, .cta-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-section {
    text-align: center;
}

.social-links {
    margin-top: 0.5rem;
}

.social-links a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0 0.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-contact {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact:hover {
    color: var(--accent-color);
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-around;
    }
}