body {
    margin: 0;
    font-family: 'Cormorant Garamond', 'Playfair+Display', serif;
    background: linear-gradient(135deg, #ff9800 0%, #ffd54f 100%); /* saffron to gold */
    color: #4e260e !important; /* deep brown for readability */
}

h1, h2, h3, h4, h5, h6 {
    color: #4e260e !important;
}

.section-title, .services-highlight h2, .testimonials h2, .daily-remedy h2, .about-astro-home h2, .blog-highlights h2, .contact-info-home h2 {
    color: #ff9800 !important;
}

.banner {
    background: url('../images/zodiac-banner-kesariya.jpg') center/cover no-repeat;
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner .overlay {
    background: rgba(255, 152, 0, 0.7); /* saffron overlay */
    padding: 40px 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.18);
}
.banner h1, .banner .tagline {
    color: #fffde7 !important;
}
.banner h1 {
    font-size: 2.8rem;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
}
.tagline {
    font-size: 1.4rem;
    font-style: italic;
}
.main-nav {
    background: #e65100;
    padding: 0;
    text-align: center;
}
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.main-nav li {
    margin: 0 18px;
}
.main-nav a {
    color: #fffde7 !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 16px 0;
    display: inline-block;
    transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
    color: #ff9800 !important;
    background: #fffde7;
    border-radius: 6px;
    padding: 8px 12px;
}
.services-highlight {
    padding: 40px 0 20px 0;
    text-align: center;
}
.services-highlight h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}
.services-list, .services-slider {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}
.service-card {
    background: rgba(255, 243, 224, 0.95);
    border: 2px solid #ff9800;
    border-radius: 16px;
    padding: 24px 18px;
    width: 200px;
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.12);
    text-align: center;
    transition: transform 0.2s;
    color: #4e260e !important;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.18);
}
.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    /* Use kesariya/orange themed icons for best look */
}
.service-card h3 {
    color: #e65100 !important;
    font-size: 1.1rem;
    margin: 0;
}
.daily-remedy {
    background: rgba(255, 183, 77, 0.7);
    margin: 40px auto 0 auto;
    padding: 32px 16px;
    border-radius: 18px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.12);
    color: #4e260e !important;
}
.daily-remedy h2 {
    color: #ff9800 !important;
    margin-bottom: 16px;
}
.remedy-box {
    background: #fffde7;
    color: #e65100 !important;
    border-radius: 10px;
    padding: 18px;
    font-size: 1.1rem;
    min-height: 48px;
    margin: 0 auto;
    max-width: 400px;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.08);
}
.testimonials {
    margin: 48px auto 0 auto;
    max-width: 700px;
    text-align: center;
}
.testimonials h2 {
    color: #ff9800 !important;
    margin-bottom: 18px;
}
.testimonial-carousel {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 8px;
}
.testimonial-item {
    background: #fffde7;
    border-radius: 12px;
    padding: 20px 18px;
    min-width: 260px;
    color: #4e260e !important;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.10);
}
footer {
    background: #e65100;
    color: #fffde7 !important;
    text-align: center;
    padding: 18px 0;
    margin-top: 40px;
    font-size: 1rem;
}
.service-card, .testimonial-item, .about-astro-home, .blog-post-preview, .contact-info-home, .remedy-box, .daily-remedy {
    color: #4e260e !important;
}
.service-card button, .slider-nav button, .modal-content button, .contact-info-home a, .about-astro-home a, .blog-highlights a, .testimonials a {
    color: #fffde7 !important;
}
@media (max-width: 900px) {
    .services-list, .services-slider {
        flex-direction: column;
        align-items: center;
    }
    .service-card {
        width: 90%;
        margin-bottom: 18px;
    }
}
@media (max-width: 600px) {
    .banner {
        height: 180px;
    }
    .banner .overlay {
        padding: 18px 8px;
    }
    .banner h1 {
        font-size: 1.4rem;
    }
    .tagline {
        font-size: 1rem;
    }
    .services-highlight h2, .testimonials h2, .daily-remedy h2 {
        font-size: 1.2rem;
    }
    .remedy-box {
        font-size: 1rem;
        padding: 10px;
    }
}
/* Use #4e260e or #6d3200 for text on light backgrounds, #fffde7 for text on dark backgrounds. */

/* Update all images in the images/ folder to use saffron/kesariya/orange tones for best effect. */ 