/* Custom styles for THE SIBLINGS Gospel Ministry */

:root {
    --primary: #2563eb; /* Blue 600 */
    --primary-light: #60a5fa; /* Blue 400 */
    --accent: #f59e0b; /* Amber 500 */
    --background: #020617; /* Slate 950 */
    --surface: #0f172a; /* Slate 900 */
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.025em;
}

/* Glassmorphism Refined */
.glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-light {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scale-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

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

.reveal {
    animation: fade-in-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Typography Helpers */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), #818cf8, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--background);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Modern Button Base */
.btn-modern {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-modern:hover::after {
    opacity: 0.1;
}

.btn-modern:active {
    transform: scale(0.95);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 3.5rem !important; line-height: 1 !important; }
    h2 { font-size: 2.25rem !important; line-height: 1.1 !important; }
    .glass { border-radius: 1.5rem !important; }
    .section-padding { padding-top: 5rem; padding-bottom: 5rem; }
}

/* Custom Utilities */
.aspect-square {
    aspect-ratio: 1 / 1;
}

