/* ═══════════════════════════════════════════════════════
   ARCANA PORTFOLIO — design.css
   Palette : #1e1e1e bg · #00CFFF accent · #FF7300 orange
   Fonts   : BBH Sans Hegarty · Bebas Neue · Inter Tight
             Manrope · Poppins · Impact
═══════════════════════════════════════════════════════ */

/* ── reset ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: #1e1e1e;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════ */
.navbar-custom {
    background-color: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1030;
    border-bottom: 1px solid rgba(0, 207, 255, 0.12);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.navbar-custom .navbar-brand {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 4px;
    color: #00CFFF !important;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}
.navbar-custom .navbar-brand:hover { color: #FF7300 !important; transform: scale(1.04); }

.navbar-custom .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.88) !important;
    padding: 0.5rem 0.9rem;
    position: relative;
    transition: color 0.25s ease;
}
.navbar-custom .nav-link:hover { color: #00CFFF !important; }
.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: 2px; left: 50%;
    transform: translateX(-50%);
    background: #00CFFF;
    border-radius: 2px;
    transition: width 0.3s ease;
}
.navbar-custom .nav-link:hover::after { width: 65%; }

@media (max-width: 991.98px) {
    #collapsibleNavbar {
        background: rgba(12,12,12,0.98);
        border-radius: 0 0 12px 12px;
        padding: 0.5rem 0 1rem;
        border-top: 1px solid rgba(0,207,255,0.1);
    }
    .navbar-custom .nav-link { font-size: 0.9rem; padding: 0.6rem 1.2rem; }
}

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 90px;
    padding-bottom: 40px;
}
#hero-left {
    font-family: "BBH Sans Hegarty", sans-serif;
    padding: clamp(1.2rem, 3vw, 2.5rem);
    border-radius: 12px;
    background: rgba(25, 25, 25, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0,207,255,0.2);
}
#hero-left h1 {
    font-size: clamp(2rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.6rem;
    color: #fff;
}
#hero-left h1 span { color: #00CFFF; }
.hero-tagline {
    font-family: Impact, 'Arial Narrow Bold', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.75rem);
    color: #D3D3D3;
    letter-spacing: 0.5px;
}
.hero-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    letter-spacing: 2px;
}
.logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 2vw, 24px);
    border-radius: 16px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    width: clamp(180px, 75%, 320px);
}
.hero-logo {
    width: 100%;
    max-width: 260px;
    height: auto;
    opacity: 0.92;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(0,207,255,0.55)) drop-shadow(0 0 18px rgba(0,207,255,0.22));
}
.hero-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(0,207,255,1)) drop-shadow(0 0 28px rgba(0,207,255,0.5));
}

/* CTA button shared override */
.btn-outline-info {
    --bs-btn-color: #00CFFF;
    --bs-btn-border-color: #00CFFF;
    --bs-btn-hover-bg: #00CFFF;
    --bs-btn-hover-border-color: #00CFFF;
    --bs-btn-hover-color: #1a1a1a;
    --bs-btn-active-bg: #00CFFF;
    --bs-btn-active-border-color: #00CFFF;
    transition: all 0.35s cubic-bezier(0.25,0.8,0.25,1);
    font-weight: 600;
}
.btn-outline-info:hover {
    box-shadow: 0 5px 18px rgba(0,207,255,0.4);
    transform: translateY(-3px);
}

/* ════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════ */
#about {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-top: 110px;
    padding-bottom: 70px;
    background: linear-gradient(to bottom, #080821, #111c2d 65%, #07090f);
    color: #fff;
}
.content-z-index { position: relative; z-index: 2; }

.about-heading {
    font-family: "BBH Sans Hegarty", sans-serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    color: #00CFFF;
    letter-spacing: 2px;
}
.about-text-lg {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: #fff;
}
.about-text-sm {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #fff;
    line-height: 1.75;
}
.about-name-highlight {
    font-family: 'BBH Sans Hegarty', sans-serif;
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    color: #FF7300;
}

