/* assets/css/style.css */

:root {
    --primary-color: #f1c40f; /* Gold/Yellow for Simhastha */
    --secondary-color: #2c3e50; /* Dark Blue */
    --accent-color: #e67e22; /* Orange/Saffron */
    --light-bg: #f8f9fa;
    --dark-bg: #212529;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light-bg);
    color: #333;
}

.navbar {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://source.unsplash.com/1600x900/?ujjain,temple') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.btn-warning {
    background-color: var(--primary-color);
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.4);
    background-color: #d4ac0d;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background-color: #25D366;
    padding: 5px;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Form Styles */
.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.2);
    border-color: var(--primary-color);
}
