@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

body { 
    font-family: 'Inter', sans-serif; 
}

.scrollbar-hide::-webkit-scrollbar { 
    display: none; 
}

.scrollbar-hide { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

/* ==============================================================
   Neomorphic Toggle Switch Custom Styles
   ============================================================== */

.neo-toggle {
    background: #e2e8f0; 
    box-shadow: inset 4px 4px 6px #cbd5e1, inset -4px -4px 6px #f8fafc;
}
.neo-thumb {
    background: #f1f5f9; 
    box-shadow: 2px 2px 5px #cbd5e1, -2px -2px 5px #ffffff;
}

.dark .neo-toggle {
    background: #334155; 
    box-shadow: inset 4px 4px 6px #1e293b, inset -4px -4px 6px #475569;
}
.dark .neo-thumb {
    background: #475569; 
    box-shadow: 2px 2px 5px #1e293b, -2px -2px 5px #64748b;
}

/* ==============================================================
   Island.Guru Animated Logo Styles (Clipping Fixed)
   ============================================================== */
.scene {
    width: 100%;
    height: 80px; /* Increased to prevent clipping low descenders like 'g' */
    max-width: 350px; /* Increased to prevent heart clipping on the right edge */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; 
}

.title-wrap {
    position: relative;
    display: inline-block;
}

.site-title {
    font-family: 'Pacifico', cursive, sans-serif;
    font-size: 34px;
    line-height: 1.5; /* Gives vertical space for cursive fonts */
    padding: 10px 16px; /* Expanding the box bounds prevents -webkit-background-clip from clipping the loops */
    background: linear-gradient(135deg, #de81c2 0%, #ff4aac 35%, #de81c2 60%, #ff8aea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    white-space: nowrap;
    display: block;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, transparent 100%);
}

.heart-container {
    position: absolute;
    top: 50%;
    left: -45px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 3;
}

.heart-pulse {
    animation: heartbeat 0.9s ease-in-out infinite;
}
@keyframes heartbeat {
    0%,100% { transform: scale(1); }
    40%     { transform: scale(1.08); }
    70%     { transform: scale(0.97); }
}

.shimmer-overlay {
    animation: shimmer 1.1s linear infinite;
}
@keyframes shimmer {
    0%   { opacity: 0.35; }
    40%  { opacity: 1; }
    70%  { opacity: 0.55; }
    100% { opacity: 0.35; }
}

.sparkle {
    animation: sparkleAnim var(--dur) ease-in-out var(--delay) infinite;
}
@keyframes sparkleAnim {
    0%,100% { opacity: 0; transform: scale(0.3); }
    50%     { opacity: 1; transform: scale(1); }
}