﻿/* ==============================================================
   🌐 HOPP FUTURISTIC NEON GLASS THEME v5.1
   Author: ChatGPT x Kudzai
   ============================================================== */

/* ======= ROOT VARIABLES ======= */
:root {
    --primary: #00ffcc;
    --primary-light: #00ffee;
    --dark-bg: #0b0b0b;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --text-light: #f2f2f2;
    --text-dark: #000;
    --border: rgba(255, 255, 255, 0.15);
    --cyan-gradient: linear-gradient(90deg, #00ffff, #00ff88);
}

/* ======= GLOBAL ======= */
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at center, #0e0e0e 0%, #000 100%);
    color: var(--text-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
}

    a:hover {
        color: var(--primary-light);
    }

/* ======= NAVBAR ======= */
.custom-navbar {
    background: rgba(10, 10, 10, 0.35);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 255, 200, 0.1);
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.15);
    padding: 12px 40px;
    transition: all 0.3s ease;
}

    .custom-navbar.navbar-shrink {
        background: rgba(0, 0, 0, 0.6);
        padding: 8px 30px;
    }

/* 🔹 Logo */
.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: radial-gradient(circle, rgba(0, 255, 150, 0.25), transparent 70%);
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.6);
    transition: all 0.3s ease;
}

    .logo-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(0, 255, 200, 0.8);
    }

/* ======= SEARCH BAR ======= */
.search-bar {
    position: relative;
    max-width: 600px;
    flex-grow: 1;
}

    .search-bar .search-icon {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
    }

    .search-bar .search-input {
        background-color: rgba(255, 255, 255, 0.08);
        border: none;
        border-radius: 30px;
        padding: 10px 18px 10px 45px;
        color: #fff;
        width: 100%;
        font-size: 15px;
        transition: all 0.3s ease;
    }

        .search-bar .search-input:focus {
            background-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 12px var(--primary);
            outline: none;
        }

/* ======= NAV LINKS ======= */
.navbar-nav .nav-link {
    color: #ddd;
    font-weight: 500;
    margin-left: 18px;
    transition: all 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: var(--primary);
        transform: scale(1.05);
    }

/* ======= LOGIN BUTTON ======= */
.btn-login {
    background: var(--primary);
    border: none;
    color: #000;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 8px 22px;
}

    .btn-login:hover {
        background: var(--primary-light);
        transform: scale(1.05);
    }

/* ======= SIDEBAR ======= */
.sidebar {
    width: 280px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    min-height: calc(100vh - 60px);
    padding: 25px 22px 25px; /* normal padding */
    margin-top: 85px; /* 👈 pushes entire sidebar below navbar */
    transition: all 0.3s ease-in-out;
    box-shadow: inset 0 0 12px rgba(0, 255, 180, 0.05), 0 0 20px rgba(0, 0, 0, 0.3);
    border-radius: 0 12px 0 0;
}


/* Sidebar cards */
.sidebar-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    margin-bottom: 20px;
    padding: 18px;
}

    .sidebar-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 255, 180, 0.15);
        background: rgba(255, 255, 255, 0.12);
    }


/* ======= FOOTER ======= */
.preview-footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(0, 255, 200, 0.3);
    color: white;
    text-align: center;
    padding: 25px 0;
}

    .preview-footer .btn-footer-signup {
        background: var(--primary);
        color: #000;
        border-radius: 25px;
        padding: 8px 22px;
        transition: all 0.3s ease;
    }

        .preview-footer .btn-footer-signup:hover {
            background: var(--primary-light);
            transform: scale(1.05);
        }

/* ======= GLASSY CONTENT SECTIONS ======= */
.glass-section {
    min-height: calc(100vh - 150px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: transparent;
}

.glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 200, 0.25);
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.15), inset 0 0 10px rgba(255, 255, 255, 0.05);
    padding: 50px 35px;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

.glass-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 255, 200, 0.7);
}

.glass-text {
    font-size: 1.05rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-top: 15px;
}

/* Smooth glow accent */
.hopp-highlight {
    background: linear-gradient(90deg, #00ffd0, #00b3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(0, 255, 200, 0.4);
}

/* ======= ANIMATION ======= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive glass card */
@media (max-width: 768px) {
    .glass-card {
        padding: 35px 25px;
        border-radius: 18px;
    }

    .glass-title {
        font-size: 1.8rem;
    }

    .glass-text {
        font-size: 0.95rem;
    }
}



/* ======= HERO SECTION ======= */
.home-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.home-full-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    color: #000;
}

.hero-title {
    font-weight: 700;
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 12px rgba(0, 255, 200, 0.4);
}

