/* 
 * Custom CSS for Farrel Tito's Personal Portfolio
 * Yoimiya Theme
 * Inspired by Genshin Impact's color palette of the character Yoimiya.
 * This theme features vibrant colors and a playful design.
*/

/* Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.status-dot {
  height: 10px;
  width: 10px;
  background-color: #FF0000;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url('../images/backgrounds/3pxtile.png');
    opacity: 1;
    z-index: -1;
}

body {
    font-family: 'Inter', sans-serif; /* Font: Inter from Google Fonts */
    background-color: #2a2a3e;      /* Dark Slate Blue */
    color: #f0e6d2;                 /* Parchment/Light Cream */
    overflow-x: hidden;               /* Overflow-x property to hide horizontal scroll */
}

button[type="submit"]:hover {
    background-color: #ffcc80;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.border-yoimiya {
    border-color: rgba(255, 152, 0, 0.2);
}

.contact-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 2rem 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.link-yoimiya {
    color: #ffb74d;
    text-decoration: none;                                                         /* Remove underline from links */
    transition: color 0.3s ease, text-decoration 0.3s ease, font-weight 0.3s ease; /* Smooth transition for hover effects */ 
}

.link-yoimiya:hover {
    color: #ffcc80;
    text-decoration: underline; /* Underline on hover */
    font-weight: bold;          /* Bold on hover */
}

.gradient-text {
    background: linear-gradient(to right, #ff9800, #ffeb3b); /* Orange to Yellow */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-card {
     background-color: rgba(83, 54, 42, 0.5);
     transition: all 0.3s ease;
     border: 1px solid transparent;
}

.project-card:hover {
    background-color: rgba(83, 54, 42, 0.8);
    border-color: rgba(255, 152, 0, 0.4);
}

.tech-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.text-yoimiya {
  color: #ffb74d;
}

.disabled {
  pointer-events: none;
  opacity: 0.8;
  cursor: not-allowed;
}

#mobile-menu a {
    transition: color 0.3s ease;
}