:root {
    --primary-color: #8b0000; /* Dark red for a spiritual/traditional feel */
    --secondary-color: #f8f9fa;
    --accent-color: #ffc107; /* Gold accent */
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
}

.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-color) !important;
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    pointer-events: none; /* Allows clicks to pass through the container */
}

.float-btn {
    pointer-events: auto; /* Re-enables clicks on the buttons */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: transform 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-btn {
    background-color: #25d366;
}

.call-btn {
    background-color: #007bff;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.card-buttons {
    display: flex;
    justify-content: space-around;
    padding: 10px;
}

.card-btn {
    font-size: 14px;
    padding: 5px 10px;
}

footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0 20px;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/black magic.png'); /* Fallback or specific hero image */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 200px 0; /* Increased padding */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh; /* Ensure it takes up most of the screen */
}

.hero-backdrop {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    padding: 40px;
    border-radius: 15px;
    display: inline-block;
    backdrop-filter: blur(5px); /* Optional: add blur for a more premium look */
}

.hero-section h1, .hero-section p {
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.seo-text {
    display: none; /* For screen readers and SEO only if needed, but better to integrate in content */
}
