/*
Theme Name: Maxtrone
Author: Maxtrone
Description: Ultra-modern glassmorphism theme using Bootstrap 5.
Version: 2.0
*/

/* --- 1. DESIGN TOKENS (iOS Style) --- */
:root {
    --ios-bg: #f2f2f7; /* Apple System Gray 6 */
    --ios-text: #1d1d1f;
    --ios-blue: #0071e3;
    --ios-blue-hover: #0077ed;
    
    /* Glass Effect Variables */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: 25px;
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

body {
    background-color: var(--ios-bg);
    color: var(--ios-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- 2. AMBIENT BACKGROUND (Mesh Gradient) --- */
.ambient-mesh {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    background: 
        radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(339,49%,30%,1) 0, transparent 50%);
    background: 
        radial-gradient(circle at 15% 50%, rgba(162, 210, 255, 0.6), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 200, 221, 0.6), transparent 25%);
    filter: blur(60px);
}

/* --- 3. COMPONENTS --- */

/* Glass Panel (Used for Header & Cards) */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Typography */
h1, h2, h3, h4, h5 { font-weight: 700; letter-spacing: -0.02em; color: #000; }
.display-title { font-size: 3.5rem; line-height: 1.1; font-weight: 800; }
.text-secondary-ios { color: #86868b; font-size: 1.15rem; line-height: 1.5; }

@media(max-width: 768px) {
    .display-title { font-size: 2.5rem; }
}

/* Buttons (Pill Shape) */
.btn-ios {
    background: var(--ios-blue);
    color: #fff;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}
.btn-ios:hover {
    background: var(--ios-blue-hover);
    transform: scale(1.02);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 113, 227, 0.25);
}

/* --- 4. NAVIGATION --- */
.navbar-glass {
    padding: 15px 0;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.nav-link {
    color: var(--ios-text) !important;
    font-weight: 500;
    margin: 0 10px;
}
.nav-link:hover { color: var(--ios-blue) !important; }

/* Mobile Menu Fixes */
.navbar-toggler { border: none; padding: 0; }
.navbar-toggler:focus { box-shadow: none; }

/* --- 5. CARDS (Service/Pricing) --- */
.ios-card {
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ios-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.85);
}

.icon-box {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--ios-blue);
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Sections */
section { padding: 80px 0; }

/* Pricing */
.popular-tag {
    background: var(--ios-blue); color: white;
    font-size: 0.75rem; font-weight: 700;
    padding: 6px 14px; border-radius: 20px;
    display: inline-block; margin-bottom: 10px;
}

/* Footer */
footer { border-top: 1px solid rgba(0,0,0,0.05); padding: 60px 0; color: #86868b; }