/* ================= VARIABLES & FONTS ================= */
:root {
    --lime: #CCFF00; /* Neon Lime */
    --black: #050505;
    --dark-grey: #1a1a1a;
    --white: #ffffff;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
}

/* ================= UTILITIES ================= */
.text-lime { color: var(--lime) !important; }
.bg-lime { background-color: var(--lime) !important; }
.bg-black { background-color: var(--black) !important; }
.bg-dark-grey { background-color: var(--dark-grey) !important; }

/* Text Stroke Effect (Outline) */
.text-stroke {
    -webkit-text-stroke: 1px var(--black);
    color: transparent;
    position: relative;
    z-index: 1;
}
.hero-wrapper .text-stroke {
    -webkit-text-stroke: 2px var(--black);
}

.rounded-top-5 { border-top-left-radius: 3rem; border-top-right-radius: 3rem; }

/* ================= BUTTONS ================= */
.btn-lime {
    background-color: var(--lime);
    color: var(--black);
    font-weight: 700;
    border: 2px solid var(--lime);
    transition: all 0.3s ease;
}
.btn-lime:hover {
    background-color: transparent;
    color: var(--lime);
}

.btn-black {
    background-color: var(--black);
    color: var(--white);
    font-weight: 600;
    border: 2px solid var(--black);
    transition: all 0.3s ease;
}
.btn-black:hover {
    background-color: transparent;
    color: var(--black);
}
footer .btn-black:hover {
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-black {
    border: 2px solid var(--black);
    color: var(--black);
    font-weight: 600;
}
.btn-outline-black:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-outline-lime {
    border: 2px solid var(--lime);
    color: var(--lime);
    font-weight: 600;
}
.btn-outline-lime:hover {
    background-color: var(--lime);
    color: var(--black);
}

/* ================= HERO SECTION (Curved Card) ================= */
.hero-wrapper {
    background-color: var(--black);
}

.hero-card {
    background-color: var(--white);
    color: var(--black);
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    padding-bottom: 50px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}

/* Floating Navbar */
.nav-pill-custom {
    background-color: #424546;
    border-radius: 50px;
    padding: 10px 20px;
    width: fit-content;
    min-width: 60%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nav-link {
    color: rgba(255,255,255,0.7) !important;
    font-weight: 500;
}
.nav-link:hover { color: var(--white) !important; }

/* Hero Typography */
.hero-title {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* ================= HERO PHOTO STYLING (The Arch) ================= */
.hero-image-container {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    z-index: 10;
}

.photo-frame {
    width: 450px;
    height: 550px;
    border-radius: 300px 300px 0 0; /* Arch shape */
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: 0 30px 700px rgba(0,0,0,0.15);
    position: relative;
    z-index: 3;
    background-color: #e5e5e5;
}

.my-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; 
}

.lime-circle-bg {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 420px;
    background-color: var(--lime);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.8;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    z-index: 3;
    text-align: center;
    min-width: 140px;
    animation: float 5s ease-in-out infinite;
}

.badge-right { top: 100px; right: -80px; }
.badge-left { bottom: 50px; left: -80px; display: flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 50px; animation-delay: 1s; }

.icon-box { background: var(--black); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

.doodle-arrow { position: absolute; top: 60px; right: -100px; transform: rotate(15deg); z-index: 0; }
.hero-star-left { position: absolute; left: 5%; top: 15%; animation: spin 10s linear infinite; }

/* ================= PROJECT CARDS ================= */
.project-card {
    position: relative;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.project-card:hover { transform: scale(0.98); }

.project-card .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .bg-img { transform: scale(1.1); }

.large-card { height: 400px; }
.small-card { height: 400px; } 

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    z-index: 2;
}

/* ================= CONTACT FORM ================= */
.form-control-custom {
    background-color: var(--black) !important;
    border: 1px solid #333 !important;
    color: var(--white) !important;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: var(--lime) !important;
    box-shadow: 0 0 10px rgba(204, 255, 0, 0.2) !important;
    outline: none;
}

.form-control-custom::placeholder {
    color: #555;
    font-size: 0.9rem;
}

/* ================= ANIMATIONS ================= */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.marquee-content {
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .nav-pill-custom { width: 90%; }
    .hero-title { font-size: 2.5rem; }
    .hero-card { border-radius: 0 0 40px 40px; }
    .photo-frame { width: 280px; height: 350px; }
    .lime-circle-bg { width: 300px; height: 300px; }
    .badge-right { right: -10px; top: 180px; scale: 0.9; }
    .badge-left { left: -10px; bottom: 20px; scale: 0.9; }
    .doodle-arrow { display: none; }
}