.hopp-highlight {
    background: var(--cyan-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #000;
    background: rgba(255, 255, 255, 0.3);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-btn {
    background: linear-gradient(90deg, #00ffcc, #00aaff);
    color: #000;
    border: none;
    border-radius: 30px;
    padding: 12px 35px;
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.4);
    transition: all 0.3s ease;
}

    .hero-btn:hover {
        transform: scale(1.08);
        box-shadow: 0 0 30px rgba(0, 255, 200, 0.8);
    }

/* ======= SCROLLBAR ======= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-light);
    }

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 992px) {
    .custom-navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(15, 15, 15, 0.35);
        backdrop-filter: blur(25px);
        border-bottom: 1px solid rgba(0, 255, 200, 0.1);
        box-shadow: 0 0 25px rgba(0, 255, 200, 0.15);
        padding: 10px 16px;
    }

        .custom-navbar .container-fluid {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

    .navbar-brand img.logo-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        object-fit: cover;
    }

    .search-bar {
        flex: 1;
        display: flex;
        align-items: center;
        margin: 0 8px;
        max-width: 100%;
    }

    .navbar-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        width: 42px;
        height: 42px;
        transition: all 0.3s ease;
    }

        .navbar-toggler:hover {
            background: rgba(0, 255, 200, 0.15);
            border-color: rgba(0, 255, 200, 0.3);
        }

    .navbar-nav {
        text-align: center;
        margin-top: 10px;
        background: rgba(20, 20, 20, 0.6);
        backdrop-filter: blur(25px);
        border-radius: 15px;
        padding: 15px;
        animation: fadeIn 0.4s ease-in-out;
    }

        .navbar-nav .nav-link {
            display: block;
            margin: 8px 0;
        }
}

/* ======= ANIMATIONS ======= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======= MOBILE APP STORE BUTTONS ======= */
.mobile-download-buttons {
    display: none;
}

@media (max-width: 768px) {
    .mobile-download-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 18px;
        margin-top: 15px;
        animation: fadeIn 0.6s ease-in-out;
    }

        .mobile-download-buttons a {
            display: inline-block;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .mobile-download-buttons .store-badge {
            width: 160px;
            height: auto;
            border-radius: 10px;
            box-shadow: none; /* removed border/glow outline */
            transition: all 0.3s ease;
        }

        .mobile-download-buttons a:hover .store-badge {
            transform: scale(1.05);
            box-shadow: 0 0 25px rgba(0, 255, 200, 0.6); /* subtle glow only on hover */
        }
}



/* ============================================
   MOBILE HEADER + TAB BAR
============================================ */
.mobile-header {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 20px 5px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 6px 25px rgba(0, 255, 180, 0.1);
}

.mobile-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.mobile-logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 160, 0.6);
}

.mobile-title {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00fff7, #00ffb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
}

.mobile-menu-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    opacity: 0.8;
    transition: 0.3s;
}

    .mobile-menu-btn:hover {
        opacity: 1;
        color: #00ffc6;
        transform: scale(1.05);
    }

/* ===========================
   TAB BAR
=========================== */
.mobile-tabs {
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 8px;
    box-shadow: inset 0 0 10px rgba(0, 255, 180, 0.1);
}

.tab {
    flex: 1;
    background: transparent;
    border: none;
    color: #ccc;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 0;
    position: relative;
    transition: 0.3s;
    border-radius: 12px;
}

    .tab.active {
        color: #00ffd5;
        font-weight: 600;
        text-shadow: 0 0 8px rgba(0, 255, 210, 0.6);
    }

        .tab.active::after {
            content: "";
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 40%;
            height: 3px;
            background: linear-gradient(90deg, #00fff7, #00ffb0);
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 255, 200, 0.7);
        }

    .tab:hover {
        color: #00ffc6;
    }


/* ============================================
   AUTH PAGES (Login / Signup)
============================================ */
.auth-container {
    display: flex;
    min-height: 100vh;
    flex-wrap: wrap;
}

/* Left Side – Form */
.auth-form {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow: inset 0 0 30px rgba(0, 255, 200, 0.05);
}

.auth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

    .auth-input:focus {
        outline: none;
        border-color: #00ffcc;
        box-shadow: 0 0 15px rgba(0, 255, 200, 0.4);
    }

.neon-btn {
    background: linear-gradient(90deg, #00ffc6, #00aaff);
    border: none;
    border-radius: 30px;
    color: #000;
    transition: all 0.3s ease;
}

    .neon-btn:hover {
        transform: scale(1.03);
        box-shadow: 0 0 25px rgba(0, 255, 200, 0.5);
    }

/* Right Side – Info Panel */
.auth-info-panel {
    flex: 1;
    background: linear-gradient(180deg, #060616, #0c0c2b);
    color: #fff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: radial-gradient(circle at 30% 20%, rgba(0,255,200,0.15), transparent 40%);
}

    .auth-info-panel ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .auth-info-panel li {
        margin: 12px 0;
        font-size: 1.05rem;
        display: flex;
        align-items: center;
    }

        .auth-info-panel li::before {
            content: '✓';
            color: #00ffcc;
            margin-right: 8px;
        }

/* Gradient text */
.text-gradient {
    background: linear-gradient(90deg, #00ffc6, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Links */
.link-neon {
    color: #00ffd5;
    text-decoration: none;
}

    .link-neon:hover {
        text-shadow: 0 0 10px rgba(0, 255, 200, 0.8);
    }

.link-muted {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-info-panel {
        display: none;
    }

    .auth-form {
        padding: 60px 30px;
    }
}

