/*
WHAT ARE U LOOKING AT BUDDY
goodboy u open the css
*/

:root {
    /* Light Theme Colors */
    --primary-color: #e63946;
    --primary-color-light: #f8a5ad;
    --secondary-color: #1d3557;
    --background-color: #f1faee;
    --text-color: #1d3557;
    --card-bg: #ffffff;
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    --border-color: #e0e0e0;
    --highlight-color: #e63946;
}

[data-theme="dark"] {
    /* Dark Theme Colors */
    --primary-color: #4361ee;
    --primary-color-light: #6c8cff;
    --secondary-color: #e0e0e0;
    --background-color: #121212;
    --text-color: #e0e0e0;
    --card-bg: #1e1e1e;
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    --border-color: #2a2a2a;
    --highlight-color: #4361ee;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    transition: all 0.3s ease;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Theme Switcher */
.theme-switch-wrapper {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}

.slider .fa-sun {
    color: #f39c12;
}

.slider .fa-moon {
    color: #2c3e50;
}

.slider:before {
    background-color: white;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 26px;
    z-index: 1;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* TRAKTEER BUTTON CSS */
.support-me-button {
  position: fixed;
  left: 20px;
  bottom: 8%;
  transform: translateY(50%);
  z-index: 1000;
}

.support-me-button button {
  display: flex;
  align-items: center;
  background-color: #d32f2f;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 15px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.support-me-button button img {
  margin-right: 8px;
}

/* END OF THE TRAKTEER BUTTON CSS */

/** TOP OF THE SLIDER **/

.projects-section {
    padding: 60px 0;
    background-color: var(--bg-color);
    overflow: hidden;
}

.project-slider-container {
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.project-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.project-slider {
    display: flex;
    animation: slideProjects 30s linear infinite;
    width: max-content;
    gap: 5px;
}

.project-item {
    padding: 0 5px;
    transition: transform 0.3s ease;
}

.project-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 15px;
    height: 250px;
    width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    margin: 0 2px;
}

.project-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    z-index: 10;
}

.project-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.project-card:hover .project-icon {
    transform: scale(1.2);
}

.project-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.project-link {
    display: inline-block;
    padding: 10px 18px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.project-link:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

@keyframes slideProjects {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.project-slider-container:hover .project-slider {
    animation-play-state: paused;
}

.clone {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
}

.project-description {
    color: #8a8a8a;
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.4;
    max-width: 90%;
}

@media (max-width: 768px) {
    .projects-section {
        padding: 50px 0;
    }

    .project-card {
        width: 200px;
        height: 240px;
        padding: 15px;
    }

    .project-icon {
        font-size: 2.3rem;
    }

    .project-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .project-link {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .project-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
        max-width: 95%;
    }
}

/** END OF THE SLIDER **/

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background-color: var(--card-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
}

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

/* Code Languages Card Styling */
.language-skills {
    margin-top: 1rem;
}

.language-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.language-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 10px;
    width: 30px;
    text-align: center;
}

.language-name {
    font-weight: 600;
    width: calc(100% - 110px);
}

.language-item .skill-level {
    width: 100%;
    margin: 0.5rem 0;
}

.language-item .percentage {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 480px) {
    .language-name {
        width: calc(100% - 50px);
    }

    .language-item {
        margin-bottom: 1.5rem;
    }
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-links a i {
    margin-right: 5px;
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
    position: relative;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.1), rgba(var(--secondary-color-rgb), 0.1));
}

.profile-container {
    margin-bottom: 2rem;
}

.profile-wrapper {
    width: 220px;
    height: 220px;
    margin: 0 auto 2rem;
    position: relative;
}

.profile-fold {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transform: perspective(800px) rotateY(0deg);
    transition: transform 1s ease;
}

.profile-fold::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, transparent 50%, var(--background-color) 50%);
    z-index: 2;
    transform: perspective(800px) rotateY(0deg);
    transition: all 0.5s ease;
}

.profile-fold:hover {
    transform: perspective(800px) rotateY(15deg);
}

.profile-fold:hover::before {
    transform: perspective(800px) rotateY(45deg);
}

#profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    opacity: 0.9;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: var(--primary-color-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Audio Player */
.audio-player {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

#play-pause-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#play-pause-btn:hover {
    transform: scale(1.1);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Skills Section */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

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

.skill-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.skill-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.skill-level {
    height: 10px;
    background-color: var(--border-color);
    border-radius: 5px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 5px;
    width: 0;
    transition: width 1.5s ease;
}

.skill-card p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Services Section */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(var(--primary-color-rgb), 0.05));
    z-index: 0;
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary-color-light);
}

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

/* Quote Section */
.quote-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

