/* ==============================================
Shared Stylesheet for Surya's Portfolio
==============================================
*/

/* --- Base and Font Styles --- */
body {
    font-family: 'Inter', sans-serif;
    background-color: #FDF8F0; /* Creamy off-white */
    color: #1a1a1a;
    animation: fadeIn 0.8s ease-in-out;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Paytone One', sans-serif;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Navigation Link Styles --- */
.nav-link {
    @apply text-lg relative;
}
.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #7B61FF;
    transition: width 0.3s;
    @apply absolute bottom-[-4px] left-0;
}
.nav-link.active::after, .nav-link:hover::after {
    width: 100%;
}

/* --- Sticker Styles --- */
.sticker {
    position: absolute;
    width: 50px;
    height: 50px;
    pointer-events: none;
    z-index: 0;
}

/* --- Custom Card Styles --- */
.custom-card {
    background-color: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 1rem;
    box-shadow: 4px 4px 0px #1a1a1a;
    transition: all 0.3s ease;
}
.custom-card:hover {
    transform: translateY(-5px) translateX(-5px);
    box-shadow: 8px 8px 0px #7B61FF;
}

/* --- Custom Button Styles --- */
.custom-btn {
     background-color: #FFD23F; /* Primary Yellow */
     border: 2px solid #1a1a1a;
     border-radius: 0.75rem;
     box-shadow: 3px 3px 0px #1a1a1a;
     transition: all 0.3s ease;
}
.custom-btn:hover {
     transform: translateY(-3px) translateX(-3px);
     box-shadow: 6px 6px 0px #1a1a1a;
     background-color: #FFC300;
}

.custom-btn-secondary {
    background-color: #90E0EF; /* Secondary Blue */
}
 .custom-btn-secondary:hover {
    background-color: #00B4D8;
 }
