/* Hindi Religious Theme CSS for Lucky Tailor */

/* Hindi Font Support */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

/* Apply Hindi font to Hindi text */
.hindi-text, 
h1, h2, h3, h4, h5, h6, p {
    font-family: 'Noto Sans Devanagari', 'Arial Unicode MS', sans-serif;
}

/* Religious Theme Colors */
:root {
    --saffron: #FF9933;
    --white: #FFFFFF;
    --green: #138808;
    --gold: #FFD700;
    --maroon: #800000;
}

/* Om Symbol Styling */
.om-symbol {
    color: var(--saffron);
    font-size: 1.2em;
    font-weight: bold;
}

/* Service Items Enhancement */
.service-item {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 153, 51, 0.2);
    border-color: var(--saffron);
}

.service-item h5 {
    color: var(--maroon);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Religious Quote Styling */
.religious-quote {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    font-weight: 500;
}

/* Enhanced Button Styling */
.btn-primary {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--maroon) 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 153, 51, 0.4);
}

/* Header Enhancement */
.header-btn {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--maroon) 100%);
    color: white !important;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
}

/* Hero Section Enhancement */
.hero-caption h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Footer Enhancement */
.footer-area {
    background: linear-gradient(135deg, var(--maroon) 0%, #4a0e0e 100%);
}

/* Testimonial Enhancement */
.testimonial-caption {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Section Title Enhancement */
.section-tittle h2 {
    color: var(--maroon);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Contact Info Enhancement */
.contact-info {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.2);
}

.contact-info__icon {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Responsive Hindi Text */
@media (max-width: 768px) {
    .hindi-text {
        font-size: 0.9em;
        line-height: 1.6;
    }
    
    .service-item {
        margin-bottom: 20px;
    }
}

/* Animation for Religious Elements */
@keyframes blessing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.om-symbol:hover {
    animation: blessing 1s ease-in-out;
}

/* Special styling for religious quotes */
.religious-quote em {
    font-style: italic;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}