blockquote {
    font-size: 1.8rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

blockquote i {
    font-style: italic;
}

/* Contact Section */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp {
    background-color: #25D366;
}

.telegram {
    background-color: #0088cc;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.discord {
    background-color: #7289DA;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--card-bg);
    color: var(--text-color);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}



/* Footer */
footer {
    background-color: var(--card-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

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

.visit-counter {
    background-color: var(--background-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--card-shadow);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    opacity: 0.8;
}

/* AI CSS */

.chat-trigger {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 100;
  transition: var(--transition);
}

.chat-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.chat-trigger i {
  color: white;
  font-size: 24px;
}

.chat-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
  opacity: 0;
}

.chat-container {
  width: 90%;
  max-width: 400px;
  height: 80%;
  max-height: 600px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transform: translateY(50px);
  transition: var(--transition);
}

.chat-overlay.active {
  display: flex;
  opacity: 1;
}

.chat-overlay.active .chat-container {
  transform: translateY(0);
}

.chat-header {
  padding: 16px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.close-chat {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.close-chat:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #f9f9f9;
}

.message {
  max-width: 80%;
  padding: 0;
  margin-bottom: 8px;
  word-wrap: break-word;
}

.message-content {
  padding: 12px 16px;
  border-radius: 18px;
}

.user-message {
  align-self: flex-end;
}

.user-message .message-content {
  background-color: var(--primary-color);
  color: white;
  border-bottom-right-radius: 4px;
}

.ai-message {
  align-self: flex-start;
}

.ai-message .message-content {
  background-color: #eee;
  color: var(--dark-color);
  border-bottom-left-radius: 4px;
}

.message-time {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
  text-align: right;
  padding: 0 8px;
}

.chat-input-container {
  padding: 16px;
  border-top: 1px solid #eee;
}

.chat-input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f5f5f5;
  border-radius: 24px;
  padding: 4px 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chat-input {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
}

.input-action-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #777;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.input-action-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--secondary-color);
}

.send-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  width: 88px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.send-button:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.typing-indicator {
  display: flex;
  gap: 4px;
  margin-left: 16px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background-color: #aaa;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.7);
    opacity: 0.4;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

.hidden {
  display: none !important;
}

.image-preview-container {
  margin: 0 16px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background-color: #eee;
  font-size: 14px;
  color: #555;
}

.remove-image {
  background: none;
  border: none;
  color: #777;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.remove-image:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
}

.image-preview {
  max-width: 100%;
  max-height: 200px;
  display: block;
  margin: 0 auto;
  padding: 8px;
}

.message-with-image .message-content {
  padding-bottom: 8px;
}

.message-image {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 8px;
  display: block;
}

.user-message .message-image {
  border-bottom-right-radius: 4px;
}

.ai-message .message-image {
  border-bottom-left-radius: 4px;
}

.code-block {
  margin: 12px 0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #2d2d2d;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background-color: #1e1e1e;
  color: #e0e0e0;
  font-family: monospace;
  font-size: 14px;
}

.code-language {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: #888;
}

.copy-button {
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--transition);
}

.copy-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.code-block pre {
  margin: 0;
  padding: 12px;
  overflow-x: auto;
}

.code-block code {
  font-family: "Consolas", "Monaco", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.5;
  color: #e0e0e0;
}

.language-javascript .keyword {
  color: #cc99cd;
}
.language-javascript .string {
  color: #7ec699;
}
.language-javascript .number {
  color: #f08d49;
}
.language-javascript .comment {
  color: #999;
  font-style: italic;
}
.language-javascript .function {
  color: #6699cc;
}

.language-html .tag {
  color: #e2777a;
}
.language-html .attr-name {
  color: #6699cc;
}
.language-html .attr-value {
  color: #7ec699;
}

.language-css .selector {
  color: #e2777a;
}
.language-css .property {
  color: #6699cc;
}
.language-css .value {
  color: #7ec699;
}

.scrollbar-styling::-webkit-scrollbar {
  width: 6px;
}

.scrollbar-styling::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.scrollbar-styling::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.scrollbar-styling::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

.chat-messages {
  scrollbar-width: thin;
  scrollbar-color: #ccc #f1f1f1;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

/* END OF AI CSS */

/* Furry Character */
.furry-character {
    position: fixed;
    bottom: 88px;
    right: 23px;
    z-index: 50;
    width: 100px;
    height: 100px;
    transition: all 0.3s ease;
}

.furry-character img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.furry-character:hover {
    transform: translateY(-10px) rotate(5deg);
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    blockquote {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 101;
    }

    .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        background-color: var(--card-bg);
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        clip-path: circle(50px at 100% -10%);
        -webkit-clip-path: circle(50px at 100% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
        z-index: 100;
    }

    .nav-links.open {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links li a {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .profile-wrapper {
        width: 180px;
        height: 180px;
    }

    .skills-container,
    .services-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    blockquote {
        font-size: 1.2rem;
    }

    .profile-wrapper {
        width: 150px;
        height: 150px;
    }

    .furry-character {
        width: 80px;
        height: 80px;
    }
}

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

section {
    animation: fadeIn 1s ease-out;
}

/* CSS Variables for RGB values for transparency */
:root {
    --primary-color-rgb: 230, 57, 70;
    --secondary-color-rgb: 29, 53, 87;
}

[data-theme="dark"] {
    --primary-color-rgb: 67, 97, 238;
    --secondary-color-rgb: 224, 224, 224;
}