/* ── AVATAR — perfect on all screens ──────────────── */
.avatar-frame {
    /* gradient border ring */
    display: inline-block;
    border-radius: 18px;
    padding: 4px;
    background: linear-gradient(135deg, #00CFFF 0%, #FF7300 100%);
    box-shadow: 0 0 30px rgba(0,207,255,0.4), 0 0 60px rgba(0,207,255,0.12);
    /* responsive sizing: fills column but caps at 340px */
    width: min(100%, 340px);
    flex-shrink: 0;
}
.about-profile-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;       /* portrait ratio — consistent on every screen */
    object-fit: cover;
    object-position: top center;
    border-radius: 15px;
    border: 3px solid #1e1e1e;  /* inner separator from the gradient ring */
    background-color: #0f0f2d;
}
/* Hover lift */
.avatar-frame:hover { transform: scale(1.02); transition: transform 0.3s ease; }

/* Skills */
.skills-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    letter-spacing: 2px;
    color: #00CFFF;
}
.skill-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.skill-list li {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(0.78rem, 1.8vw, 0.98rem);
    background: #00CFFF;
    color: #1a1a1a;
    padding: 7px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
    cursor: default;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.skill-list li:hover {
    transform: translateY(-5px) rotate(1deg);
    background: #FF7300;
    box-shadow: 0 8px 16px rgba(255,115,0,0.5);
}

/* Stars / shooting stars */
#about .stars {
    width: 1px; height: 1px;
    position: absolute; background: white;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow:
        2vw 5vh 2px white, 10vw 8vh 2px white, 15vw 15vh 1px white,
        22vw 22vh 1px white, 28vw 12vh 2px white, 32vw 32vh 1px white,
        38vw 18vh 2px white, 42vw 35vh 1px white, 48vw 25vh 2px white,
        53vw 42vh 1px white, 58vw 15vh 2px white, 63vw 38vh 1px white,
        68vw 28vh 2px white, 73vw 45vh 1px white, 78vw 32vh 2px white,
        83vw 48vh 1px white, 88vw 20vh 2px white, 93vw 52vh 1px white,
        98vw 35vh 2px white, 5vw 60vh 1px white, 12vw 65vh 2px white,
        18vw 72vh 1px white, 25vw 78vh 2px white, 30vw 85vh 1px white,
        35vw 68vh 2px white, 40vw 82vh 1px white, 45vw 92vh 2px white,
        50vw 75vh 1px white, 55vw 88vh 2px white, 60vw 95vh 1px white,
        65vw 72vh 2px white, 70vw 85vh 1px white, 75vw 78vh 2px white,
        80vw 92vh 1px white, 85vw 82vh 2px white, 90vw 88vh 1px white,
        95vw 75vh 2px white;
    animation: twinkle 8s infinite linear;
}
#about .stars::after {
    content: ""; position: absolute;
    width: 1px; height: 1px; background: white;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow:
        8vw 12vh 2px white, 16vw 18vh 1px white, 24vw 25vh 2px white,
        33vw 15vh 1px white, 41vw 28vh 2px white, 49vw 35vh 1px white,
        57vw 22vh 2px white, 65vw 42vh 1px white, 73vw 28vh 2px white,
        81vw 48vh 1px white, 89vw 32vh 2px white, 97vw 45vh 1px white,
        3vw 68vh 2px white, 11vw 75vh 1px white, 19vw 82vh 2px white,
        27vw 88vh 1px white, 35vw 72vh 2px white, 43vw 85vh 1px white,
        51vw 92vh 2px white, 59vw 78vh 1px white;
    animation: twinkle 6s infinite linear reverse;
}
#about .shooting-star {
    position: absolute; width: 100px; height: 2px;
    background: linear-gradient(90deg, white, transparent);
    animation: shoot 3s infinite ease-in; z-index: 2;
}
#about .star-1 { top: 20%; left: -100px; animation-delay: 0s; }
#about .star-2 { top: 35%; left: -100px; animation-delay: 1s; }
#about .star-3 { top: 50%; left: -100px; animation-delay: 2s; }
#about .star-4 { top: 65%; left: -100px; animation-delay: 3s; }
#about .star-5 { top: 80%; left: -100px; animation-delay: 4s; }

@keyframes twinkle { 0%,100% { opacity:.8; } 50% { opacity:.3; } }
@keyframes shoot {
    0%   { transform: translateX(0) translateY(0) rotate(25deg); opacity: 1; }
    100% { transform: translateX(120vw) translateY(50vh) rotate(25deg); opacity: 0; }
}

/* ════════════════════════════════════════════════════
   PORTFOLIO — wave background
════════════════════════════════════════════════════ */
#portfolio {
    min-height: 80vh;
    padding: 100px 0 80px;
    background: #1a1a1a;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.portfolio-content-wrapper { position: relative; z-index: 10; }
