/**
 * Aham Mystica Client Website - Main Stylesheet
 * Custom styles to complement Tailwind CSS
 * 
 * Color Palette (defined in Tailwind config):
 * - Primary: #D4A574 (Rose Gold)
 * - Secondary: #C9A86A (Rich Gold)
 * - Dark: #1A1410 (Deep warm brown)
 * - Cream: #FAF7F2 (Light background)
 */

/* ============================================
   Base Styles
   ============================================ */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background-color: rgba(212, 165, 116, 0.3);
    color: #1A1410;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1410;
}

::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B8875C;
}

/* ============================================
   Typography Enhancements
   ============================================ */

/* Heading decorations */
.heading-decorated::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #D4A574, #C9A86A);
    margin-top: 0.5rem;
}

.heading-decorated-center::after {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Glass Effects (matching mobile app)
   ============================================ */

.glass-card {
    background: rgba(245, 230, 211, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.25);
}

.glass-card-light {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

/* ============================================
   Button Styles
   ============================================ */

.btn-primary-gradient {
    background: linear-gradient(135deg, #D4A574 0%, #C9A86A 100%);
    transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid #D4A574;
    color: #D4A574;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #D4A574;
    color: #1A1410;
}

/* ============================================
   Form Styles
   ============================================ */

.form-input {
    background: rgba(245, 230, 211, 0.08);
    border: 1px solid rgba(212, 165, 116, 0.25);
    color: #FAF7F2;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #D4A574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.form-input::placeholder {
    color: rgba(250, 247, 242, 0.5);
}

/* Light form input */
.form-input-light {
    background: #ffffff;
    border: 1px solid rgba(212, 165, 116, 0.3);
    color: #1A1410;
}

.form-input-light:focus {
    border-color: #D4A574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

/* ============================================
   Card Styles
   ============================================ */

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Animations
   ============================================ */

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shimmer 2s infinite;
}

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

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ============================================
   Hero Section Specific
   ============================================ */

.hero-gradient {
    background: radial-gradient(circle at center, #000000 0%, #270620 50%, #1A1410 100%);
}

/* Sacred geometry background pattern */
.sacred-pattern {
    background-image: url('../images/sacred-geometry.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
}

/* ============================================
   Loading States
   ============================================ */

.skeleton {
    background: linear-gradient(90deg, #2B2419 25%, #3A3327 50%, #2B2419 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ============================================
   Responsive Utilities
   ============================================ */

/* Hide scrollbar but keep functionality */
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}