/* ============================================
   AMT Digital Store - Frontend Global Styles
   ============================================ */

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
}

/* ============================================
   Glass Card Effect
   ============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.3);
}

/* ============================================
   Hero Effects
   ============================================ */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -100px;
    left: -100px;
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   Text Gradient
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Button Styles
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.glow-button {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
}

.glow-button:hover {
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.6);
}

/* ============================================
   Gallery Styles
   ============================================ */
.gallery-thumb {
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    transform: scale(1.05);
    border-color: #6366f1;
}

.gallery-thumb.active {
    border-color: #6366f1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

/* ============================================
   Prose Styles
   ============================================ */
.prose-description {
    line-height: 1.8;
}

.prose-description p {
    margin-bottom: 1rem;
}

/* ============================================
   Custom Scrollbar
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
    /* Brand Dark */
}

::-webkit-scrollbar-thumb {
    background: #4f46e5;
    /* Indigo 600 */
    border-radius: 5px;
    border: 2px solid #0f172a;
    /* Padding effect */
}

::-webkit-scrollbar-thumb:hover {
    background: #6366f1;
    /* Indigo 500 */
}

/* ============================================
   Hero Gradient Background
   ============================================ */
.hero-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
}