.portfolio-heading {
    font-family: "BBH Sans Hegarty", sans-serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    color: #00CFFF;
    letter-spacing: 2px;
}
.slider-hint {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.5px;
}

/* Wave animation */
#portfolio .wave {
    position: absolute; left: 0; top: 0;
    width: 100%; height: 100%;
    background: #27d4ff;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
    z-index: 1;
}
#portfolio .wave span {
    position: absolute;
    width: 325vh; height: 325vh;
    top: 0; left: 50%;
    transform: translate(-50%,-75%);
}
#portfolio .wave span:nth-child(1) { border-radius: 45%; background: rgba(28,30,28,0.92); animation: waveAnim 5s linear infinite; }
#portfolio .wave span:nth-child(2) { border-radius: 40%; background: rgba(30,30,30,0.82); animation: waveAnim 10s linear infinite; }
#portfolio .wave span:nth-child(3) { border-radius: 42.5%; background: rgba(34,34,34,0.72); animation: waveAnim 15s linear infinite; }
@keyframes waveAnim {
    0%   { transform: translate(-50%,-75%) rotate(0deg); }
    100% { transform: translate(-50%,-75%) rotate(360deg); }
}

/* ════════════════════════════════════════════════════
   SLIDER — native scroll-snap + styled scrollbar
════════════════════════════════════════════════════ */
.slider-viewport {
    overflow-x: auto;
    overflow-y: visible;
    width: 100%;
    cursor: grab;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 24px 16px 30px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,207,255,0.5) rgba(0,207,255,0.06);
}
.slider-viewport:active { cursor: grabbing; }
.slider-viewport::-webkit-scrollbar { height: 5px; border-radius: 3px; }
.slider-viewport::-webkit-scrollbar-track { background: rgba(0,207,255,0.06); border-radius: 3px; }
.slider-viewport::-webkit-scrollbar-thumb { background: rgba(0,207,255,0.5); border-radius: 3px; }
.slider-viewport::-webkit-scrollbar-thumb:hover { background: #00CFFF; }

.slider-track {
    display: flex;
    gap: 22px;
    align-items: stretch;
    padding: 4px 16px 8px 2px;
    width: max-content;
    transform: none !important;
    transition: none !important;
}

/* Card width — one source, no conflicting overrides */
.slide-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: flex;
    width: min(calc(100vw - 64px), 310px);
}

