/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.canvas{
    background-color: wheat;
}
#message {
  text-align: center;
  color: #f44336;
  font-size: 1.5rem;
  margin-top: 15px;
  font-weight: bold;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#restart-button {
  display: block;
  margin: 20px auto;
  background-color: #222;
  color: #ccc;
  border: 1px solid #444;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s ease;
}

#restart-button:hover {
  background-color: #333;
  color: #fff;
  border-color: #666;
}
/* Navbar Styles */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(33, 37, 41, 0.95);
}

.iframeElement {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.responsive-gif {
    width:90%;
    max-width: 600px;
    height:auto;
    border-radius: 8px;    
}
/* Project Cards */
.project-card {
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.tech-stack {
    margin-top: 1rem;
}

.tech-stack .badge {
    margin-right: 0.5rem;
    /* color: black; */
}
.badgeBackground{
    background-color: #495057;
}
/* Skills Progress Bars */
.progress {
    height: 10px;
    background-color: var(--bs-dark);
}

.progress-bar {
    background-color: var(--bs-info);
}

.skill-item {
    margin-bottom: 1.5rem;
}
.quote{
    background-color: #1e1e2f;
    color: #d1d5db;
    padding: 1.5rem;
    border-left: 4px solid #10b981;
    margin-top: 10px;
    max-width: 600px;
    font-style: italic;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
/* Social Links */
.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.dropdown-menu.p-4 {
    background-color: rgba(30, 30, 30, 0.95); /* soft dark background */
    border: 1px solid #555; /* sleek outline */
    border-radius: 12px; /* smooth rounded corners */
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.5); /* nice soft shadow */
    backdrop-filter: blur(6px); /* slight glass effect */
}

.tooltip .tooltip-inner {
    max-width: 300px !important;   /* Wider tooltip box */
    font-size: 1rem !important;    /* Larger text */
    padding: 10px 14px !important; /* More space around text */
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
}
