/**
 * Custom Styles for Dr. Divit Astrologer Website
 * Color Scheme: White (#FFFFFF) + Orange (#F28C28 / #FF7A00)
 */

/* Force CSS to load - Test */
body {
    font-family: 'Poppins', sans-serif !important;
}

:root {
    --primary-orange: #F28C28;
    --secondary-orange: #FF7A00;
    --white: #FFFFFF;
    --dark-gray: #1F2937;
    --light-gray: #F3F4F6;
}

/* Custom Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(242, 140, 40, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(242, 140, 40, 0.4);
    color: white;
}

.btn-outline {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

/* Card Styles */
.service-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(242, 140, 40, 0.2);
    border-color: var(--primary-orange);
}

/* Section Spacing */
.section-padding {
    padding: 3.5rem 0;
}

/* Text Colors */
.text-orange-primary {
    color: var(--primary-orange);
}

.bg-orange-primary {
    background-color: var(--primary-orange);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-orange);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Typography */
@media (max-width: 768px) {
    .heading-font {
        font-size: 1.5rem;
    }
}

/* Body and Typography Styles */
body {
    font-family: 'Poppins', sans-serif;
}

.heading-font {
    font-family: 'Playfair Display', serif;
}

/* ============================================
   HEADER STYLES REMOVED - NOW IN header.css
   ============================================ */