/* ════════════════════════════════════════════════════
   PROJECT CARD
════════════════════════════════════════════════════ */
.project-card {
    position: relative;
    width: 100%;
    min-height: 460px;
    background: linear-gradient(150deg, #0f1e35 0%, #111827 55%, #0a0f1a 100%);
    border: 1.5px solid rgba(0,207,255,0.55);
    border-radius: 14px;
    padding: 26px 22px 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow:
        0 2px 0 rgba(0,207,255,0.18),
        0 10px 40px rgba(0,0,0,0.8),
        0 0 22px rgba(0,207,255,0.1),
        inset 0 1px 0 rgba(255,255,255,0.04);
    transform-style: preserve-3d;
    transition: transform 0.12s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card-shine {
    position: absolute; inset: 0;
    border-radius: 14px;
    pointer-events: none;
    z-index: 1; opacity: 0;
    transition: opacity 0.3s ease;
}
.project-card > *:not(.card-shine) { position: relative; z-index: 2; }

.card-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(0,207,255,0.1);
    border: 1px solid rgba(0,207,255,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; color: #00CFFF;
    margin-bottom: 12px; margin-top: 8px; flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}
.project-card:hover .card-icon-wrap { background: rgba(0,207,255,0.2); transform: scale(1.1) rotate(-5deg); }

.card-title {
    font-family: 'BBH Sans Hegarty', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    letter-spacing: 1px; color: #00CFFF;
    margin-top: 4px; margin-bottom: 10px;
    flex-shrink: 0; line-height: 1.15;
}
.card-description {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem; color: #cfe0f5;
    flex-grow: 1; margin-bottom: 16px; line-height: 1.65;
}
.card-btn {
    width: 100%;
    font-family: 'Manrope', sans-serif; font-weight: 700;
    border-radius: 8px; flex-shrink: 0; font-size: 0.88rem;
    transition: all 0.3s ease;
}
.card-btn.disabled { pointer-events: none; opacity: 0.4; }

.card-tech { margin-top: 12px; padding-top: 10px; border-top: 1px dashed rgba(0,207,255,0.2); flex-shrink: 0; }
.card-tech span {
    display: inline-block;
    background: rgba(0,207,255,0.08);
    border: 1px solid rgba(0,207,255,0.28);
    color: #7de8ff;
    font-family: 'Poppins', sans-serif; font-size: 0.7rem; font-weight: 600;
    padding: 2px 8px; border-radius: 4px;
    margin-right: 4px; margin-bottom: 4px; letter-spacing: 0.4px;
}

.status-badge {
    position: absolute; top: 0; right: 0;
    padding: 5px 12px; border-radius: 0 14px 0 12px;
    font-family: 'Poppins', sans-serif; font-weight: 700;
    font-size: 0.7rem; letter-spacing: 0.6px;
    text-transform: uppercase; z-index: 3;
}
.badge-live    { background: #28a745; color: #fff; }
.badge-expired { background: #dc3545; color: #fff; }
.badge-here    { background: #00CFFF; color: #0a0f1a; font-weight: 800; }

/* ════════════════════════════════════════════════════
   SLIDER CONTROLS — dark pill, orange accents
   Always visible against both cyan wave and dark bg
════════════════════════════════════════════════════ */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
    padding: 10px 20px;
    background: rgba(8, 8, 12, 0.88);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.slider-arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid #FF7300;
    background: rgba(12, 12, 18, 0.96);
    color: #FF7300;
    font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
    transition: all 0.25s ease;
}
.slider-arrow:hover { background: #FF7300; color: #0a0a0f; box-shadow: 0 0 16px rgba(255,115,0,0.55); transform: scale(1.1); }
.slider-arrow:disabled { opacity: 0.2; cursor: not-allowed; transform: none; box-shadow: none; border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.18); }

.slider-dots { display: flex; gap: 9px; align-items: center; }
.slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.12);
    cursor: pointer; padding: 0; outline: none;
    transition: all 0.25s ease; flex-shrink: 0;
}
.slider-dot.active { background: #FF7300; border-color: #FF7300; box-shadow: 0 0 10px rgba(255,115,0,0.7); transform: scale(1.4); }
.slider-dot:hover:not(.active) { background: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.7); }

/* ════════════════════════════════════════════════════
   PHILOSOPHY
════════════════════════════════════════════════════ */
#philosophy {
    padding: 100px 0 80px;
    background: #222;
    color: #fff;
}
.philosophy-heading {
    font-family: "BBH Sans Hegarty", sans-serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    color: #00CFFF;
    letter-spacing: 2px;
}
.philosophy-card {
    background: rgba(22,22,30,0.98);
    border: 1px solid rgba(0,207,255,0.25);
    border-radius: 14px;
    transition: all 0.3s ease;
}
.philosophy-card:hover { box-shadow: 0 0 28px rgba(0,207,255,0.25); transform: translateY(-4px); }

.philosophy-title {
    font-family: 'BBH Sans Hegarty', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #FF7300;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(0,207,255,0.12);
    padding-bottom: 10px;
}
.philosophy-list { padding: 0; margin: 0; }
.philosophy-list li {
    padding: 10px 0 10px 16px;
    border-left: 3px solid #00CFFF;
    margin-bottom: 12px;
    list-style: none;
}
.philosophy-list h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 1rem;
    color: #00CFFF; margin-bottom: 4px;
}
.philosophy-list p, .philosophy-card p, .phil-lead { color: #fff !important; font-size: 0.95rem; margin: 0; }
.phil-lead { font-size: 1rem; line-height: 1.7; }
.phil-accent { font-family: 'Poppins', sans-serif; font-weight: 700; color: #FF7300; display: block; margin-bottom: 2px; }

/* ════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════ */
#contact {
    background: #181818;
    color: #fff;
    min-height: 50vh;
}
.contact-heading {
    font-family: "BBH Sans Hegarty", sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #00CFFF;
    letter-spacing: 2px;
}
.contact-sub { font-family: 'Inter Tight', sans-serif; color: #fff; font-size: 1rem; }
.contact-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 0.78rem;
    letter-spacing: 1.5px; color: #00CFFF !important;
    display: block; margin-bottom: 6px;
}
.contact-input {
    font-family: 'Manrope', sans-serif;
    color: #fff !important;
    background: rgba(20,20,28,0.9) !important;
    border: 1px solid rgba(0,207,255,0.4) !important;
    border-radius: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-input:focus {
    background: rgba(10,10,18,0.95) !important;
    border-color: #00CFFF !important;
    box-shadow: 0 0 0 0.2rem rgba(0,207,255,0.22) !important;
    outline: none;
}
.contact-input::placeholder { color: rgba(255,255,255,0.32) !important; }
.contact-form { background: rgba(255,255,255,0.03); border: 1px solid rgba(0,207,255,0.1); }

.submit-btn {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.2rem !important;
    letter-spacing: 3px !important;
    border-radius: 10px;
    border-color: #00CFFF !important;
    color: #00CFFF !important;
    transition: all 0.3s ease;
}
.submit-btn:hover { background: #00CFFF !important; color: #1a1a1a !important; box-shadow: 0 0 22px rgba(0,207,255,0.5); }

.success-alert {
    background: linear-gradient(135deg, rgba(0,207,255,0.15), rgba(0,207,255,0.05));
    border: 1px solid rgba(0,207,255,0.4);
    border-radius: 12px;
    padding: 1.2rem;
    color: #00CFFF;
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.footer-custom { background: #0d0d0d; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-label  { color: #FF7300; margin-right: 4px; }
.footer-email  { color: #FF7300 !important; text-decoration: none; transition: color 0.3s ease; }
.footer-phone  { color: #00CFFF !important; text-decoration: none; transition: color 0.3s ease; }
.footer-email:hover, .footer-phone:hover { color: #fff !important; }
.footer-note   { color: rgba(0,207,255,0.75); font-size: 0.82rem; font-weight: 400; }
.footer-copy   { color: rgba(255,255,255,0.55); font-size: 0.85rem; }

/* ════════════════════════════════════════════════════
   SMOKE CURSOR
════════════════════════════════════════════════════ */
.smoke-particle {
    position: fixed; width: 18px; height: 18px;
    border-radius: 50%; z-index: 99999; pointer-events: none;
    background: radial-gradient(circle, rgba(0,207,255,0.8), rgba(255,255,255,0.3));
    animation: fadeAndShrink 0.9s forwards ease-out;
}
@keyframes fadeAndShrink { 0% { opacity:1; transform:scale(1); } 100% { opacity:0; transform:scale(0.01); } }

/* ════════════════════════════════════════════════════
   GLOBAL Bootstrap muted-text override
════════════════════════════════════════════════════ */
.text-light-emphasis { color: #fff !important; }

/* ════════════════════════════════════════════════════
   RESPONSIVE — single set of breakpoints, no conflicts
════════════════════════════════════════════════════ */

/* ── Mobile (< 576px) ── */
@media (max-width: 575.98px) {
    #hero { padding-top: 80px; padding-bottom: 30px; }
    #hero-left { padding: 1.2rem 1rem; }

    #about { padding-top: 88px; padding-bottom: 50px; }
    .avatar-frame { width: min(100%, 260px); }

    #portfolio { padding: 75px 0 55px; }
    .slider-controls { padding: 8px 14px; gap: 10px; }
    .slider-arrow { width: 36px; height: 36px; font-size: 0.82rem; }

    #philosophy { padding: 65px 0 50px; }
    .philosophy-card { padding: 1.2rem !important; }

    #contact { padding-top: 10px; }
}

/* ── Small (576px – 767px) ── */
@media (min-width: 576px) and (max-width: 767.98px) {
    .avatar-frame { width: min(100%, 300px); }
}

/* ── Medium (768px – 991px) ── */
@media (min-width: 768px) and (max-width: 991.98px) {
    .avatar-frame { width: min(100%, 320px); }
}

/* ── Large+ (≥ 992px) ── */
@media (min-width: 992px) {
    .avatar-frame { width: min(100%, 340px); }
    #hero-left {
        min-height: 380px;
        display: flex; flex-direction: column;
        justify-content: center; align-items: flex-start;
    }
    .project-card { min-height: 480px; }
}

/* ── Touch devices: kill JS tilt ── */
@media (hover: none) {
    .project-card { transform: none !important; }
    .project-card:active { border-color: rgba(0,207,255,0.6); box-shadow: 0 8px 26px rgba(0,207,255,0.2); }
    .avatar-frame:hover { transform: none; }
}