/*
Theme Name: Monika Theme
Author: Prince Kumar
Version: 1.0
*/

/* =========================================
   GLOBAL
========================================= */
body {
    scroll-behavior: smooth;
}

/* =========================================
   BUTTONS
========================================= */
.btn-primary {
    background-color: #523186;
    color: #fff;
    padding: 12px 32px;
    border-radius: 9999px;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 12px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 10px 20px -10px rgba(82,49,134,0.5);
}

.btn-primary:hover {
    background-color: #EEAE51;
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid #523186;
    color: #523186;
    padding: 12px 32px;
    border-radius: 9999px;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 12px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background-color: #523186;
    color: #fff;
}

/* =========================================
   SERVICE CARD
========================================= */
.service-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.08);
}

/* =========================================
   TESTIMONIAL CARD
========================================= */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* =========================================
   HOVER UNDERLINE
========================================= */
.hover-underline {
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #EEAE51;
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

/* =========================================
   NAVBAR
========================================= */
#navbar {
    transition: all 0.4s ease;
}

/* =========================================
   SCROLL ANIMATION
========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   BLOG CONTENT
========================================= */
.blog-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.blog-content p strong {
    color: #523186;
}

.blog-content h2,
.blog-content h3 {
    font-family: 'League Spartan', sans-serif;
    color: #523186;
    font-size: 1.875rem;
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.blog-content h4 {
    font-family: 'League Spartan', sans-serif;
    color: #523186;
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

/* Blockquote */
.blog-content blockquote,
.prose blockquote {
    border-left: 4px solid #EEAE51;
    padding-left: 1.5rem;
    padding: 1rem 0 1rem 1.5rem;
    margin: 2rem 0;
    background-color: #f9fafb;
    border-radius: 0 0.75rem 0.75rem 0;
}

.blog-content blockquote p {
    font-style: italic;
    font-size: 1.5rem;
    color: #523186;
    font-weight: 500;
}

/* Lists */
.blog-content ul {
    list-style: none;
    padding-left: 0;
}

.blog-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.blog-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #EEAE51;
    font-size: 1.25rem;
}

/* Links */
.blog-content a {
    color: #EEAE51;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.blog-content a:hover {
    text-decoration-color: #EEAE51;
}

/* Images */
.blog-content img {
    width: 100%;
    border-radius: 1rem;
    margin: 2.5rem 0;
}

/* =========================================
   CUSTOM GRID (BLOG BOXES)
========================================= */
.custom-grid-layout {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .custom-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

.custom-grid-card {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
}

.custom-grid-card h2,
.custom-grid-card h3 {
    font-family: 'League Spartan', sans-serif;
    color: #523186;
    font-size: 1.25rem;
}

.custom-grid-card p {
    font-size: 0.875rem;
    color: #4b5563;
}
.service-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid #EEAE51;
}

.btn-primary {
    background: #523186;
    color: white;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #EEAE51;
}

.font-h2 {
    font-family: 'League Spartan', sans-serif;
}

.font-body {
    font-family: 'Nunito', sans-serif;
}
.service-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    position: relative;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-bottom: 4px solid #EEAE51;
}